about summary refs log tree commit diff
path: root/docs/custom_mutators.md
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-03-08 16:56:44 +0100
committervan Hauser <vh@thc.org>2020-03-08 16:56:44 +0100
commit9f7bcca91e5362f98890db9cc896b863ebf378cd (patch)
tree9fdd46a62fd63283da5361d8bafc7b285561cb59 /docs/custom_mutators.md
parent891f6985ed39dba44dc0cf2c56d22882d97024b0 (diff)
downloadafl++-9f7bcca91e5362f98890db9cc896b863ebf378cd.tar.gz
mark AFL_PYTHON_ONLY deprecated
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r--docs/custom_mutators.md10
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 :)