diff options
author | van Hauser <vh@thc.org> | 2022-01-11 19:35:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 19:35:04 +0100 |
commit | 741dcabd5dfca3607a86acd916b3563e01c3ccea (patch) | |
tree | 0a5082f8c79e2feee4ba1a1bf7a76d0e0d0030cb /docs/FAQ.md | |
parent | c7dbeb856866b9ca8f9772ff965edce91ce71659 (diff) | |
parent | d8920e31f861501156f366a54f80f9a9f9368df7 (diff) | |
download | afl++-741dcabd5dfca3607a86acd916b3563e01c3ccea.tar.gz |
Merge pull request #1248 from intrigus-lgtm/patch-2
Fix two typos.
Diffstat (limited to 'docs/FAQ.md')
-rw-r--r-- | docs/FAQ.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/FAQ.md b/docs/FAQ.md index 3d3dce20..90cae453 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -58,10 +58,10 @@ If you find an interesting or important question missing, submit it via A program contains `functions`, `functions` contain the compiled machine code. The compiled machine code in a `function` can be in a single or many `basic - blocks`. A `basic block` is the largest possible number of subsequent machine - code instructions that has exactly one entry point (which can be be entered by - multiple other basic blocks) and runs linearly without branching or jumping to - other addresses (except at the end). + blocks`. A `basic block` is the **largest possible number of subsequent machine + code instructions** that has **exactly one entry point** (which can be be entered by + multiple other basic blocks) and runs linearly **without branching or jumping to + other addresses** (except at the end). ``` function() { @@ -191,7 +191,7 @@ If you find an interesting or important question missing, submit it via AFL++ comes with several power schedules, initially ported from [AFLFast](https://github.com/mboehme/aflfast) however modified to be more effective and several more modes added. - The most effective modes are '-p fast` (default) and `-p explore`. + The most effective modes are `-p fast` (default) and `-p explore`. If you fuzz with several parallel afl-fuzz instances, then it is beneficial to assign a different schedule to each instance, however the majority should @@ -225,4 +225,4 @@ If you find an interesting or important question missing, submit it via package and because of that the AFL++ llvm plugins do not match anymore. Solution: `git pull ; make clean install` of AFL++. -</p></details> \ No newline at end of file +</p></details> |