split afl-fuzz #1 (globls and python are now separate)

This commit is contained in:
Andrea Fioraldi
2019-08-30 13:00:45 +02:00
parent 0ba49eacc9
commit 113fc168ab
4 changed files with 517 additions and 664 deletions

View File

@ -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: *