diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-08-30 13:00:45 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-08-30 13:00:45 +0200 |
commit | 113fc168ab02f5241522a74c06bc8fb21fcafc55 (patch) | |
tree | 7d5720647d9616c819e5e9d633c22be8a5af249b /include/config.h | |
parent | 0ba49eacc9062622cb1aa55cf7b7e0b7d95aff9f (diff) | |
download | afl++-113fc168ab02f5241522a74c06bc8fb21fcafc55.tar.gz |
split afl-fuzz #1 (globls and python are now separate)
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 37a2a794..324435b3 100644 --- a/include/config.h +++ b/include/config.h @@ -234,6 +234,8 @@ 100, /* One-off with common buffer size */ \ 127 /* Overflow signed 8-bit when incremented */ +#define INTERESTING_8_LEN 9 + #define INTERESTING_16 \ -32768, /* Overflow signed 16-bit when decremented */ \ -129, /* Overflow signed 8-bit */ \ @@ -246,6 +248,8 @@ 4096, /* One-off with common buffer size */ \ 32767 /* Overflow signed 16-bit when incremented */ +#define INTERESTING_16_LEN 10 + #define INTERESTING_32 \ -2147483648LL, /* Overflow signed 32-bit when decremented */ \ -100663046, /* Large negative number (endian-agnostic) */ \ @@ -256,6 +260,8 @@ 100663045, /* Large positive number (endian-agnostic) */ \ 2147483647 /* Overflow signed 32-bit when incremented */ +#define INTERESTING_32_LEN 8 + /*********************************************************** * * * Really exotic stuff you probably don't want to touch: * |