0xricksanchez / AFL_Runner

Scaling best-practice AFLPlusPlus fuzzing campaigns made easy
https://crates.io/crates/afl_runner
Apache License 2.0
47 stars 5 forks source link

Allow adding more new seeds to running instances #1

Open 0xricksanchez opened 8 months ago

0xricksanchez commented 8 months ago

If you want to add new seeds to a fuzzing campaign, you can run a temporary fuzzing instance, e.g., when your main fuzzer is using -o out and the new seeds are in newseeds/ directory:

AFL_BENCH_JUST_ONE=1 AFL_FAST_CAL=1 afl-fuzz -i newseeds -o out -S newseeds -- ./target

So we just run a temporary instance for every new seed and need to ensure we're re-using the output directory of the running campaign