Skip to content

Files

Latest commit

Oct 4, 2023
c523d94 · Oct 4, 2023

History

History

fuzz-afl

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 15, 2020
Oct 4, 2023
Feb 12, 2020
Jun 15, 2020
Jun 15, 2020

README.md

Fuzzing harnesses

Using the fuzzer

Install afl:

$ cargo install afl

Build fuzz target:

$ cargo afl build --release --bin fuzz_<format>

Run afl:

$ mkdir out/
$ cargo afl fuzz -i in/ -o out/ target/release/fuzz_<target>

To reproduce a crash:

$ cargo run --bin reproduce_<target>