1# Tools that help fuzzing with AFL++ 2 3## AFL++ and other development languages 4 5* [afl-rs](https://github.com/rust-fuzz/afl.rs) - AFL++ for RUST 6* [WASM](https://github.com/fgsect/WAFL) - AFL++ for WASM 7 8## Speeding up fuzzing 9 10* [libfiowrapper](https://github.com/marekzmyslowski/libfiowrapper) - if the 11 function you want to fuzz requires loading a file, this allows using the 12 shared memory test case feature :-) - recommended. 13 14## Minimization of test cases 15 16* [afl-pytmin](https://github.com/ilsani/afl-pytmin) - a wrapper for afl-tmin 17 that tries to speed up the process of minimization of a single test case by 18 using many CPU cores. 19* [afl-ddmin-mod](https://github.com/MarkusTeufelberger/afl-ddmin-mod) - a 20 variation of afl-tmin based on the ddmin algorithm. 21* [halfempty](https://github.com/googleprojectzero/halfempty) - is a fast 22 utility for minimizing test cases by Tavis Ormandy based on parallelization. 23 24## Distributed execution 25 26* [disfuzz-afl](https://github.com/MartijnB/disfuzz-afl) - distributed fuzzing 27 for AFL. 28* [AFLDFF](https://github.com/quantumvm/AFLDFF) - AFL distributed fuzzing 29 framework. 30* [afl-launch](https://github.com/bnagy/afl-launch) - a tool for the execution 31 of many AFL instances. 32* [afl-mothership](https://github.com/afl-mothership/afl-mothership) - 33 management and execution of many synchronized AFL fuzzers on AWS cloud. 34* [afl-in-the-cloud](https://github.com/abhisek/afl-in-the-cloud) - another 35 script for running AFL in AWS. 36 37## Deployment, management, monitoring, reporting 38 39* [afl-utils](https://gitlab.com/rc0r/afl-utils) - a set of utilities for 40 automatic processing/analysis of crashes and reducing the number of test 41 cases. 42* [afl-other-arch](https://github.com/shellphish/afl-other-arch) - is a set of 43 patches and scripts for easily adding support for various non-x86 44 architectures for AFL. 45* [afl-trivia](https://github.com/bnagy/afl-trivia) - a few small scripts to 46 simplify the management of AFL. 47* [afl-monitor](https://github.com/reflare/afl-monitor) - a script for 48 monitoring AFL. 49* [afl-manager](https://github.com/zx1340/afl-manager) - a web server on Python 50 for managing multi-afl. 51* [afl-remote](https://github.com/block8437/afl-remote) - a web server for the 52 remote management of AFL instances. 53* [afl-extras](https://github.com/fekir/afl-extras) - shell scripts to 54 parallelize afl-tmin, startup, and data collection. 55 56## Crash processing 57 58* [AFLTriage](https://github.com/quic/AFLTriage) - 59 triage crashing input files using gdb. 60* [afl-crash-analyzer](https://github.com/floyd-fuh/afl-crash-analyzer) - 61 another crash analyzer for AFL. 62* [fuzzer-utils](https://github.com/ThePatrickStar/fuzzer-utils) - a set of 63 scripts for the analysis of results. 64* [atriage](https://github.com/Ayrx/atriage) - a simple triage tool. 65* [afl-kit](https://github.com/kcwu/afl-kit) - afl-cmin on Python. 66* [AFLize](https://github.com/d33tah/aflize) - a tool that automatically 67 generates builds of debian packages suitable for AFL. 68* [afl-fid](https://github.com/FoRTE-Research/afl-fid) - a set of tools for 69 working with input data. 70* [CASR](https://github.com/ispras/casr) - a set of tools for crash triage and 71 analysis. 72