diff options
author | van Hauser <vh@thc.org> | 2019-07-25 08:47:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-25 08:47:22 +0200 |
commit | d6c2db9620f413575c4c0cd44deba9d50b01711b (patch) | |
tree | 1e82752db9c2ac36f6862941ab71cedf52683415 /docs/binaryonly_fuzzing.txt | |
parent | 9246f21f2a75fbe4113dd7340f870679a7953b24 (diff) | |
parent | 00dc8a0ad577fc9219b2d4999c32005a8fc5cc3a (diff) | |
download | afl++-d6c2db9620f413575c4c0cd44deba9d50b01711b.tar.gz |
Merge pull request #27 from domenukk/afl-unicorn
Add AFL Unicorn
Diffstat (limited to 'docs/binaryonly_fuzzing.txt')
-rw-r--r-- | docs/binaryonly_fuzzing.txt | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/docs/binaryonly_fuzzing.txt b/docs/binaryonly_fuzzing.txt index 0fb12b2b..04e449c0 100644 --- a/docs/binaryonly_fuzzing.txt +++ b/docs/binaryonly_fuzzing.txt @@ -12,7 +12,7 @@ The following is a description of how these can be fuzzed with afl++ !!!!! TL;DR: try DYNINST with afl-dyninst. If it produces too many crashes then - use afl -Q qemu_mode, or better: use both in parallel + use afl -Q qemu_mode. !!!!! @@ -27,6 +27,16 @@ It is the easiest to use alternative and even works for cross-platform binaries. As it is included in afl++ this needs no URL. +UNICORN +------- +Unicorn is a fork of QEMU. The instrumentation is, therefore, very similar. +In contrast to QEMU, Unicorn does not offer a full system or even userland emulation. +Runtime environment and/or loaders have to be written from scratch, if needed. +On top, block chaining has been removed. This means the speed boost introduced in +to the patched QEMU Mode of afl++ cannot simply be ported over to Unicorn. +For further information, check out ./unicorn_mode.txt. + + DYNINST ------- Dyninst is a binary instrumentation framework similar to Pintool and Dynamorio @@ -111,21 +121,6 @@ Pintool solutions: https://github.com/spinpx/afl_pin_mode <= only old Pintool version supported -Non-AFL solutions ------------------ - -There are many binary-only fuzzing frameworks. Some are great for CTFs but don't -work with large binaries, other are very slow but have good path discovery, -some are very hard to set-up ... - -QSYM: https://github.com/sslab-gatech/qsym -Manticore: https://github.com/trailofbits/manticore -S2E: https://github.com/S2E -<please send me any missing that are good> - - - That's it! News, corrections, updates? Email vh@thc.org - |