I have compiled a binary with ASAN and AFL instrumentation.
I have a crash, but attempting to minimize it results in a 0-length input because when the original crash isn’t present, LeakSanitizer throws it’s error causing AFL to still think the input is crashing the binary. Attempting to set ASAN_OPTIONS=detect_leaks=0 with afl-tmin results in the following error:
# ASAN_OPTIONS=detect_leaks=0 afl-tmin -i id:000066,sig:11,src:005645+005958,op:splice,rep:16 -o fdsa.min -- ~/asan/fuzz
afl-tmin 2.35b by <
lca...@google.com>
[-] PROGRAM ABORT : Custom ASAN_OPTIONS set without abort_on_error=1 - please fix!
Location : set_up_environment(), afl-tmin.c:670
#
Any thoughts on disabling LeakSanitizer?