diff options
author | van Hauser <vh@thc.org> | 2020-05-04 18:01:47 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-04 18:01:47 +0200 |
commit | 16c16b3e6e0cd678f5da76f757761fb821f1011f (patch) | |
tree | a8532e9181cea78e31cf6e6443210363151588f5 /docs/env_variables.md | |
parent | 945e00b73fde56f98235a03472b4af1539983f80 (diff) | |
download | afl++-16c16b3e6e0cd678f5da76f757761fb821f1011f.tar.gz |
ctx and ngram can be used together now
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index bdbb8520..ab5808ec 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -97,12 +97,14 @@ Then there are a few specific features that are only available in llvm_mode: - AFL_LLVM_INSTRUMENT - this configures the instrumentation mode. Available options: - DEFAULT - classic AFL (map[cur_loc ^ prev_loc >> 1]++) + CLASSIC - classic AFL (map[cur_loc ^ prev_loc >> 1]++) (default) CFG - InsTrim instrumentation (see below) LTO - LTO instrumentation (see below) CTX - context sensitive instrumentation (see below) NGRAM-x - deeper previous location coverage (from NGRAM-2 up to NGRAM-16) - Only one can be used. + In CLASSIC (default) can can also specify CTX and/nor NGRAM, seperate + the options with a comma "," then, e.g.: + AFL_LLVM_INSTRUMENT=CLASSIC,CTX,NGRAM-4 ### LTO |