diff options
author | van Hauser <vh@thc.org> | 2020-03-08 16:56:44 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-08 16:56:44 +0100 |
commit | 9f7bcca91e5362f98890db9cc896b863ebf378cd (patch) | |
tree | 9fdd46a62fd63283da5361d8bafc7b285561cb59 /docs/custom_mutators.md | |
parent | 891f6985ed39dba44dc0cf2c56d22882d97024b0 (diff) | |
download | afl++-9f7bcca91e5362f98890db9cc896b863ebf378cd.tar.gz |
mark AFL_PYTHON_ONLY deprecated
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r-- | docs/custom_mutators.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index 6e951008..7f95b4af 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -165,13 +165,19 @@ a fallback to the builtin default trimming routine. Optionally, the following environment variables are supported: -- `AFL_PYTHON_ONLY` - +- `AFL_CUSTOM_MUTATOR_ONLY` + Disable all other mutation stages. This can prevent broken testcases (those that your Python module can't work with anymore) to fill up your queue. Best combined with a custom trimming routine (see below) because trimming can cause the same test breakage like havoc and splice. + +- `AFL_PYTHON_ONLY` + + Deprecated and removed, use `AFL_CUSTOM_MUTATOR_ONLY` instead + trimming can cause the same test breakage like havoc and splice. + - `AFL_DEBUG` When combined with `AFL_NO_UI`, this causes the C trimming code to emit additional messages about the performance and actions of your custom trimmer. Use this to see if it works :) |