diff options
author | vanhauser-thc <vh@thc.org> | 2023-02-13 11:34:14 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-02-13 11:34:14 +0100 |
commit | 80eabd6e8a30c2ffc0f084ab34df8b9d582419c3 (patch) | |
tree | 3cd5bfa41f3931d9095f5c0576cefc5ecc60367b /instrumentation/README.llvm.md | |
parent | 5a0100c6eece0d668c7040ec6e6ed3f59ef0d1ba (diff) | |
download | afl++-80eabd6e8a30c2ffc0f084ab34df8b9d582419c3.tar.gz |
AFL_LLVM_DICT2FILE_NO_MAIN support
Diffstat (limited to 'instrumentation/README.llvm.md')
-rw-r--r-- | instrumentation/README.llvm.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/instrumentation/README.llvm.md b/instrumentation/README.llvm.md index 9da1b0f6..c0677474 100644 --- a/instrumentation/README.llvm.md +++ b/instrumentation/README.llvm.md @@ -167,6 +167,10 @@ 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. +Adding `AFL_LLVM_DICT2FILE_NO_MAIN=1` will skip parsing `main()` which often +does command line parsing which has string comparisons that are not helpful +for fuzzing. + ## 6) AFL++ Context Sensitive Branch Coverage ### What is this? |