Skip to content
Please note that GitHub no longer supports Internet Explorer.

We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.

Learn more
Recover mutation graph from an AFL seed
Python
Branch: master
Clone or download
Cannot retrieve the latest commit at this time.
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
img
.gitignore
README.md
afl_mutation_graph.py
requirements.txt

README.md

AFL Mutation Graph

Recovers an approximation of the mutation graph (specifically, a DAG) that led to a particular seed (or set of seeds) in an AFL queue. The graph can be saved in Graphviz DOT format.

To graph the relationships between all queue inputs:

python afl_mutation_graph.py $(find queue/ -wholename 'queue/id:*') -o queue.dot
dot -Tpdf -O queue.dot

Example mutation graph, starting from a corpus of seeds (in rectangles). Hexagon nodes are crashing seeds:

mutation graph example

You can’t perform that action at this time.