SoftSec-KAIST / Fuzzing-Survey

The Art, Science, and Engineering of Fuzzing: A Survey
https://fuzzing-survey.org/
GNU General Public License v3.0
195 stars 21 forks source link

Add a helper script #36

Closed Lanph3re closed 1 year ago

Lanph3re commented 1 year ago

I write a helper script that helps adding a fuzzer to fuzzers.json.

Example usage:

❯ python3 script.py
name: AFL+++
year: 2022
targets: File
color: color

Invalid color color
❯ python3 script.py
name: AFL+++
year: 2022
targets: File
color: greybox

// Optional fields
author: anonymous
toolurl: http://github.com/AFL+++/AFL+++
title:
booktitle:
journal:
volumn:
number:

// Auto-completion when pressing <TAB>
references: A
Aafer et al. AFL++        AFL-HIER     AFLFast      AFLSmart     Angora       APE          AtomFuzzer
AFL          AFL+++       AFLChurn     AFLGo        AMPFuzz      Ankou        AssetFuzzer  Autodafé
references: X

Invalid reference X.
sangkilc commented 1 year ago

Thanks!