aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhexcoder <hexcoder-@users.noreply.github.com>2020-11-18 08:40:12 +0100
committerGitHub <noreply@github.com>2020-11-18 08:40:12 +0100
commit211a6eb411a6e57cd22a24bb50ae095676d8b0c5 (patch)
treef5a4096ff6d1f8537b02379d91cb0faec7626180
parent108a89b55959ed41fa3b050696148e698e6de2df (diff)
downloadafl++-211a6eb411a6e57cd22a24bb50ae095676d8b0c5.tar.gz
typos and wording
-rw-r--r--docs/env_variables.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md
index e6f9c275..04ba032a 100644
--- a/docs/env_variables.md
+++ b/docs/env_variables.md
@@ -306,10 +306,10 @@ checks or alter some of the more exotic semantics of the tool:
don't want AFL++ to spend too much time classifying that stuff and just
rapidly put all timeouts in that bin.
- - Setting `AFL_FORKSRV_INIT_TMOUT` allows yout to specify a different timeout
+ - Setting `AFL_FORKSRV_INIT_TMOUT` allows you to specify a different timeout
to wait for the forkserver to spin up. The default is the `-t` value times
`FORK_WAIT_MULT` from `config.h` (usually 10), so for a `-t 100`, the
- default would wait `1000` milis. Setting a different time here is useful
+ default would wait for `1000` milliseconds. Setting a different time here is useful
if the target has a very slow startup time, for example when doing
full-system fuzzing or emulation, but you don't want the actual runs
to wait too long for timeouts.
@@ -403,10 +403,10 @@ checks or alter some of the more exotic semantics of the tool:
- Setting `AFL_MAX_DET_EXRAS` will change the threshold at what number of elements
in the `-x` dictionary and LTO autodict (combined) the probabilistic mode will
- kick off. In probabilistic mode, not all dictionary entires will be used all
- of the times for fuzzing mutations to not make fuzzing slower by it.
- The default count is `200` element. So for the 200 + 1st element, there is a
- 1 in 201 chance, that one of the dictionary entry will not be used directly.
+ kick off. In probabilistic mode not all dictionary entires will be used all
+ of the times for fuzzing mutations to not slow down fuzzing.
+ The default count is `200` elements. So for the 200 + 1st element, there is a
+ 1 in 201 chance, that one of the dictionary entries will not be used directly.
- Setting `AFL_NO_FORKSRV` disables the forkserver optimization, reverting to
fork + execve() call for every tested input. This is useful mostly when