v3.14c release

This commit is contained in:
vanhauser-thc 2021-07-19 09:12:24 +02:00
parent a705b1548f
commit 18fd97fc5f
3 changed files with 12 additions and 3 deletions

View File

@ -2,9 +2,9 @@
<img align="right" src="https://raw.githubusercontent.com/andreafioraldi/AFLplusplus-website/master/static/logo_256x256.png" alt="AFL++ Logo"> <img align="right" src="https://raw.githubusercontent.com/andreafioraldi/AFLplusplus-website/master/static/logo_256x256.png" alt="AFL++ Logo">
Release Version: [3.13c](https://github.com/AFLplusplus/AFLplusplus/releases) Release Version: [3.14c](https://github.com/AFLplusplus/AFLplusplus/releases)
Github Version: 3.14a Github Version: 3.15a
Repository: [https://github.com/AFLplusplus/AFLplusplus](https://github.com/AFLplusplus/AFLplusplus) Repository: [https://github.com/AFLplusplus/AFLplusplus](https://github.com/AFLplusplus/AFLplusplus)
@ -31,6 +31,11 @@ With afl++ 3.13-3.20 we introduce frida_mode (-O) to have an alternative for
binary-only fuzzing. It is slower than Qemu mode but works on MacOS, Android, binary-only fuzzing. It is slower than Qemu mode but works on MacOS, Android,
iOS etc. iOS etc.
With afl++ 3.15 we introduced the following changes from previous behaviours:
* Also -M main mode does not due deterministic fuzzing by default anymore
* afl-cmin and afl-showmap -Ci now descent into subdirectories like
afl-fuzz -i does (but note that afl-cmin.bash does not)
With afl++ 3.14 we introduced the following changes from previous behaviours: With afl++ 3.14 we introduced the following changes from previous behaviours:
* afl-fuzz: deterministic fuzzing it not a default for -M main anymore * afl-fuzz: deterministic fuzzing it not a default for -M main anymore
* afl-cmin/afl-showmap -i now descends into subdirectories (afl-cmin.bash * afl-cmin/afl-showmap -i now descends into subdirectories (afl-cmin.bash

View File

@ -8,7 +8,7 @@
Want to stay in the loop on major new features? Join our mailing list by Want to stay in the loop on major new features? Join our mailing list by
sending a mail to <afl-users+subscribe@googlegroups.com>. sending a mail to <afl-users+subscribe@googlegroups.com>.
### Version ++3.14a (release) ### Version ++3.14c (release)
- afl-fuzz: - afl-fuzz:
- fix -F when a '/' was part of the parameter - fix -F when a '/' was part of the parameter
- fixed a crash for cmplog for very slow inputs - fixed a crash for cmplog for very slow inputs

View File

@ -1,5 +1,9 @@
# qbdi-based binary-only instrumentation for afl-fuzz # qbdi-based binary-only instrumentation for afl-fuzz
NOTE: this code is outdated and first would need to be adapted to the current
afl++ versions first.
Try afl_frida or fpicker [https://github.com/ttdennis/fpicker/](https://github.com/ttdennis/fpicker/) first, maybe they suite your need.
## 1) Introduction ## 1) Introduction
The code in ./qbdi_mode allows you to build a standalone feature that The code in ./qbdi_mode allows you to build a standalone feature that