diff options
author | vanhauser-thc <vh@thc.org> | 2024-06-28 16:00:19 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-06-28 16:00:19 +0200 |
commit | f7bbd467b53d0ee7c3ca366750ed1fa60972981c (patch) | |
tree | 4d88faf7537e51aab48496f916fcf93fd0cb576d /custom_mutators/custom_send_tcp/README.md | |
parent | 8993ba430545b867da11e119be15126de43d061c (diff) | |
download | afl++-f7bbd467b53d0ee7c3ca366750ed1fa60972981c.tar.gz |
add custom_send_tcp
Diffstat (limited to 'custom_mutators/custom_send_tcp/README.md')
-rw-r--r-- | custom_mutators/custom_send_tcp/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/custom_mutators/custom_send_tcp/README.md b/custom_mutators/custom_send_tcp/README.md new file mode 100644 index 00000000..7b4bb869 --- /dev/null +++ b/custom_mutators/custom_send_tcp/README.md @@ -0,0 +1,13 @@ +# Send testcases via TCP custom mutator + +This custom mutator sends the fuzzing testcases via TCP. + +`AFL_CUSTOM_MUTATOR_LATE_SEND` - MUST be set! +`CUSTOM_SEND_IP` - the IP address to send to (basically only 127.0.0.1 makes sense) +`CUSTOM_SEND_PORT` - the TCP port to send to +`CUSTOM_SEND_READ` - if the custom mutator should wait for a reply from the target + +Example: +``` +CUSTOM_SEND_IP=127.0.0.1 CUSTOM_SEND_PORT=8000 CUSTOM_SEND_READ=1 AFL_CUSTOM_MUTATOR_LATE_SEND=1 AFL_CUSTOM_MUTATOR_LIBRARY=custom_send_tcp.so ./afl-fuzz ... +``` |