diff options
author | van Hauser <vh@thc.org> | 2020-05-15 13:39:42 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-15 13:39:42 +0200 |
commit | 57637ba0b0981a7e2ebd407fc04a619f4120fb62 (patch) | |
tree | fe04a8f31b5e7e72ade344a9af6cb194fc1a75b4 /docs/QuickStartGuide.md | |
parent | d536ddc24085bced267143b4f45102715d71693e (diff) | |
download | afl++-57637ba0b0981a7e2ebd407fc04a619f4120fb62.tar.gz |
removed overlooked post_lib references, added post_lib examples to examples/custom_mutators
Diffstat (limited to 'docs/QuickStartGuide.md')
-rw-r--r-- | docs/QuickStartGuide.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/QuickStartGuide.md b/docs/QuickStartGuide.md index 1e1d60b7..10be409a 100644 --- a/docs/QuickStartGuide.md +++ b/docs/QuickStartGuide.md @@ -10,8 +10,9 @@ how to hit the ground running: If testing a network service, modify it to run in the foreground and read from stdin. When fuzzing a format that uses checksums, comment out the checksum verification code, too. - If this is not possible (e.g. in -Q(emu) mode) then use AFL_POST_LIBRARY - to calculate the values with your own library. + + If this is not possible (e.g. in -Q(emu) mode) then use + AFL_CUSTOM_MUTATOR_LIBRARY to calculate the values with your own library. The program must crash properly when a fault is encountered. Watch out for custom SIGSEGV or SIGABRT handlers and background processes. For tips on |