aboutsummaryrefslogtreecommitdiff
path: root/custom_mutators/README.md
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-08-08 01:29:32 +0200
committerGitHub <noreply@github.com>2021-08-08 01:29:32 +0200
commitdf74625df0324e17178dbf3c7c03484719ef6dd0 (patch)
tree4972da62b84cf5af25ca0e83623823f5f87bb7a3 /custom_mutators/README.md
parent1cffe27185419ef45d32d7fbc07d5a24e527546d (diff)
downloadafl++-df74625df0324e17178dbf3c7c03484719ef6dd0.tar.gz
Change afl to AFL in *.md (#1057)
Changes in *.md files: - afl++ > AFL++ (acronym) - afl > AFL (compare https://github.com/google/AFL) Excluded from changes: - source code - function names - paths (folder and file names) - URLs
Diffstat (limited to 'custom_mutators/README.md')
-rw-r--r--custom_mutators/README.md12
1 files changed, 6 insertions, 6 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