diff options
author | vanhauser-thc <vh@thc.org> | 2024-06-04 14:47:58 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-06-04 14:48:02 +0200 |
commit | 2d9b793dbbe9288a1caa4459c280678179bb46c9 (patch) | |
tree | 41982737fe085d21675c11625e8b81d936d57fce /docs | |
parent | 7f02f0da616cf2adf11c139e203c52442dbe52cd (diff) | |
download | afl++-2d9b793dbbe9288a1caa4459c280678179bb46c9.tar.gz |
AFL_NO_SYNC
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Changelog.md | 2 | ||||
-rw-r--r-- | docs/env_variables.md | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md index ba7eb6a3..1f6a940e 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -10,6 +10,7 @@ three times faster. The reason for this is unknown. - added AFL_DISABLE_REDUNDANT for huge queues - fix AFL_PERSISTENT_RECORD + - added `AFL_NO_SYNC` environment variable that does what you think it does - run custom_post_process after standard trimming - prevent filenames in the queue that have spaces - minor fix for FAST schedules @@ -32,6 +33,7 @@ * afl-showmap - fix memory leak on shmem testcase usage (thanks to @ndrewh) - minor fix to collect coverage -C (thanks to @bet4it) + * libtokencap: script generate_libtoken_dict.sh added by @a-shvedov * enhanced the ASAN configuration diff --git a/docs/env_variables.md b/docs/env_variables.md index b3519107..22e0ce0f 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -588,6 +588,9 @@ checks or alter some of the more exotic semantics of the tool: between fuzzing instances synchronization. Default sync time is 30 minutes, note that time is halved for -M main nodes. + - `AFL_NO_SYNC` disables any syncing whatsoever and takes priority on all + other syncing parameters. + - Setting `AFL_TARGET_ENV` causes AFL++ to set extra environment variables for the target binary. Example: `AFL_TARGET_ENV="VAR1=1 VAR2='a b c'" afl-fuzz ... `. This exists mostly for things like `LD_LIBRARY_PATH` but it would |