diff options
author | Roman M. Iudichev <SecNotice@ya.ru> | 2021-05-07 18:32:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 17:32:17 +0200 |
commit | 069e61dfc67050154b649ba286552b563b27e9ba (patch) | |
tree | e1568875c10a04ec281369e248c947cc8c3fbc5a /docs/env_variables.md | |
parent | 2fd96294780f016a5b2533f0c1826a07dbbac2a8 (diff) | |
download | afl++-069e61dfc67050154b649ba286552b563b27e9ba.tar.gz |
Exit on time (#904)
* Variable AFL_EXIT_ON_TIME description has been added. Variables AFL_EXIT_ON_TIME and afl_exit_on_time has been added. afl->exit_on_time variable initialization has been added. The asignment of a value to the afl->afl_env.afl_exit_on_time variable from environment variables has been added. Code to exit on timeout if new path not found has been added. * Type of afl_exit_on_time variable has been changed. Variable exit_on_time has been added to the afl_state_t structure. * Command `export AFL_EXIT_WHEN_DONE=1` has been added. * Millisecond to second conversion has been added. Call get_cur_time() has been added. * Revert to using the saved current time value. * Useless check has been removed.
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index 0100ffac..8879db72 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -284,6 +284,10 @@ checks or alter some of the more exotic semantics of the tool: normally indicated by the cycle counter in the UI turning green. May be convenient for some types of automated jobs. + - `AFL_EXIT_ON_TIME` Causes afl-fuzz to terminate if no new paths were + found within a specified period of time. May be convenient for some + types of automated jobs. + - `AFL_EXIT_ON_SEED_ISSUES` will restore the vanilla afl-fuzz behaviour which does not allow crashes or timeout seeds in the initial -i corpus. |