about summary refs log tree commit diff
path: root/docs/custom_mutators.md
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-06-27 18:51:54 +0200
committervanhauser-thc <vh@thc.org>2024-06-27 18:51:58 +0200
commitba7313b521df7a347cd9f96a694cd8caa63b9b41 (patch)
treebb873333e4a75b3dc667809d4ae6b2709777d3be /docs/custom_mutators.md
parente2d30641bebfada56f1fdd8cbf16c23a97f96c40 (diff)
downloadafl++-ba7313b521df7a347cd9f96a694cd8caa63b9b41.tar.gz
AFL_CUSTOM_MUTATOR_LATE_SEND added
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r--docs/custom_mutators.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md
index b7a7032f..3067ceab 100644
--- a/docs/custom_mutators.md
+++ b/docs/custom_mutators.md
@@ -198,6 +198,11 @@ def deinit():  # optional for Python
     This method can be used if you want to send data to the target yourself,
     e.g. via IPC. This replaces some usage of utils/afl_proxy but requires
     that you start the target with afl-fuzz.
+
+    Setting `AFL_CUSTOM_MUTATOR_LATE_SEND` will call the afl_custom_fuzz_send()
+    function after the target has been restarted. (This is needed for e.g. TCP
+    services.)
+
     Example: [custom_mutators/examples/custom_send.c](../custom_mutators/examples/custom_send.c)
 
 - `queue_new_entry` (optional):