diff options
author | h1994st <h1994st@gmail.com> | 2020-03-03 19:48:13 -0500 |
---|---|---|
committer | h1994st <h1994st@gmail.com> | 2020-03-03 19:48:13 -0500 |
commit | df465216583afcc0e65e4468e6383afd7a688ddc (patch) | |
tree | 84ee509f58fc76aee6f4ba9d0aa9e44f256f50e8 /docs/custom_mutator.md | |
parent | 90506479e7de57c97d97958c61b2513009687d90 (diff) | |
download | afl++-df465216583afcc0e65e4468e6383afd7a688ddc.tar.gz |
Finish refactoring APIs for the custom mutator and Python module
- Remove AFL_PYTHON_ONLY (env) and python_only (variable) - Unify fuzz API of the custom mutator and Python module - Merge the custom mutator into the old python_stage, which is now renamed to custom_mutator_stage
Diffstat (limited to 'docs/custom_mutator.md')
-rw-r--r-- | docs/custom_mutator.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/custom_mutator.md b/docs/custom_mutator.md index dff32c1d..68e27de7 100644 --- a/docs/custom_mutator.md +++ b/docs/custom_mutator.md @@ -13,7 +13,7 @@ a given grammar. The custom mutator library is passed to afl-fuzz via the AFL_CUSTOM_MUTATOR_LIBRARY environment variable. The library must export -the afl_custom_mutator() function and must be compiled as a shared object. +the afl_custom_fuzz() function and must be compiled as a shared object. For example: ``` $CC -shared -Wall -O3 <lib-name>.c -o <lib-name>.so |