I've been trying to run cargo afl fuzz without instrumentation (dumb mode) using the -n flag and I'm encountering the following:
[-] PROGRAM ABORT : Target's coverage map size of 466496 is larger than the one this AFL++ is set with (65536). Either set AFL_MAP_SIZE=466496 and restart afl-fuzz, or change MAP_SIZE_POW2 in config.h and recompile afl-fuzz
Location : afl_fsrv_start(), src/afl-forkserver.c:1100
I've set the AFL_MAP_SIZE to be larger than the target coverage map size, but I'm still encountering this error. I'm able to run cargo afl fuzz on this target normally. Any suggestions? Thanks for the help.
I've been trying to run
cargo afl fuzzwithout instrumentation (dumb mode) using the-nflag and I'm encountering the following:I've set the
AFL_MAP_SIZEto be larger than the target coverage map size, but I'm still encountering this error. I'm able to runcargo afl fuzzon this target normally. Any suggestions? Thanks for the help.