Skip to content
Snippets Groups Projects
Commit f97409dd authored by van Hauser's avatar van Hauser
Browse files

v2.53c

parent c384367f
No related branches found
No related tags found
No related merge requests found
...@@ -354,11 +354,11 @@ see [http://lcamtuf.coredump.cx/afl/plot/](http://lcamtuf.coredump.cx/afl/plot/) ...@@ -354,11 +354,11 @@ see [http://lcamtuf.coredump.cx/afl/plot/](http://lcamtuf.coredump.cx/afl/plot/)
Every instance of afl-fuzz takes up roughly one core. This means that on Every instance of afl-fuzz takes up roughly one core. This means that on
multi-core systems, parallelization is necessary to fully utilize the hardware. multi-core systems, parallelization is necessary to fully utilize the hardware.
For tips on how to fuzz a common target on multiple cores or multiple networked For tips on how to fuzz a common target on multiple cores or multiple networked
machines, please refer to [parallel_fuzzing.txt](docs/parallel_fuzzing.txt). machines, please refer to [docs/parallel_fuzzing.txt](docs/parallel_fuzzing.txt).
The parallel fuzzing mode also offers a simple way for interfacing AFL to other The parallel fuzzing mode also offers a simple way for interfacing AFL to other
fuzzers, to symbolic or concolic execution engines, and so forth; again, see the fuzzers, to symbolic or concolic execution engines, and so forth; again, see the
last section of [parallel_fuzzing.txt](docs/parallel_fuzzing.txt) for tips. last section of [docs/parallel_fuzzing.txt](docs/parallel_fuzzing.txt) for tips.
## 10) Fuzzer dictionaries ## 10) Fuzzer dictionaries
...@@ -591,6 +591,7 @@ feedback, bug reports, or patches from: ...@@ -591,6 +591,7 @@ feedback, bug reports, or patches from:
Rene Freingruber Sergey Davidoff Rene Freingruber Sergey Davidoff
Sami Liedes Craig Young Sami Liedes Craig Young
Andrzej Jackowski Daniel Hodson Andrzej Jackowski Daniel Hodson
Nathan Voss Dominik Maier
``` ```
Thank you! Thank you!
......
...@@ -2,21 +2,14 @@ Roadmap 2.53d: ...@@ -2,21 +2,14 @@ Roadmap 2.53d:
============== ==============
- indent all the code: clang-format -style=Google - indent all the code: clang-format -style=Google
- README.md
- update docs/sister_projects.txt - update docs/sister_projects.txt
- better defaults:
* laf-intel activated, needs deactiatation
* fast mode schedule
* MOpt with -L 30
* ... ?
afl-fuzz: afl-fuzz:
- put mutator, scheduler, forkserver and input channels in individual files - put mutator, scheduler, forkserver and input channels in individual files
- reuse forkserver for showmap, afl-cmin, etc. - reuse forkserver for showmap, afl-cmin, etc.
gcc_plugin: gcc_plugin:
- needs to be rewritten
- fix crashes when compiling :( - fix crashes when compiling :(
- whitelist support - whitelist support
- skip over uninteresting blocks - skip over uninteresting blocks
...@@ -32,7 +25,7 @@ unit testing / or large testcase campaign ...@@ -32,7 +25,7 @@ unit testing / or large testcase campaign
Roadmap 2.54d: Roadmap 2.54d:
============== ==============
- expand MAP size to 256k (current L2 cache size on processors) - expand MAP size to 256k (current L2 cache size on processors)
-> 18 bit size map -> 18 bit map
- llvm_mode: dynamic map size and collission free basic block IDs - llvm_mode: dynamic map size and collission free basic block IDs
qemu_mode: qemu_mode:
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
/* Version string: */ /* Version string: */
#define VERSION "++2.52d" #define VERSION "++2.53c"
/****************************************************** /******************************************************
* * * *
......
...@@ -13,10 +13,12 @@ Want to stay in the loop on major new features? Join our mailing list by ...@@ -13,10 +13,12 @@ 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 ++2.52d (dev): Version ++2.53c (release):
----------------------------- --------------------------
- README is now README.md
- imported the few minor changes from the 2.53b release
- unicorn_mode got added - thanks to domenukk for the patch! - unicorn_mode got added - thanks to domenukk for the patch!
- fix llvm_mode AFL_TRACE_PC with modern llvm - fix llvm_mode AFL_TRACE_PC with modern llvm
- fix a crash in qemu_mode which also exists in stock afl - fix a crash in qemu_mode which also exists in stock afl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment