aboutsummaryrefslogtreecommitdiff
path: root/experimental/README.experiments
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2020-02-03 13:11:10 +0100
committerAndrea Fioraldi <andreafioraldi@gmail.com>2020-02-03 13:11:10 +0100
commit2fe7889912c9bb340f302a037585b7b1836ac94f (patch)
tree5c3e4e5829f45dce46794ebc2681732738d689fe /experimental/README.experiments
parente2eedefc65bec1a04605f117a11ca8bdf9d80323 (diff)
downloadafl++-2fe7889912c9bb340f302a037585b7b1836ac94f.tar.gz
move custom and pythoon mutators examples into examples/
Diffstat (limited to 'experimental/README.experiments')
-rw-r--r--experimental/README.experiments41
1 files changed, 0 insertions, 41 deletions
diff --git a/experimental/README.experiments b/experimental/README.experiments
deleted file mode 100644
index 06f22ee1..00000000
--- a/experimental/README.experiments
+++ /dev/null
@@ -1,41 +0,0 @@
-Here's a quick overview of the stuff you can find in this directory:
-
- - argv_fuzzing - a simple wrapper to allow cmdline to be fuzzed
- (e.g., to test setuid programs).
-
- - asan_cgroups - a contributed script to simplify fuzzing ASAN
- binaries with robust memory limits on Linux.
-
- - bash_shellshock - a simple hack used to find a bunch of
- post-Shellshock bugs in bash.
-
- - canvas_harness - a test harness used to find browser bugs with a
- corpus generated using simple image parsing
- binaries & afl-fuzz.
-
- - clang_asm_normalize - a script that makes it easy to instrument
- hand-written assembly, provided that you have clang.
-
- - crash_triage - a very rudimentary example of how to annotate crashes
- with additional gdb metadata.
-
- - distributed_fuzzing - a sample script for synchronizing fuzzer instances
- across multiple machines (see parallel_fuzzing.md).
-
- - libpng_no_checksum - a sample patch for removing CRC checks in libpng.
-
- - persistent_demo - an example of how to use the LLVM persistent process
- mode to speed up certain fuzzing jobs.
-
- - post_library - an example of how to build postprocessors for AFL.
-
- - socket_fuzzing - a LD_PRELOAD library 'redirects' a socket to stdin
- for fuzzing access with afl++
-
-Note that the minimize_corpus.sh tool has graduated from the experimental/
-directory and is now available as ../afl-cmin. The LLVM mode has likewise
-graduated to ../llvm_mode/*.
-
-Most of the tools in this directory are meant chiefly as examples that need to
-be tweaked for your specific needs. They come with some basic documentation,
-but are not necessarily production-grade.