aboutsummaryrefslogtreecommitdiff
path: root/custom_mutators
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-08-08 21:22:47 +0200
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-08-08 21:22:47 +0200
commitab43289c1a6232a308eeba9ed9b1a8fe8168f72d (patch)
tree873a5c822e7572c9146d4a4f24a832dc867838e5 /custom_mutators
parentc779262d8924daa4ac2c127db2a699c818c3c709 (diff)
parentdf74625df0324e17178dbf3c7c03484719ef6dd0 (diff)
downloadafl++-ab43289c1a6232a308eeba9ed9b1a8fe8168f72d.tar.gz
Merge branch 'dev' into docs_edit_remote_monitoring
Diffstat (limited to 'custom_mutators')
-rw-r--r--custom_mutators/README.md12
-rw-r--r--custom_mutators/honggfuzz/README.md2
2 files changed, 7 insertions, 7 deletions
diff --git a/custom_mutators/README.md b/custom_mutators/README.md
index 13172cdc..fa877f34 100644
--- a/custom_mutators/README.md
+++ b/custom_mutators/README.md
@@ -1,6 +1,6 @@
# Custom Mutators
-Custom mutators enhance and alter the mutation strategies of afl++.
+Custom mutators enhance and alter the mutation strategies of AFL++.
For further information and documentation on how to write your own, read [the docs](../docs/custom_mutators.md).
## Examples
@@ -11,9 +11,9 @@ The `./examples` folder contains examples for custom mutators in python and C.
In `./rust`, you will find rust bindings, including a simple example in `./rust/example` and an example for structured fuzzing, based on lain, in`./rust/example_lain`.
-## The afl++ Grammar Mutator
+## The AFL++ Grammar Mutator
-If you use git to clone afl++, then the following will incorporate our
+If you use git to clone AFL++, then the following will incorporate our
excellent grammar custom mutator:
```sh
git submodule update --init
@@ -40,7 +40,7 @@ Multiple custom mutators can be used by separating their paths with `:` in the e
### Superion Mutators
-Adrian Tiron ported the Superion grammar fuzzer to afl++, it is WIP and
+Adrian Tiron ported the Superion grammar fuzzer to AFL++, it is WIP and
requires cmake (among other things):
[https://github.com/adrian-rt/superion-mutator](https://github.com/adrian-rt/superion-mutator)
@@ -52,8 +52,8 @@ transforms protobuf raw:
https://github.com/bruce30262/libprotobuf-mutator_fuzzing_learning/tree/master/4_libprotobuf_aflpp_custom_mutator
has a transform function you need to fill for your protobuf format, however
-needs to be ported to the updated afl++ custom mutator API (not much work):
+needs to be ported to the updated AFL++ custom mutator API (not much work):
https://github.com/thebabush/afl-libprotobuf-mutator
-same as above but is for current afl++:
+same as above but is for current AFL++:
https://github.com/P1umer/AFLplusplus-protobuf-mutator
diff --git a/custom_mutators/honggfuzz/README.md b/custom_mutators/honggfuzz/README.md
index e1cab281..4bf5c462 100644
--- a/custom_mutators/honggfuzz/README.md
+++ b/custom_mutators/honggfuzz/README.md
@@ -1,7 +1,7 @@
# custum mutator: honggfuzz mangle
this is the honggfuzz mutator in mangle.c as a custom mutator
-module for afl++. It is the original mangle.c, mangle.h and honggfuzz.h
+module for AFL++. It is the original mangle.c, mangle.h and honggfuzz.h
with a lot of mocking around it :-)
just type `make` to build