diff options
author | van Hauser <vh@thc.org> | 2023-08-23 16:03:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 16:03:30 +0000 |
commit | 1128a1772c76ab1e1464105c98942215cb102f12 (patch) | |
tree | c683a940acbfe1c37c5269c1f0103d962b2e06e9 /docs | |
parent | 6ae779bc7324f084bfee1e97dbc7b9aa4911af08 (diff) | |
parent | 549e5dd9269238ac43ff482d439f7f671946185c (diff) | |
download | afl++-1128a1772c76ab1e1464105c98942215cb102f12.tar.gz |
Merge pull request #1843 from AFLplusplus/dev
push to stable
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Changelog.md | 2 | ||||
-rw-r--r-- | docs/env_variables.md | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md index 961b2940..87c01f21 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -7,6 +7,8 @@ - afl-fuzz: - added `AFL_FINAL_SYNC` which forces a final fuzzer sync (also for `-F`) before terminating. + - added AFL_IGNORE_SEED_PROBLEMS to skip over seeds that time out instead + of exiting with an error message - afl-whatsup: - detect instanced that are starting up and show them as such as not dead - now also shows coverage reached diff --git a/docs/env_variables.md b/docs/env_variables.md index 2ce274d3..3bb4e844 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -327,6 +327,9 @@ checks or alter some of the more exotic semantics of the tool: (`-i in`). This is an important feature to set when resuming a fuzzing session. + - `AFL_IGNORE_SEED_PROBLEMS` will skip over crashes and timeouts in the seeds + instead of exiting. + - Setting `AFL_CRASH_EXITCODE` sets the exit code AFL++ treats as crash. For example, if `AFL_CRASH_EXITCODE='-1'` is set, each input resulting in a `-1` return code (i.e. `exit(-1)` got called), will be treated as if a crash had |