diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-08-31 12:26:41 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-08-31 12:26:41 +0200 |
commit | 4697e4a5a519043b5727202c39a5e13c277e1cae (patch) | |
tree | 5efe49aa07c4b4aaf8604db88905bdd688f9859c /docs/env_variables.md | |
parent | 92b1f9cf36e7df8ce4b957e503cffca7296da048 (diff) | |
parent | bbf00204eacfd0444257e81397f2e76ab90be41d (diff) | |
download | afl++-4697e4a5a519043b5727202c39a5e13c277e1cae.tar.gz |
description for AFL_MAX_DET_EXTRAS added
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index e8129a3f..7d4f6716 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -384,6 +384,16 @@ checks or alter some of the more exotic semantics of the tool: Note that this setting inhibits some of the user-friendly diagnostics normally done when starting up the forkserver and causes a pretty significant performance drop. + + - Setting AFL_MAX_DET_EXTRAS changes the count of dictionary enties/extras + (default 200), after which the entries will be used probabilistically. + So, if the dict/extras file (`-x`) contains more tokens than this threshold, + not all of the tokens will be used in each fuzzing step, every time. + Instead, there is a chance that the entry will be skipped during fuzzing. + This makes sure that the fuzzer doesn't spend all its time only inserting + the extras, but will still do other mutations. However, it decreases the + likelyhood for each token to be inserted, before the next queue entrie is fuzzed. + Either way, all tokens will be used eventually, in a longer fuzzing campaign. - Outdated environment variables that are that not supported anymore: AFL_DEFER_FORKSRV |