├── .vscode └── settings.json ├── Makefile ├── README.md ├── gen └── out.proto └── src ├── dumper.cc ├── mutator.cc └── mutator.h /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/README.md -------------------------------------------------------------------------------- /gen/out.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/gen/out.proto -------------------------------------------------------------------------------- /src/dumper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/src/dumper.cc -------------------------------------------------------------------------------- /src/mutator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/src/mutator.cc -------------------------------------------------------------------------------- /src/mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/afl-libprotobuf-mutator/HEAD/src/mutator.h --------------------------------------------------------------------------------