diff options
-rw-r--r-- | README.md | 4 | ||||
m--------- | coresight_mode/coresight-trace | 0 | ||||
m--------- | custom_mutators/grammar_mutator/grammar_mutator | 0 | ||||
-rw-r--r-- | docs/Changelog.md | 2 | ||||
-rw-r--r-- | include/config.h | 2 | ||||
-rw-r--r-- | src/afl-fuzz.c | 2 | ||||
-rwxr-xr-x | test/test-unicorn-mode.sh | 4 |
7 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md index f050728c..049518f8 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ <img align="right" src="https://raw.githubusercontent.com/AFLplusplus/Website/master/static/aflpp_bg.svg" alt="AFL++ logo" width="250" heigh="250"> -Release version: [3.14c](https://github.com/AFLplusplus/AFLplusplus/releases) +Release version: [4.00c](https://github.com/AFLplusplus/AFLplusplus/releases) -GitHub version: 3.15a +GitHub version: 4.00c Repository: [https://github.com/AFLplusplus/AFLplusplus](https://github.com/AFLplusplus/AFLplusplus) diff --git a/coresight_mode/coresight-trace b/coresight_mode/coresight-trace -Subproject ec0fd6104720ac0b59967616363dc18209adc02 +Subproject fe8b26ea4b07fafa6f24e77c84dad0f3925d47d diff --git a/custom_mutators/grammar_mutator/grammar_mutator b/custom_mutators/grammar_mutator/grammar_mutator -Subproject 6ca490c66b949db20d8c861ebc8fb2e6ca725ea +Subproject cbe5e32752773945e0142fac9f1b7a0ccb5dcdf diff --git a/docs/Changelog.md b/docs/Changelog.md index e89a0761..7f539556 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -8,7 +8,7 @@ Want to stay in the loop on major new features? Join our mailing list by sending a mail to <afl-users+subscribe@googlegroups.com>. -### Version ++3.15a (dev) +### Version ++4.00c (release) - complete documentation restructuring, made possible by Google Season of Docs :) thank you Jana! - we renamed several UI and fuzzer_stat entries to be more precise, diff --git a/include/config.h b/include/config.h index 99cacc40..66a646b1 100644 --- a/include/config.h +++ b/include/config.h @@ -26,7 +26,7 @@ /* Version string: */ // c = release, a = volatile github dev, e = experimental branch -#define VERSION "++3.15a" +#define VERSION "++4.00c" /****************************************************** * * diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index d34cc6b4..a96dee97 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -315,7 +315,7 @@ static void usage(u8 *argv0, int more_help) { SAYF("Compiled with %s module support, see docs/custom_mutator.md\n", (char *)PYTHON_VERSION); #else - SAYF("Compiled without python module support.\n"); + SAYF("Compiled without Python module support.\n"); #endif #ifdef AFL_PERSISTENT_RECORD diff --git a/test/test-unicorn-mode.sh b/test/test-unicorn-mode.sh index e197e226..182958d6 100755 --- a/test/test-unicorn-mode.sh +++ b/test/test-unicorn-mode.sh @@ -4,7 +4,7 @@ $ECHO "$BLUE[*] Testing: unicorn_mode" test -d ../unicorn_mode/unicornafl -a -e ../unicorn_mode/unicornafl/samples/shellcode && { - test -e ../unicorn_mode/samples/simple/simple_target.bin -a -e ../unicorn_mode/samples/compcov_x64/compcov_target.bin && { + test -e ../unicorn_mode/samples/python_simple/simple_target.bin -a -e ../unicorn_mode/samples/compcov_x64/compcov_target.bin && { { # We want to see python errors etc. in logs, in case something doesn't work export AFL_DEBUG_CHILD=1 @@ -61,7 +61,7 @@ test -d ../unicorn_mode/unicornafl -a -e ../unicorn_mode/unicornafl/samples/shel { $ECHO "$GREY[*] running afl-fuzz for unicorn_mode in python, this will take approx 25 seconds" { - ../afl-fuzz -m ${MEM_LIMIT} -V25 -U -i in -o out -d -- "$PY" ../unicorn_mode/samples/simple/simple_test_harness.py @@ >>errors 2>&1 + ../afl-fuzz -m ${MEM_LIMIT} -V25 -U -i in -o out -d -- "$PY" ../unicorn_mode/samples/python_simple/simple_test_harness.py @@ >>errors 2>&1 } >>errors 2>&1 test -n "$( ls out/default/queue/id:000002* 2>/dev/null )" && { $ECHO "$GREEN[+] afl-fuzz is working correctly with unicorn_mode" |