diff options
| author | van Hauser <vh@thc.org> | 2020-08-11 03:40:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-11 03:40:12 +0200 |
| commit | 67dac152269c48245dca88140b1238b36d5e0954 (patch) | |
| tree | 81e8f262c1dc403e34c7b287ba68c81bb37cb4d0 /src/afl-forkserver.c | |
| parent | 9cf8637fab8cf3fe8aba5660015bbe7177805807 (diff) | |
| parent | 50e76fce123f01ec83024f3bbd3190f2e1a6d387 (diff) | |
| download | afl++-67dac152269c48245dca88140b1238b36d5e0954.tar.gz | |
Merge branch 'debug' into taint
Diffstat (limited to 'src/afl-forkserver.c')
| -rw-r--r-- | src/afl-forkserver.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c index 4dc5e438..adb75a2d 100644 --- a/src/afl-forkserver.c +++ b/src/afl-forkserver.c @@ -293,8 +293,8 @@ static void report_error_and_exit(int error) { FATAL( "the fuzzing target reports that hardcoded map address might be the " "reason the mmap of the shared memory failed. Solution: recompile " - "the target with either afl-clang-lto and the environment variable " - "AFL_LLVM_MAP_DYNAMIC set or recompile with afl-clang-fast."); + "the target with either afl-clang-lto and do not set " + "AFL_LLVM_MAP_ADDR or recompile with afl-clang-fast."); break; case FS_ERROR_SHM_OPEN: FATAL("the fuzzing target reports that the shm_open() call failed."); @@ -838,8 +838,8 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv, SAYF("\n" cLRD "[-] " cRST "Hmm, looks like the target binary terminated before we could" " complete a handshake with the injected code.\n" - "If the target was compiled with afl-clang-lto then recompiling with" - " AFL_LLVM_MAP_DYNAMIC might solve your problem.\n" + "If the target was compiled with afl-clang-lto and AFL_LLVM_MAP_ADDR" + " then recompiling without this parameter.\n" "Otherwise there is a horrible bug in the fuzzer.\n" "Poke <afl-users@googlegroups.com> for troubleshooting tips.\n"); @@ -870,9 +870,8 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv, " - the target was compiled with afl-clang-lto and a constructor " "was\n" - " instrumented, recompiling with AFL_LLVM_MAP_DYNAMIC might solve " - "your\n" - " problem\n\n" + " instrumented, recompiling without AFL_LLVM_MAP_ADDR might solve " + "your problem\n\n" " - Less likely, there is a horrible bug in the fuzzer. If other " "options\n" |
