From 8178f4dfddfb51f7a3e2f94e67bb9cf7332c7ef1 Mon Sep 17 00:00:00 2001 From: van Hauser Date: Thu, 25 Jun 2020 16:51:29 +0200 Subject: remove radamsa, add radamsa custom mutator --- custom_mutators/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 custom_mutators/README.md (limited to 'custom_mutators/README.md') diff --git a/custom_mutators/README.md b/custom_mutators/README.md new file mode 100644 index 00000000..35563d03 --- /dev/null +++ b/custom_mutators/README.md @@ -0,0 +1,12 @@ +# production ready custom mutators + +This directory holds ready to use custom mutators. +Just type "make" in the individual subdirectories. + +Use with e.g. + +`AFL_CUSTOM_MUTATOR_LIBRARY=custom_mutators/radamsa/radamsa-mutator.so afl-fuzz ....` + +and add `AFL_CUSTOM_MUTATOR_ONLY=1` if you only want to use the custom mutator. + +Multiple custom mutators can be used by seperating their paths with `:` in the environment variable. -- cgit 1.4.1 From 29e41a09d5a9250115eee5756a53b545ecd1ec55 Mon Sep 17 00:00:00 2001 From: van Hauser Date: Sat, 27 Jun 2020 18:16:27 +0200 Subject: fix typos --- custom_mutators/README.md | 2 +- src/afl-fuzz.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'custom_mutators/README.md') diff --git a/custom_mutators/README.md b/custom_mutators/README.md index 35563d03..0abce32f 100644 --- a/custom_mutators/README.md +++ b/custom_mutators/README.md @@ -9,4 +9,4 @@ Use with e.g. and add `AFL_CUSTOM_MUTATOR_ONLY=1` if you only want to use the custom mutator. -Multiple custom mutators can be used by seperating their paths with `:` in the environment variable. +Multiple custom mutators can be used by separating their paths with `:` in the environment variable. diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index e7a855ff..f25f8bb6 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -138,7 +138,7 @@ static void usage(afl_state_t *afl, u8 *argv0, int more_help) { //" -B bitmap.txt - mutate a specific test case, use the out/fuzz_bitmap //" "file\n" " -C - crash exploration mode (the peruvian rabbit thing)\n" - " -e ext - file extension for the fuzz test case case (if " + " -e ext - file extension for the fuzz test input file (if " "needed)\n\n", argv0, EXEC_TIMEOUT, MEM_LIMIT); -- cgit 1.4.1