diff options
author | vanhauser-thc <vh@thc.org> | 2021-09-15 12:28:05 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-09-15 12:28:05 +0200 |
commit | 51b2e86ec077c0b67ef1b54a9a30288b74c01be0 (patch) | |
tree | a92ca9d3c62b7343820efb817177f9b6b1ed1c45 /docs/fuzzing_binary-only_targets.md | |
parent | 48e26d8e06df6098db855dd9f68d2f419f8be9b1 (diff) | |
download | afl++-51b2e86ec077c0b67ef1b54a9a30288b74c01be0.tar.gz |
fix links
Diffstat (limited to 'docs/fuzzing_binary-only_targets.md')
-rw-r--r-- | docs/fuzzing_binary-only_targets.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/fuzzing_binary-only_targets.md b/docs/fuzzing_binary-only_targets.md index a39e40a0..8b3bbeff 100644 --- a/docs/fuzzing_binary-only_targets.md +++ b/docs/fuzzing_binary-only_targets.md @@ -51,7 +51,7 @@ make ``` For additional instructions and caveats, see [frida_mode/README.md](../frida_mode/README.md). -If possible you should use the persistent mode, see [qemu_frida/README.persistent.md](../qemu_frida/README.persistent.md). +If possible you should use the persistent mode, see [qemu_frida/README.md](../qemu_frida/README.md). The mode is approximately 2-5x slower than compile-time instrumentation, and is less conducive to parallelization. @@ -71,7 +71,8 @@ cd unicorn_mode If the goal is to fuzz a dynamic library then there are two options available. For both you need to write a small harness that loads and calls the library. -Faster is the frida solution: [utils/afl_frida/README.md](../utils/afl_frida/README.md) +Then you fuzz this with either frida_mode or qemu_mode, and either use +`AFL_INST_LIBS=1` or `AFL_QEMU/FRIDA_INST_RANGES` Another, less precise and slower option is using ptrace with debugger interrupt instrumentation: [utils/afl_untracer/README.md](../utils/afl_untracer/README.md). |