diff options
author | van Hauser <vh@thc.org> | 2023-08-09 14:39:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-09 14:39:25 +0000 |
commit | b4bd33961c645b1fed059d5ff8269911bc941cc9 (patch) | |
tree | f8e77e6b0d5411cd831bd7a644c23b17ef89af37 /docs/env_variables.md | |
parent | 7f3b0a9503f90b86e8c196c6b405f0a4c8a7babc (diff) | |
parent | fcdfe9e990d84ab477cd3c571cbf540e8bc8e15a (diff) | |
download | afl++-b4bd33961c645b1fed059d5ff8269911bc941cc9.tar.gz |
Merge pull request #1821 from junwha0511/crashing-seeds-as-new-crash
Implement an option for treating crashing seeds as new crash
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index 1f73bbdf..affc9e3c 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -365,6 +365,9 @@ checks or alter some of the more exotic semantics of the tool: - `AFL_EXIT_ON_SEED_ISSUES` will restore the vanilla afl-fuzz behavior which does not allow crashes or timeout seeds in the initial -i corpus. + - `AFL_CRASHING_SEEDS_AS_NEW_CRASH` will treat crashing seeds as new crash. these + crashes will be written to crashes folder as op:dry_run, and orig:<seed_file_name>. + - `AFL_EXIT_ON_TIME` causes afl-fuzz to terminate if no new paths were found within a specified period of time (in seconds). May be convenient for some types of automated jobs. |