diff options
author | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-08-08 01:29:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-08 01:29:32 +0200 |
commit | df74625df0324e17178dbf3c7c03484719ef6dd0 (patch) | |
tree | 4972da62b84cf5af25ca0e83623823f5f87bb7a3 /custom_mutators | |
parent | 1cffe27185419ef45d32d7fbc07d5a24e527546d (diff) | |
download | afl++-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')
-rw-r--r-- | custom_mutators/README.md | 12 | ||||
-rw-r--r-- | custom_mutators/honggfuzz/README.md | 2 |
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 |