about summary refs log tree commit diff
path: root/qemu_taint/README.md
diff options
context:
space:
mode:
authorroot <root@localhost.localdomain>2020-08-14 14:35:05 +0200
committerroot <root@localhost.localdomain>2020-08-14 14:35:05 +0200
commitaf14acf2c148b1aef10414d1dd6c929c49abc11e (patch)
tree107df994e2f3c9870e2dc48222313a3fa4316c35 /qemu_taint/README.md
parenta7537b5511ad767d2240cf2dc6d3e261daa676f9 (diff)
downloadafl++-af14acf2c148b1aef10414d1dd6c929c49abc11e.tar.gz
Revert "Merge branch 'debug' into dev"
This reverts commit a7537b5511ad767d2240cf2dc6d3e261daa676f9, reversing
changes made to 15e799f7ae666418e75c6a79db833c5316b21f97.
Diffstat (limited to 'qemu_taint/README.md')
-rw-r--r--qemu_taint/README.md42
1 files changed, 0 insertions, 42 deletions
diff --git a/qemu_taint/README.md b/qemu_taint/README.md
deleted file mode 100644
index 6a7d19af..00000000
--- a/qemu_taint/README.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# qemu_taint
-
-First level taint implementation with qemu for linux user mode
-
-**THIS IS NOT WORKING YET** **WIP**
-
-## What is this for
-
-On new queue entries (newly discovered paths into the target) this tainter
-is run with the new input and the data gathered which bytes in the input
-file are actually touched.
-
-Only touched bytes are then fuzzed by afl-fuzz
-
-## How to build
-
-./build_qemu_taint.sh
-
-## How to use
-
-Add the -A flag to afl-fuzz
-
-## Caveats
-
-For some targets this is amazing and improves fuzzing a lot, but if a target
-copies all input bytes first (e.g. for creating a crc checksum or just to
-safely work with the data), then this is not helping at all.
-
-## Future
-
-Two fuzz modes for a queue entry which will be switched back and forth:
-
-  1. fuzz all touched bytes
-  2. fuzz only bytes that are newly touched (compared to the one this queue
-     entry is based on)
-
-## TODO
-
-  * Direct trim: trim to highest touched byte, that is all we need to do
-  * add 5-25% dummy bytes to the queue entries? (maybe create a 2nd one?)
-  * Disable trim?
-