about summary refs log tree commit diff
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-11-25 16:47:49 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-11-25 16:47:49 +0100
commite0c8a5c0c6ae67af3280c0ead8124a2ffe920241 (patch)
treed102ffa53f6dbf8341165a34155b818cf00c8c72
parent4f1310db5171ed52660d664551005f305f22a29d (diff)
downloadafl++-e0c8a5c0c6ae67af3280c0ead8124a2ffe920241.tar.gz
Change "AFL" to "AFL++" in "README.llvm.md", fix references
-rw-r--r--docs/env_variables.md4
-rw-r--r--docs/fuzzing_expert.md4
-rw-r--r--instrumentation/README.llvm.md12
3 files changed, 10 insertions, 10 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md
index 4386c5f8..cbc63032 100644
--- a/docs/env_variables.md
+++ b/docs/env_variables.md
@@ -171,7 +171,7 @@ config.h to at least 18 and maybe up to 20 for this as otherwise too many map
 collisions occur.
 
 For more information, see
-[instrumentation/README.llvm.md#6) AFL Context Sensitive Branch Coverage](../instrumentation/README.llvm.md#6-afl-context-sensitive-branch-coverage).
+[instrumentation/README.llvm.md#6) AFL++ Context Sensitive Branch Coverage](../instrumentation/README.llvm.md#6-afl-context-sensitive-branch-coverage).
 
 #### INSTRUMENT LIST (selectively instrument files and functions)
 
@@ -247,7 +247,7 @@ in config.h to at least 18 and maybe up to 20 for this as otherwise too many map
 collisions occur.
 
 For more information, see
-[instrumentation/README.llvm.md#7) AFL N-Gram Branch Coverage](../instrumentation/README.llvm.md#7-afl-n-gram-branch-coverage).
+[instrumentation/README.llvm.md#7) AFL++ N-Gram Branch Coverage](../instrumentation/README.llvm.md#7-afl-n-gram-branch-coverage).
 
 #### NOT_ZERO
 
diff --git a/docs/fuzzing_expert.md b/docs/fuzzing_expert.md
index 5945d114..d0d28582 100644
--- a/docs/fuzzing_expert.md
+++ b/docs/fuzzing_expert.md
@@ -112,8 +112,8 @@ are interested in:
 
 There are many more options and modes available however these are most of the
 time less effective. See:
- * [instrumentation/README.llvm.md#6) AFL Context Sensitive Branch Coverage](../instrumentation/README.llvm.md#6-afl-context-sensitive-branch-coverage).
- * [instrumentation/README.llvm.md#7) AFL N-Gram Branch Coverage](../instrumentation/README.llvm.md#7-afl-n-gram-branch-coverage)
+ * [instrumentation/README.llvm.md#6) AFL++ Context Sensitive Branch Coverage](../instrumentation/README.llvm.md#6-afl-context-sensitive-branch-coverage).
+ * [instrumentation/README.llvm.md#7) AFL++ N-Gram Branch Coverage](../instrumentation/README.llvm.md#7-afl-n-gram-branch-coverage)
 
 #### c) Sanitizers
 
diff --git a/instrumentation/README.llvm.md b/instrumentation/README.llvm.md
index 1671f385..88ea0127 100644
--- a/instrumentation/README.llvm.md
+++ b/instrumentation/README.llvm.md
@@ -9,8 +9,8 @@ For the GCC-based instrumentation, see
 
 ! llvm_mode works with llvm versions 3.8 up to 13 !
 
-The code in this directory allows you to instrument programs for AFL using true
-compiler-level instrumentation, instead of the more crude assembly-level
+The code in this directory allows you to instrument programs for AFL++ using
+true compiler-level instrumentation, instead of the more crude assembly-level
 rewriting approach taken by afl-gcc and afl-clang. This has several interesting
 properties:
 
@@ -134,11 +134,11 @@ Then there are different ways of instrumenting the target:
 2a. N-GRAM coverage - which combines the previous visited edges with the current
     one. This explodes the map but on the other hand has proven to be effective
     for fuzzing. See
-    [7) AFL N-Gram Branch Coverage](#7-afl-n-gram-branch-coverage).
+    [7) AFL++ N-Gram Branch Coverage](#7-afl-n-gram-branch-coverage).
 
 2b. Context sensitive coverage - which combines the visited edges with an
     individual caller ID (the function that called the current one). See
-    [6) AFL Context Sensitive Branch Coverage](#6-afl-context-sensitive-branch-coverage).
+    [6) AFL++ Context Sensitive Branch Coverage](#6-afl-context-sensitive-branch-coverage).
 
 Then - additionally to one of the instrumentation options above - there is a
 very effective new instrumentation option called CmpLog as an alternative to
@@ -166,7 +166,7 @@ Just specify `AFL_LLVM_DICT2FILE=/absolute/path/file.txt` and during compilation
 all constant string compare parameters will be written to this file to be used
 with afl-fuzz' `-x` option.
 
-## 6) AFL Context Sensitive Branch Coverage
+## 6) AFL++ Context Sensitive Branch Coverage
 
 ### What is this?
 
@@ -206,7 +206,7 @@ previous_location_ID >> 1 ^ previous_callee_ID] += 1`
 Set the `AFL_LLVM_INSTRUMENT=CALLER` or `AFL_LLVM_CALLER=1` environment
 variable.
 
-## 7) AFL N-Gram Branch Coverage
+## 7) AFL++ N-Gram Branch Coverage
 
 ### Source