diff options
author | hexcoder- <heiko@hexco.de> | 2020-09-01 19:54:18 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-09-01 19:54:18 +0200 |
commit | 6340674a23e9b8d2e8b3a8705be1129363a60d46 (patch) | |
tree | a65cc9c9069933317c2a0560e0d5525de5c8785f /docs/custom_mutators.md | |
parent | 4538f689ede6743d097c85ded2fdcb4f9663020b (diff) | |
parent | e4a86b40a5504c608d6ba7f44133ab39b24ac6f8 (diff) | |
download | afl++-6340674a23e9b8d2e8b3a8705be1129363a60d46.tar.gz |
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
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): |