diff options
author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-05-28 23:43:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-29 00:43:14 +0200 |
commit | 6883605d1314503ad6ef8aadcadc90222da5c576 (patch) | |
tree | 58df4d704207377e980e2c5b3d8c09ac8dfebd95 /include/envs.h | |
parent | de7370c0e966498ed95ab8a68ce57f6a1d10c21b (diff) | |
download | afl++-6883605d1314503ad6ef8aadcadc90222da5c576.tar.gz |
Support writing Stalker stats (#945)
* Support writing Stalker stats * Fixed string handling in print functions Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'include/envs.h')
-rw-r--r-- | include/envs.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/envs.h b/include/envs.h index 73cd82a8..08b3284a 100644 --- a/include/envs.h +++ b/include/envs.h @@ -55,17 +55,22 @@ static char *afl_environment_variables[] = { "AFL_FORCE_UI", "AFL_FRIDA_DEBUG_MAPS", "AFL_FRIDA_EXCLUDE_RANGES", + "AFL_FRIDA_INST_DEBUG_FILE", "AFL_FRIDA_INST_NO_OPTIMIZE", "AFL_FRIDA_INST_NO_PREFETCH", "AFL_FRIDA_INST_RANGES", - "AFL_FRIDA_INST_STRICT", "AFL_FRIDA_INST_TRACE", + "AFL_FRIDA_OUTPUT_STDOUT", + "AFL_FRIDA_OUTPUT_STDERR", "AFL_FRIDA_PERSISTENT_ADDR", "AFL_FRIDA_PERSISTENT_CNT", "AFL_FRIDA_PERSISTENT_DEBUG", "AFL_FRIDA_PERSISTENT_HOOK", "AFL_FRIDA_PERSISTENT_RET", "AFL_FRIDA_PERSISTENT_RETADDR_OFFSET", + "AFL_FRIDA_STATS_FILE", + "AFL_FRIDA_STATS_INTERVAL", + "AFL_FRIDA_STATS_TRANSITIONS", "AFL_FUZZER_ARGS", // oss-fuzz "AFL_GDB", "AFL_GCC_ALLOWLIST", |