FRET-LibAFL/fuzzers/forkserver_simple
Dongjia "toka" Zhang 78060ea308
0.11.2 (#1735)
2023-12-18 14:33:14 +01:00
..
2021-05-25 13:40:00 +02:00
2023-08-02 17:36:26 +02:00
2023-05-22 12:42:36 +02:00
2023-12-18 14:33:14 +01:00
2021-12-04 16:17:38 +01:00

Simple Forkserver Fuzzer

This is a simple example fuzzer to fuzz a executable instrumented by afl-cc.

Usage

You can build this example by cargo build --release.
This downloads AFLplusplus/AFLplusplus and compiles the example harness program in src/program.c with afl-cc

Run

After you build it you can run
cp ./target/release/forkserver_simple . to copy the fuzzer into this directory,
and you can run
taskset -c 1 ./forkserver_simple ./target/release/program ./corpus/ -t 1000 to run the fuzzer. taskset binds this process to a specific core to improve the throughput.