diff options
author | van Hauser <vh@thc.org> | 2021-11-29 15:32:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 15:32:14 +0100 |
commit | 235bb3235e45a81eb2b524f3a76346d91a163e3d (patch) | |
tree | e44968d7d3d4267386d1c714e061e84bdfec9077 /docs/fuzzing_expert.md | |
parent | ce0edcff2e127f363b9eb7968b87f8343b8b62f3 (diff) | |
parent | e0c8a5c0c6ae67af3280c0ead8124a2ffe920241 (diff) | |
download | afl++-235bb3235e45a81eb2b524f3a76346d91a163e3d.tar.gz |
Merge pull request #1177 from llzmb/docs_cleanup_instrumentation_folder
Clean up instrumentation folder
Diffstat (limited to 'docs/fuzzing_expert.md')
-rw-r--r-- | docs/fuzzing_expert.md | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/docs/fuzzing_expert.md b/docs/fuzzing_expert.md index 876c5fbb..d0d28582 100644 --- a/docs/fuzzing_expert.md +++ b/docs/fuzzing_expert.md @@ -112,12 +112,8 @@ are interested in: There are many more options and modes available however these are most of the time less effective. See: - * [instrumentation/README.ctx.md](../instrumentation/README.ctx.md) - * [instrumentation/README.ngram.md](../instrumentation/README.ngram.md) - -AFL++ performs "never zero" counting in its bitmap. You can read more about this -here: - * [instrumentation/README.neverzero.md](../instrumentation/README.neverzero.md) + * [instrumentation/README.llvm.md#6) AFL++ Context Sensitive Branch Coverage](../instrumentation/README.llvm.md#6-afl-context-sensitive-branch-coverage). + * [instrumentation/README.llvm.md#7) AFL++ N-Gram Branch Coverage](../instrumentation/README.llvm.md#7-afl-n-gram-branch-coverage) #### c) Sanitizers @@ -247,7 +243,7 @@ For meson you have to set the AFL++ compiler with the very first command! Sometimes cmake and configure do not pick up the AFL++ compiler, or the ranlib/ar that is needed - because this was just not foreseen by the developer -of the target. Or they have non-standard options. Figure out if there is a +of the target. Or they have non-standard options. Figure out if there is a non-standard way to set this, otherwise set up the build normally and edit the generated build environment afterwards manually to point it to the right compiler (and/or ranlib and ar). @@ -337,7 +333,7 @@ Note that this step is rather optional though. #### Done! -The INPUTS_UNIQUE/ directory from step b) - or even better the directory input/ +The INPUTS_UNIQUE/ directory from step b) - or even better the directory input/ if you minimized the corpus in step c) - is the resulting input corpus directory to be used in fuzzing! :-) |