├── .gitignore ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── android_fuzzer ├── Cargo.toml ├── README.md ├── dng_seeds │ ├── not_kitty.dng │ └── not_kitty.jpg ├── harness.c └── src │ └── main.rs └── windows_fuzzer ├── README.md ├── fuzzers ├── kafl │ └── README.md └── libafl │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── fuzzer.rs │ └── main.rs └── target_harness ├── .gitattributes ├── .gitignore ├── README.md ├── runsdvui.cmd ├── scripts ├── fuzz_debug.cmd ├── fuzz_libafl.cmd └── fuzz_nyx.cmd └── vs_project ├── LibaflNtfsFuzz.cpp ├── LibaflNtfsFuzz.sln ├── LibaflNtfsFuzz.vcxproj ├── LibaflNtfsFuzz.vcxproj.filters ├── libafl_exit.asm ├── libafl_exit.h ├── nyx_api.asm └── nyx_api.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/README.md -------------------------------------------------------------------------------- /android_fuzzer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/android_fuzzer/Cargo.toml -------------------------------------------------------------------------------- /android_fuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/android_fuzzer/README.md -------------------------------------------------------------------------------- /android_fuzzer/dng_seeds/not_kitty.dng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/android_fuzzer/dng_seeds/not_kitty.dng -------------------------------------------------------------------------------- /android_fuzzer/dng_seeds/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/android_fuzzer/dng_seeds/not_kitty.jpg -------------------------------------------------------------------------------- /android_fuzzer/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/android_fuzzer/harness.c -------------------------------------------------------------------------------- /android_fuzzer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/android_fuzzer/src/main.rs -------------------------------------------------------------------------------- /windows_fuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/README.md -------------------------------------------------------------------------------- /windows_fuzzer/fuzzers/kafl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/fuzzers/kafl/README.md -------------------------------------------------------------------------------- /windows_fuzzer/fuzzers/libafl/.gitignore: -------------------------------------------------------------------------------- 1 | *.qcow2 2 | *.vhd 3 | *.json 4 | target*/ 5 | 6 | 7 | -------------------------------------------------------------------------------- /windows_fuzzer/fuzzers/libafl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/fuzzers/libafl/Cargo.toml -------------------------------------------------------------------------------- /windows_fuzzer/fuzzers/libafl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/fuzzers/libafl/README.md -------------------------------------------------------------------------------- /windows_fuzzer/fuzzers/libafl/src/fuzzer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/fuzzers/libafl/src/fuzzer.rs -------------------------------------------------------------------------------- /windows_fuzzer/fuzzers/libafl/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/fuzzers/libafl/src/main.rs -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/.gitattributes -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/.gitignore -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/README.md -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/runsdvui.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/runsdvui.cmd -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/scripts/fuzz_debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/scripts/fuzz_debug.cmd -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/scripts/fuzz_libafl.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/scripts/fuzz_libafl.cmd -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/scripts/fuzz_nyx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/scripts/fuzz_nyx.cmd -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.cpp -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.sln -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.vcxproj -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/LibaflNtfsFuzz.vcxproj.filters -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/libafl_exit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/libafl_exit.asm -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/libafl_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/libafl_exit.h -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/nyx_api.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/nyx_api.asm -------------------------------------------------------------------------------- /windows_fuzzer/target_harness/vs_project/nyx_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFLplusplus/libafl_qemu_artifacts/HEAD/windows_fuzzer/target_harness/vs_project/nyx_api.h --------------------------------------------------------------------------------