diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-02-03 14:13:09 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-02-03 14:13:09 +0100 |
commit | 13ac2cb125bd5d46a6a139d75cfaf2755f7014e3 (patch) | |
tree | a1639019f13583acc89f51fa32671a478a39829c /docs/notes_for_asan.md | |
parent | 2fe7889912c9bb340f302a037585b7b1836ac94f (diff) | |
download | afl++-13ac2cb125bd5d46a6a139d75cfaf2755f7014e3.tar.gz |
s/experimental\//examples\/g
Diffstat (limited to 'docs/notes_for_asan.md')
-rw-r--r-- | docs/notes_for_asan.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/notes_for_asan.md b/docs/notes_for_asan.md index c05d0771..c10a9726 100644 --- a/docs/notes_for_asan.md +++ b/docs/notes_for_asan.md @@ -20,7 +20,7 @@ Because of this, fuzzing with ASAN is recommended only in four scenarios: - Precisely gauge memory needs using http://jwilk.net/software/recidivm . - Limit the memory available to process using cgroups on Linux (see - experimental/asan_cgroups). + examples/asan_cgroups). To compile with ASAN, set AFL_USE_ASAN=1 before calling 'make clean all'. The afl-gcc / afl-clang wrappers will pick that up and add the appropriate flags. @@ -70,7 +70,7 @@ There are also cgroups, but they are Linux-specific, not universally available even on Linux systems, and they require root permissions to set up; I'm a bit hesitant to make afl-fuzz require root permissions just for that. That said, if you are on Linux and want to use cgroups, check out the contributed script -that ships in experimental/asan_cgroups/. +that ships in examples/asan_cgroups/. In settings where cgroups aren't available, we have no nice, portable way to avoid counting the ASAN allocation toward the limit. On 32-bit systems, or for |