├── .gitignore ├── README.md ├── afl_mutation_graph.py ├── img └── mutate_graph_example.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianherrera/afl-mutation-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianherrera/afl-mutation-graph/HEAD/README.md -------------------------------------------------------------------------------- /afl_mutation_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianherrera/afl-mutation-graph/HEAD/afl_mutation_graph.py -------------------------------------------------------------------------------- /img/mutate_graph_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianherrera/afl-mutation-graph/HEAD/img/mutate_graph_example.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | networkx 2 | pydot 3 | --------------------------------------------------------------------------------