From ba6289ebc42c5996cd1c81385c2a867bff791453 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Tue, 7 Jun 2022 00:01:11 +0200 Subject: [PATCH] fuzzing: fix parameter for second fuzzing instance in README.md The documentation says > Note that you must always have one -M main instance! > Running multiple -M instances is wasteful! https://aflplus.plus/docs/parallel_fuzzing/#2-single-system-parallelization --- fuzzing/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzing/README.md b/fuzzing/README.md index 48c22a7f89..793a92c45a 100644 --- a/fuzzing/README.md +++ b/fuzzing/README.md @@ -78,7 +78,7 @@ Parallel fuzzing is supported through `AFL_FLAGS`, e.g.: AFL_FLAGS="-M fuzzer01" make -C fuzzing/gnrc_tcp/ fuzz # Start second AFL instance in a different terminal - AFL_FLAGS="-M fuzzer02" make -C fuzzing/gnrc_tcp/ fuzz + AFL_FLAGS="-S fuzzer02" make -C fuzzing/gnrc_tcp/ fuzz [sanitizers github]: https://github.com/google/sanitizers [afl homepage]: http://lcamtuf.coredump.cx/afl/