diff options
author | van Hauser <vh@thc.org> | 2023-02-23 11:49:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 11:49:28 +0100 |
commit | eb5c1ee4f3ffd6e42a3637082ab4ea089052ad8b (patch) | |
tree | b0ebfc066252a9c78dfe90cf811b2b27f43cc215 /custom_mutators/examples/custom_send.c | |
parent | a293281b9bbb4e61bfbe5e67ab108d9e5ee40192 (diff) | |
parent | eeccb2da69d7e6f32ee74c431e7c5053e8379dff (diff) | |
download | afl++-eb5c1ee4f3ffd6e42a3637082ab4ea089052ad8b.tar.gz |
Merge pull request #1650 from AFLplusplus/autotoken
Autotoken
Diffstat (limited to 'custom_mutators/examples/custom_send.c')
-rw-r--r-- | custom_mutators/examples/custom_send.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/custom_mutators/examples/custom_send.c b/custom_mutators/examples/custom_send.c index ffea927e..7de72819 100644 --- a/custom_mutators/examples/custom_send.c +++ b/custom_mutators/examples/custom_send.c @@ -1,7 +1,14 @@ +// +// This is an example on how to use afl_custom_send +// It writes each mutated data set to /tmp/foo +// You can modify this to send to IPC, shared memory, etc. +// // cc -O3 -fPIC -shared -g -o custom_send.so -I../../include custom_send.c // cd ../.. // afl-cc -o test-instr test-instr.c -// afl-fuzz -i in -o out -- ./test-instr -f /tmp/foo +// AFL_CUSTOM_MUTATOR_LIBRARY=custom_mutators/examples/custom_send.so \ +// afl-fuzz -i in -o out -- ./test-instr -f /tmp/foo +// #include "custom_mutator_helpers.h" |