diff options
author | van Hauser <vh@thc.org> | 2020-05-27 11:24:09 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-27 11:24:09 +0200 |
commit | 434ccf3df4760019cb87ceb11087d3440dc5a4ab (patch) | |
tree | ad4f038bd261b823697b0f98ed121b2d3a8b642f /examples/afl_network_proxy | |
parent | b81df11d8a0dad4381e644b04afa1a38413ff833 (diff) | |
download | afl++-434ccf3df4760019cb87ceb11087d3440dc5a4ab.tar.gz |
allow for copy paste from documentation
Diffstat (limited to 'examples/afl_network_proxy')
-rw-r--r-- | examples/afl_network_proxy/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/afl_network_proxy/README.md b/examples/afl_network_proxy/README.md index 42c0b71b..a5ac3578 100644 --- a/examples/afl_network_proxy/README.md +++ b/examples/afl_network_proxy/README.md @@ -29,7 +29,7 @@ Run `afl-network-server` with your target with the -m and -t values you need. Important is the -i parameter which is the TCP port to listen on. e.g.: ``` -$ afl-network-server -i 1111 -m 25M -t 1000 -- /bin/target -f @@ +afl-network-server -i 1111 -m 25M -t 1000 -- /bin/target -f @@ ``` ### on the (afl-fuzz) master @@ -38,7 +38,7 @@ Just run afl-fuzz with your normal options, however the target should be `afl-network-client` with the IP and PORT of the `afl-network-server` and increase the -t value: ``` -$ afl-fuzz -i in -o out -t 2000+ -- afl-network-client TARGET-IP 1111 +afl-fuzz -i in -o out -t 2000+ -- afl-network-client TARGET-IP 1111 ``` Note the '+' on the -t parameter value. The afl-network-server will take care of proper timeouts hence afl-fuzz should not. The '+' increases the |