diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-08-31 20:34:28 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-08-31 20:34:28 +0200 |
commit | 8ca4414d70df515b504beefddcc3ad3615a4216a (patch) | |
tree | ca8a552d322f4b2d79a9feff01f870e891813207 /docs/custom_mutators.md | |
parent | 6090bb1bca81229a4c6ae178e1cef0e35bd31a96 (diff) | |
parent | a552631d3b04da880f18a25860169ac4ccd8f85b (diff) | |
download | afl++-8ca4414d70df515b504beefddcc3ad3615a4216a.tar.gz |
merge conflicts
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r-- | docs/custom_mutators.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index 75dbea21..a128f587 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -94,8 +94,11 @@ def queue_new_entry(filename_new_queue, filename_orig_queue): - `fuzz_count` (optional): - This method can be used to instruct afl-fuzz how often to perform a fuzz - attempt on this input data. + When a queue entry is selected to be fuzzed, afl-fuzz selects the number + of fuzzing attempts with this input based on a few factors. + If however the custom mutator wants to set this number instead on how often + it is called for a specific queue entry, use this function. + This function in mostly useful if **not** `AFL_CUSTOM_MUTATOR_ONLY` is used. - `fuzz` (optional): |