diff options
author | hexcoder- <heiko@hexco.de> | 2020-02-28 03:31:50 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-02-28 03:31:50 +0100 |
commit | caa8fea8e2cf977ef565ea2bd9de2e606af1da49 (patch) | |
tree | edbf9eddf66b7e1de865a9f06a7be64b84b4a62d /src/afl-tmin.c | |
parent | 212e5d1a720cc52b8d7c674cb65586e4fe82a3b0 (diff) | |
download | afl++-caa8fea8e2cf977ef565ea2bd9de2e606af1da49.tar.gz |
add env info to afl-showmap, in qemu_mode add forgotten MacOSX env var to afl-analyze, afl-fuzz, afl-tmin
Diffstat (limited to 'src/afl-tmin.c')
-rw-r--r-- | src/afl-tmin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-tmin.c b/src/afl-tmin.c index 1886fe68..156dc8af 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -903,9 +903,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); @@ -985,7 +985,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_TMIN_EXACT: require execution paths to match for crashing inputs\n" , argv0, EXEC_TIMEOUT, MEM_LIMIT, doc_path); |