about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2022-01-11 21:46:04 +0100
committerGitHub <noreply@github.com>2022-01-11 21:46:04 +0100
commit657c1e9b9b13aa94ff7f0d5530a567d19518f717 (patch)
tree7727adedcbf74e87a5130777e44ad603650c2a5e
parent741dcabd5dfca3607a86acd916b3563e01c3ccea (diff)
parent0ed1cb4d31b3eeb1b38297b2fb14747f8d4a8f27 (diff)
downloadafl++-657c1e9b9b13aa94ff7f0d5530a567d19518f717.tar.gz
Merge pull request #1252 from tokatoka/dev
Add missing backticks (`)
-rw-r--r--unicorn_mode/README.md4
-rw-r--r--utils/libdislocator/README.md4
-rw-r--r--utils/libtokencap/README.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/unicorn_mode/README.md b/unicorn_mode/README.md
index ee4a7b22..0f28cf96 100644
--- a/unicorn_mode/README.md
+++ b/unicorn_mode/README.md
@@ -96,9 +96,9 @@ As for the QEMU-based instrumentation, unicornafl comes with a sub-instruction b
 
 The options that enable Unicorn CompareCoverage are the same used for QEMU.
 This will split up each multi-byte compare to give feedback for each correct byte.
-AFL_COMPCOV_LEVEL=1 is to instrument comparisons with only immediate values.
+`AFL_COMPCOV_LEVEL=1` is to instrument comparisons with only immediate values.
 
-AFL_COMPCOV_LEVEL=2 instruments all comparison instructions.
+`AFL_COMPCOV_LEVEL=2` instruments all comparison instructions.
 
 Comparison instructions are currently instrumented only for the x86, x86_64 and ARM targets.
 
diff --git a/utils/libdislocator/README.md b/utils/libdislocator/README.md
index 116a22ba..68ac9143 100644
--- a/utils/libdislocator/README.md
+++ b/utils/libdislocator/README.md
@@ -27,9 +27,9 @@ heap-related security bugs in several ways:
     AFL_LD_HARD_FAIL).
 
   - Optionally, in platforms supporting it, huge pages can be used by passing
-    USEHUGEPAGE=1 to make.
+    `USEHUGEPAGE=1` to make.
 
-  - Size alignment to `max_align_t` can be enforced with AFL_ALIGNED_ALLOC=1. In
+  - Size alignment to `max_align_t` can be enforced with `AFL_ALIGNED_ALLOC=1`. In
     this case, a tail canary is inserted in the padding bytes at the end of the
     allocated zone. This reduce the ability of libdislocator to detect
     off-by-one bugs but also it make slibdislocator compliant to the C standard.
diff --git a/utils/libtokencap/README.md b/utils/libtokencap/README.md
index 4e7ed1d1..50104291 100644
--- a/utils/libtokencap/README.md
+++ b/utils/libtokencap/README.md
@@ -31,7 +31,7 @@ require AFL-instrumented binaries to work.
 
 To use the library, you *need* to make sure that your fuzzing target is compiled
 with -fno-builtin and is linked dynamically. If you wish to automate the first
-part without mucking with CFLAGS in Makefiles, you can set AFL_NO_BUILTIN=1
+part without mucking with CFLAGS in Makefiles, you can set `AFL_NO_BUILTIN=1`
 when using afl-gcc. This setting specifically adds the following flags:
 
 ```