From 104c0e29e9dd72014f925e8e92d77d2b7779e9a3 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Tue, 1 Feb 2022 20:14:41 +0100 Subject: [PATCH] small doc update --- custom_mutators/libafl_base/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/custom_mutators/libafl_base/README.md b/custom_mutators/libafl_base/README.md index 0849e6da..9f49260f 100644 --- a/custom_mutators/libafl_base/README.md +++ b/custom_mutators/libafl_base/README.md @@ -1,10 +1,11 @@ -# custum mutator: libafl basic havoc mutator +# libafl basic havoc + token mutator -This uses the libafl StdScheduledMutator with `havoc_mutations` and `token_mutations`. +This uses the [libafl](https://github.com/AFLplusplus/libafl) StdScheduledMutator with `havoc_mutations` and `token_mutations`. Make sure to have [cargo installed](https://rustup.rs/) and just type `make` to build. Run with: -```AFL_CUSTOM_MUTATOR_LIBRARY=custom_mutators/libafl_base/libafl_base.so afl-fuzz ...``` +``` +AFL_CUSTOM_MUTATOR_LIBRARY=custom_mutators/libafl_base/libafl_base.so AFL_CUSTOM_MUTATOR_ONLY=1 afl-fuzz ... ```