├── .gitignore ├── Base.ttf ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── decrypt_shellcode ├── .cargo │ └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── shellcode.ld └── src │ └── main.rs ├── helpers ├── cff_to_otf.py ├── fat_patch.py └── viafont │ ├── original │ ├── Readme.txt │ ├── Viafont.otf │ └── Viafont.ttf │ └── viafont_converted.otf ├── parse ├── Cargo.toml └── src │ ├── lib.rs │ └── parse.rs ├── rust-toolchain.toml ├── scsi_shellcode ├── .cargo │ └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── shellcode.ld └── src │ └── main.rs ├── src ├── cff.rs ├── exploit.rs ├── img1.rs ├── main.rs ├── mse.rs └── payload │ ├── binary_search.rs │ ├── binary_search_n7g.rs │ ├── binary_search_n7g_2015.rs │ ├── code_exec.rs │ ├── exploit_config.rs │ ├── mod.rs │ ├── payload_builder.rs │ └── string_leak.rs └── tools ├── display_leaker ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── research ├── README.md ├── cert_moduluses ├── diff_tool │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── gib_cert │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── m4a_patcher │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── src │ │ └── main.rs │ └── vendor │ │ ├── lazy_static │ │ ├── .cargo-checksum.json │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── src │ │ │ ├── core_lazy.rs │ │ │ ├── inline_lazy.rs │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── no_std.rs │ │ │ └── test.rs │ │ └── mp4ameta_proc │ │ ├── .cargo-checksum.json │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── m4a_payload │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── mp4_fuzzer │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── out │ │ ├── IMG_0437.DAT │ │ └── IMG_0437.mp4 │ └── src │ │ └── main.rs ├── n6g_dumper │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── osos_patcher │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── cfw.sh │ └── src │ │ └── main.rs ├── patch_payload │ ├── .cargo │ │ └── config.toml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── shellcode.ld │ └── src │ │ └── main.rs ├── test_payload_in_osos │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── log.txt │ └── src │ │ └── main.rs └── wtf_efi_fuzzer │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs ├── scsi_decrypter ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs └── scsi_dumper ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/.gitignore -------------------------------------------------------------------------------- /Base.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/Base.ttf -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/README.md -------------------------------------------------------------------------------- /decrypt_shellcode/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/decrypt_shellcode/.cargo/config.toml -------------------------------------------------------------------------------- /decrypt_shellcode/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | *.bin -------------------------------------------------------------------------------- /decrypt_shellcode/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/decrypt_shellcode/Cargo.lock -------------------------------------------------------------------------------- /decrypt_shellcode/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/decrypt_shellcode/Cargo.toml -------------------------------------------------------------------------------- /decrypt_shellcode/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/decrypt_shellcode/build.rs -------------------------------------------------------------------------------- /decrypt_shellcode/shellcode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/decrypt_shellcode/shellcode.ld -------------------------------------------------------------------------------- /decrypt_shellcode/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/decrypt_shellcode/src/main.rs -------------------------------------------------------------------------------- /helpers/cff_to_otf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/helpers/cff_to_otf.py -------------------------------------------------------------------------------- /helpers/fat_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/helpers/fat_patch.py -------------------------------------------------------------------------------- /helpers/viafont/original/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/helpers/viafont/original/Readme.txt -------------------------------------------------------------------------------- /helpers/viafont/original/Viafont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/helpers/viafont/original/Viafont.otf -------------------------------------------------------------------------------- /helpers/viafont/original/Viafont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/helpers/viafont/original/Viafont.ttf -------------------------------------------------------------------------------- /helpers/viafont/viafont_converted.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/helpers/viafont/viafont_converted.otf -------------------------------------------------------------------------------- /parse/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/parse/Cargo.toml -------------------------------------------------------------------------------- /parse/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/parse/src/lib.rs -------------------------------------------------------------------------------- /parse/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/parse/src/parse.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /scsi_shellcode/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/scsi_shellcode/.cargo/config.toml -------------------------------------------------------------------------------- /scsi_shellcode/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | *.bin -------------------------------------------------------------------------------- /scsi_shellcode/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/scsi_shellcode/Cargo.lock -------------------------------------------------------------------------------- /scsi_shellcode/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/scsi_shellcode/Cargo.toml -------------------------------------------------------------------------------- /scsi_shellcode/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/scsi_shellcode/build.rs -------------------------------------------------------------------------------- /scsi_shellcode/shellcode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/scsi_shellcode/shellcode.ld -------------------------------------------------------------------------------- /scsi_shellcode/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/scsi_shellcode/src/main.rs -------------------------------------------------------------------------------- /src/cff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/cff.rs -------------------------------------------------------------------------------- /src/exploit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/exploit.rs -------------------------------------------------------------------------------- /src/img1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/img1.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/mse.rs -------------------------------------------------------------------------------- /src/payload/binary_search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/binary_search.rs -------------------------------------------------------------------------------- /src/payload/binary_search_n7g.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/binary_search_n7g.rs -------------------------------------------------------------------------------- /src/payload/binary_search_n7g_2015.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/binary_search_n7g_2015.rs -------------------------------------------------------------------------------- /src/payload/code_exec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/code_exec.rs -------------------------------------------------------------------------------- /src/payload/exploit_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/exploit_config.rs -------------------------------------------------------------------------------- /src/payload/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/mod.rs -------------------------------------------------------------------------------- /src/payload/payload_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/payload_builder.rs -------------------------------------------------------------------------------- /src/payload/string_leak.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/src/payload/string_leak.rs -------------------------------------------------------------------------------- /tools/display_leaker/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /tools/display_leaker/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/display_leaker/Cargo.lock -------------------------------------------------------------------------------- /tools/display_leaker/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/display_leaker/Cargo.toml -------------------------------------------------------------------------------- /tools/display_leaker/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/display_leaker/src/main.rs -------------------------------------------------------------------------------- /tools/research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/README.md -------------------------------------------------------------------------------- /tools/research/cert_moduluses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/cert_moduluses -------------------------------------------------------------------------------- /tools/research/diff_tool/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/diff_tool/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/diff_tool/Cargo.lock -------------------------------------------------------------------------------- /tools/research/diff_tool/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/diff_tool/Cargo.toml -------------------------------------------------------------------------------- /tools/research/diff_tool/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/diff_tool/src/main.rs -------------------------------------------------------------------------------- /tools/research/gib_cert/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/gib_cert/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/gib_cert/Cargo.lock -------------------------------------------------------------------------------- /tools/research/gib_cert/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/gib_cert/Cargo.toml -------------------------------------------------------------------------------- /tools/research/gib_cert/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/gib_cert/src/main.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/m4a_patcher/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/Cargo.lock -------------------------------------------------------------------------------- /tools/research/m4a_patcher/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/Cargo.toml -------------------------------------------------------------------------------- /tools/research/m4a_patcher/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/src/main.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/.cargo-checksum.json -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/Cargo.toml -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/LICENSE-APACHE -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/LICENSE-MIT -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/README.md -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/src/core_lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/src/core_lazy.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/src/inline_lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/src/inline_lazy.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/src/lib.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/tests/no_std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/tests/no_std.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/lazy_static/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/lazy_static/tests/test.rs -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/mp4ameta_proc/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/mp4ameta_proc/.cargo-checksum.json -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/mp4ameta_proc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/mp4ameta_proc/Cargo.toml -------------------------------------------------------------------------------- /tools/research/m4a_patcher/vendor/mp4ameta_proc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_patcher/vendor/mp4ameta_proc/src/lib.rs -------------------------------------------------------------------------------- /tools/research/m4a_payload/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/m4a_payload/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_payload/Cargo.lock -------------------------------------------------------------------------------- /tools/research/m4a_payload/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_payload/Cargo.toml -------------------------------------------------------------------------------- /tools/research/m4a_payload/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/m4a_payload/src/main.rs -------------------------------------------------------------------------------- /tools/research/mp4_fuzzer/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/mp4_fuzzer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/mp4_fuzzer/Cargo.lock -------------------------------------------------------------------------------- /tools/research/mp4_fuzzer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/mp4_fuzzer/Cargo.toml -------------------------------------------------------------------------------- /tools/research/mp4_fuzzer/out/IMG_0437.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/mp4_fuzzer/out/IMG_0437.DAT -------------------------------------------------------------------------------- /tools/research/mp4_fuzzer/out/IMG_0437.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/mp4_fuzzer/out/IMG_0437.mp4 -------------------------------------------------------------------------------- /tools/research/mp4_fuzzer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/mp4_fuzzer/src/main.rs -------------------------------------------------------------------------------- /tools/research/n6g_dumper/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/n6g_dumper/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/n6g_dumper/Cargo.lock -------------------------------------------------------------------------------- /tools/research/n6g_dumper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/n6g_dumper/Cargo.toml -------------------------------------------------------------------------------- /tools/research/n6g_dumper/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/n6g_dumper/src/main.rs -------------------------------------------------------------------------------- /tools/research/osos_patcher/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/osos_patcher/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/osos_patcher/Cargo.lock -------------------------------------------------------------------------------- /tools/research/osos_patcher/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/osos_patcher/Cargo.toml -------------------------------------------------------------------------------- /tools/research/osos_patcher/cfw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/osos_patcher/cfw.sh -------------------------------------------------------------------------------- /tools/research/osos_patcher/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/osos_patcher/src/main.rs -------------------------------------------------------------------------------- /tools/research/patch_payload/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/patch_payload/.cargo/config.toml -------------------------------------------------------------------------------- /tools/research/patch_payload/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/patch_payload/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/patch_payload/Cargo.lock -------------------------------------------------------------------------------- /tools/research/patch_payload/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/patch_payload/Cargo.toml -------------------------------------------------------------------------------- /tools/research/patch_payload/shellcode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/patch_payload/shellcode.ld -------------------------------------------------------------------------------- /tools/research/patch_payload/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/patch_payload/src/main.rs -------------------------------------------------------------------------------- /tools/research/test_payload_in_osos/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/test_payload_in_osos/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/test_payload_in_osos/Cargo.lock -------------------------------------------------------------------------------- /tools/research/test_payload_in_osos/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/test_payload_in_osos/Cargo.toml -------------------------------------------------------------------------------- /tools/research/test_payload_in_osos/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/test_payload_in_osos/log.txt -------------------------------------------------------------------------------- /tools/research/test_payload_in_osos/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/test_payload_in_osos/src/main.rs -------------------------------------------------------------------------------- /tools/research/wtf_efi_fuzzer/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/research/wtf_efi_fuzzer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/wtf_efi_fuzzer/Cargo.lock -------------------------------------------------------------------------------- /tools/research/wtf_efi_fuzzer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/wtf_efi_fuzzer/Cargo.toml -------------------------------------------------------------------------------- /tools/research/wtf_efi_fuzzer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/research/wtf_efi_fuzzer/src/main.rs -------------------------------------------------------------------------------- /tools/scsi_decrypter/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/scsi_decrypter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/scsi_decrypter/Cargo.lock -------------------------------------------------------------------------------- /tools/scsi_decrypter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/scsi_decrypter/Cargo.toml -------------------------------------------------------------------------------- /tools/scsi_decrypter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/scsi_decrypter/src/main.rs -------------------------------------------------------------------------------- /tools/scsi_dumper/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tools/scsi_dumper/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/scsi_dumper/Cargo.lock -------------------------------------------------------------------------------- /tools/scsi_dumper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/scsi_dumper/Cargo.toml -------------------------------------------------------------------------------- /tools/scsi_dumper/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CUB3D/ipod_sun/HEAD/tools/scsi_dumper/src/main.rs --------------------------------------------------------------------------------