diff options
author | van Hauser <vh@thc.org> | 2020-08-05 01:13:51 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-05 01:13:51 +0200 |
commit | 6d364dd2cb0ac31797b52e590b57bf9c10cc2302 (patch) | |
tree | c241c6133910fdce295760657a1a2dd6879487d6 /docs/env_variables.md | |
parent | 8ed6207b5cec628cb51a807a0a585f129de2e041 (diff) | |
download | afl++-6d364dd2cb0ac31797b52e590b57bf9c10cc2302.tar.gz |
add sancov-like allow/denylist instrument feature
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index 811c5658..f0ae0b6c 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -202,14 +202,15 @@ Then there are a few specific features that are only available in llvm_mode: See llvm_mode/README.laf-intel.md for more information. -### INSTRUMENT_FILE +### INSTRUMENT LIST (selectively instrument files and functions) This feature allows selectively instrumentation of the source - - Setting AFL_LLVM_INSTRUMENT_FILE with a filename will only instrument those - files that match the names listed in this file. + - Setting AFL_LLVM_ALLOWLIST or AFL_LLVM_DENYLIST with a filenames and/or + function will only instrument (or skip) those files that match the names + listed in the specified file. - See llvm_mode/README.instrument_file.md for more information. + See llvm_mode/README.instrument_list.md for more information. ### NOT_ZERO @@ -241,7 +242,7 @@ Then there are a few specific features that are only available in the gcc_plugin - Setting AFL_GCC_INSTRUMENT_FILE with a filename will only instrument those files that match the names listed in this file (one filename per line). - See gcc_plugin/README.instrument_file.md for more information. + See gcc_plugin/README.instrument_list.md for more information. ## 3) Settings for afl-fuzz |