From caa8fea8e2cf977ef565ea2bd9de2e606af1da49 Mon Sep 17 00:00:00 2001 From: hexcoder- Date: Fri, 28 Feb 2020 03:31:50 +0100 Subject: add env info to afl-showmap, in qemu_mode add forgotten MacOSX env var to afl-analyze, afl-fuzz, afl-tmin --- src/afl-analyze.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/afl-analyze.c') diff --git a/src/afl-analyze.c b/src/afl-analyze.c index 4b0b1a6a..f566d3fe 100644 --- a/src/afl-analyze.c +++ b/src/afl-analyze.c @@ -728,9 +728,9 @@ static void set_up_environment(void) { } if (qemu_preload) - buf = alloc_printf("%s,LD_PRELOAD=%s", qemu_preload, afl_preload); + buf = alloc_printf("%s,LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", qemu_preload, afl_preload, afl_preload); else - buf = alloc_printf("LD_PRELOAD=%s", afl_preload); + buf = alloc_printf("LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", afl_preload, afl_preload); setenv("QEMU_SET_ENV", buf, 1); @@ -806,7 +806,7 @@ static void usage(u8* argv0) { " (must contain abort_on_error=1 and symbolize=0)\n" "MSAN_OPTIONS: custom settings for MSAN\n" " (must contain exitcode="STRINGIFY(MSAN_ERROR)" and symbolize=0)\n" - "AFL_PRELOAD: LD_PRELOAD settings for target\n" + "AFL_PRELOAD: LD_PRELOAD / DYLD_INSERT_LIBRARIES settings for target\n" "AFL_ANALYZE_HEX: print file offsets in hexadecimal instead of decimal\n" "AFL_SKIP_BIN_CHECK: skip checking the location of and the target\n" -- cgit 1.4.1