diff options
author | van Hauser <vh@thc.org> | 2023-02-23 11:49:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 11:49:28 +0100 |
commit | eb5c1ee4f3ffd6e42a3637082ab4ea089052ad8b (patch) | |
tree | b0ebfc066252a9c78dfe90cf811b2b27f43cc215 /include/config.h | |
parent | a293281b9bbb4e61bfbe5e67ab108d9e5ee40192 (diff) | |
parent | eeccb2da69d7e6f32ee74c431e7c5053e8379dff (diff) | |
download | afl++-eb5c1ee4f3ffd6e42a3637082ab4ea089052ad8b.tar.gz |
Merge pull request #1650 from AFLplusplus/autotoken
Autotoken
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/config.h b/include/config.h index a5a4c473..e46f515a 100644 --- a/include/config.h +++ b/include/config.h @@ -364,9 +364,9 @@ * * ***********************************************************/ -/* Call count interval between reseeding the libc PRNG from /dev/urandom: */ +/* Call count interval between reseeding the PRNG from /dev/urandom: */ -#define RESEED_RNG 100000 +#define RESEED_RNG 2500000 /* The default maximum testcase cache size in MB, 0 = disable. A value between 50 and 250 is a good default value. Note that the @@ -491,10 +491,14 @@ #define AFL_TXT_MIN_LEN 12 +/* Maximum length of a queue input to be evaluated for "is_ascii"? */ + +#define AFL_TXT_MAX_LEN 65535 + /* What is the minimum percentage of ascii characters present to be classifed as "is_ascii"? */ -#define AFL_TXT_MIN_PERCENT 94 +#define AFL_TXT_MIN_PERCENT 99 /* How often to perform ASCII mutations 0 = disable, 1-8 are good values */ |