google / AFL

american fuzzy lop - a security-oriented fuzzer
https://lcamtuf.coredump.cx/afl/
Apache License 2.0
3.56k stars 625 forks source link

Any way to use -n when parallel fuzzing? #135

Open vivin opened 3 years ago

vivin commented 3 years ago

I am trying to perform parallel fuzzing with the main instance fuzzing a binary with regular instrumentation, and the child instances fuzzing a binary with custom instrumentation. But this fails because I set AFL_INST_RATIO to 1 when I instrument those binaries with my custom instrumentation. I tried setting both AFL_SKIP_BIN_CHECK and AFL_DUMB_FORKSRV to 1 and that doesn't work either. When I tried to use -n, it says that -n cannot be used in conjunction with -M and -S.