diff options
author | vanhauser-thc <vh@thc.org> | 2021-07-01 08:20:32 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-07-01 08:20:39 +0200 |
commit | a6cf9bb336cc3e166469d6eed206a2b6fa9c994a (patch) | |
tree | 3165ce74c0f7af0e78cef3560caeb0582a2f8cde /custom_mutators | |
parent | 5d5624b930d95cc576624d22f68d5682c968ad97 (diff) | |
download | afl++-a6cf9bb336cc3e166469d6eed206a2b6fa9c994a.tar.gz |
update honggfuzz custom mutator
Diffstat (limited to 'custom_mutators')
-rw-r--r-- | custom_mutators/honggfuzz/honggfuzz.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/custom_mutators/honggfuzz/honggfuzz.h b/custom_mutators/honggfuzz/honggfuzz.h index c80cdd87..51c7b567 100644 --- a/custom_mutators/honggfuzz/honggfuzz.h +++ b/custom_mutators/honggfuzz/honggfuzz.h @@ -246,9 +246,9 @@ typedef struct { } timing; struct { struct { - uint8_t val[256]; + uint8_t val[512]; size_t len; - } dictionary[1024]; + } dictionary[8192]; size_t dictionaryCnt; const char* dictionaryFile; size_t mutationsMax; @@ -263,6 +263,7 @@ typedef struct { struct { bool useVerifier; bool exitUponCrash; + uint8_t exitCodeUponCrash; const char* reportFile; size_t dynFileIterExpire; bool only_printable; |