diff --git a/Makefile b/Makefile index 29043a94..1c401fda 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # PROGNAME = afl -VERSION = 2.01b +VERSION = 2.02b PREFIX ?= /usr/local BIN_PATH = $(PREFIX)/bin @@ -22,6 +22,8 @@ HELPER_PATH = $(PREFIX)/lib/afl DOC_PATH = $(PREFIX)/share/doc/afl MISC_PATH = $(PREFIX)/share/afl +# PROGS intentionally omit afl-as, which gets installed elsewhere. + PROGS = afl-gcc afl-fuzz afl-showmap afl-tmin afl-gotcpu afl-analyze SH_PROGS = afl-plot afl-cmin afl-whatsup diff --git a/afl-fuzz.c b/afl-fuzz.c index 8c05558a..2d12b823 100644 --- a/afl-fuzz.c +++ b/afl-fuzz.c @@ -6071,10 +6071,10 @@ static u8 fuzz_one(char** argv) { } - /* Values 16 and 17 can be selected only if there are any extras + /* Values 15 and 16 can be selected only if there are any extras present in the dictionaries. */ - case 16: { + case 15: { /* Overwrite bytes with an extra. */ @@ -6111,7 +6111,7 @@ static u8 fuzz_one(char** argv) { } - case 17: { + case 16: { u32 use_extra, extra_len, insert_at = UR(temp_len); u8* new_buf; diff --git a/docs/ChangeLog b/docs/ChangeLog index 7a835cc7..f4dcb5f4 100644 --- a/docs/ChangeLog +++ b/docs/ChangeLog @@ -16,6 +16,13 @@ Not sure if you should upgrade? The lowest currently recommended version is 1.92b. If you're stuck on an earlier release, it's strongly advisable to get on with the times. +-------------- +Version 2.02b: +-------------- + + - Fixed a "lcamtuf can't count to 16" bug in the havoc stage. Reported + by Guillaume Endignoux. + -------------- Version 2.01b: -------------- diff --git a/docs/README b/docs/README index d6f63cb0..47be3d9d 100644 --- a/docs/README +++ b/docs/README @@ -432,6 +432,7 @@ bug reports, or patches from: Christian Holler Dominique Pelle Jacek Wielemborek Leo Barnes Jeremy Barnes Jeff Trull + Guillaume Endignoux ilovezfs Thank you!