diff options
author | van Hauser <vh@thc.org> | 2020-07-21 20:53:51 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-07-21 20:53:51 +0200 |
commit | ce9b4698fec5222e0af1b62d68c4105e6364771e (patch) | |
tree | 04a9ca3d25eac9dc07b20e6b9daa0fa9da369898 /include/config.h | |
parent | 9a33a29b4a87ec9f211f83fa83f499e1ed8c256d (diff) | |
download | afl++-ce9b4698fec5222e0af1b62d68c4105e6364771e.tar.gz |
added andrea's splicing, added cycle_schedules
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 4503c3e9..9710cd1f 100644 --- a/include/config.h +++ b/include/config.h @@ -401,5 +401,29 @@ // #define IGNORE_FINDS +/* Text mutations */ + +/* What is the minimum length of a queue input to be evaluated for "is_ascii"? ++ */ + +#define AFL_TXT_MIN_LEN 12 + +/* What is the minimum percentage of ascii characters present to be classifed + as "is_ascii"? */ + +#define AFL_TXT_MIN_PERCENT 95 + +/* How often to perform ASCII mutations 0 = disable, 1-8 are good values */ + +#define AFL_TXT_BIAS 6 + +/* Maximum length of a string to tamper with */ + +#define AFL_TXT_STRING_MAX_LEN 1024 + +/* Maximum mutations on a string */ + +#define AFL_TXT_STRING_MAX_MUTATIONS 8 + #endif /* ! _HAVE_CONFIG_H */ |