├── LICENSE ├── Makefile ├── README.md ├── env-fuzz.cpp ├── env-fuzz.gdb ├── fcntl.tab ├── fuzz_feedback.cpp ├── fuzz_main.cpp ├── fuzz_mutate.cpp ├── fuzz_patch.cpp ├── ignore.tab ├── img ├── calc-full.png └── demo.gif ├── ioctl.tab ├── prctl.tab ├── rezzan.c ├── rrCovPlugin.cpp ├── rr_emulate.cpp ├── rr_fd.cpp ├── rr_fiber.cpp ├── rr_info.cpp ├── rr_iov.cpp ├── rr_main.cpp ├── rr_misc.cpp ├── rr_msg.cpp ├── rr_pcap.cpp ├── rr_print.cpp ├── rr_record.cpp ├── rr_replay.cpp ├── rr_signal.cpp ├── rr_thread.cpp └── rrfuzz.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/README.md -------------------------------------------------------------------------------- /env-fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/env-fuzz.cpp -------------------------------------------------------------------------------- /env-fuzz.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/env-fuzz.gdb -------------------------------------------------------------------------------- /fcntl.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/fcntl.tab -------------------------------------------------------------------------------- /fuzz_feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/fuzz_feedback.cpp -------------------------------------------------------------------------------- /fuzz_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/fuzz_main.cpp -------------------------------------------------------------------------------- /fuzz_mutate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/fuzz_mutate.cpp -------------------------------------------------------------------------------- /fuzz_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/fuzz_patch.cpp -------------------------------------------------------------------------------- /ignore.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/ignore.tab -------------------------------------------------------------------------------- /img/calc-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/img/calc-full.png -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/img/demo.gif -------------------------------------------------------------------------------- /ioctl.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/ioctl.tab -------------------------------------------------------------------------------- /prctl.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/prctl.tab -------------------------------------------------------------------------------- /rezzan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rezzan.c -------------------------------------------------------------------------------- /rrCovPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rrCovPlugin.cpp -------------------------------------------------------------------------------- /rr_emulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_emulate.cpp -------------------------------------------------------------------------------- /rr_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_fd.cpp -------------------------------------------------------------------------------- /rr_fiber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_fiber.cpp -------------------------------------------------------------------------------- /rr_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_info.cpp -------------------------------------------------------------------------------- /rr_iov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_iov.cpp -------------------------------------------------------------------------------- /rr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_main.cpp -------------------------------------------------------------------------------- /rr_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_misc.cpp -------------------------------------------------------------------------------- /rr_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_msg.cpp -------------------------------------------------------------------------------- /rr_pcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_pcap.cpp -------------------------------------------------------------------------------- /rr_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_print.cpp -------------------------------------------------------------------------------- /rr_record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_record.cpp -------------------------------------------------------------------------------- /rr_replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_replay.cpp -------------------------------------------------------------------------------- /rr_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_signal.cpp -------------------------------------------------------------------------------- /rr_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rr_thread.cpp -------------------------------------------------------------------------------- /rrfuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/EnvFuzz/HEAD/rrfuzz.h --------------------------------------------------------------------------------