├── .gitignore ├── .gitmodules ├── Build └── manifest_template.json ├── LICENSE ├── MemCrypto.py ├── Patches ├── HVPP.S ├── Loader │ └── shadoweng.S ├── RGH3 │ └── rgh3_bl.S ├── RGL │ └── 17559-dev │ │ ├── RGLoader-HvxPeekPoke.S │ │ ├── RGLoader-dev.S │ │ ├── RGLoader-ignoreHeapErr.S │ │ ├── RGLoader-kd_1retry.S │ │ ├── RGLoader-memprot.S │ │ ├── RGLoader-nofcrt.S │ │ ├── RGLoader-spoof.S │ │ ├── RGLoader-sysroot.S │ │ └── RGLoader-vfuses.S ├── SC0.S ├── Spoofy.S ├── SpoofyOriginal.S ├── Test Kit │ └── patches.S ├── XAM │ └── 17559-dev │ │ └── rglXam.S ├── include │ ├── macros.S │ └── settings.S └── remap_bootanim_17559.S ├── README.md ├── XeCrypt.py ├── assembler.py ├── bin ├── KV │ ├── TGSREQ.bin │ ├── XMACSREQ.bin │ ├── apReq1.bin │ ├── apReq2.bin │ ├── authenticator.bin │ └── servicereq.bin ├── LZX │ ├── Linux │ │ ├── liblzxc.so │ │ └── liblzxd.so │ └── Windows │ │ ├── LZXCompression.dll │ │ └── LZXDecompression.dll ├── xenon-as.exe └── xenon-objcopy.exe ├── bin2lang.py ├── cpu_key.py ├── create_key.py ├── exp_build_task.py ├── exp_signer.py ├── export_keys.py ├── format_key.py ├── harness.py ├── kdnet.py ├── keystore.py ├── kv_checker.py ├── kv_tool.py ├── lzx.py ├── nand_tool.py ├── patch_build_task.py ├── patch_checker.py ├── patch_compile.py ├── patch_dumper.py ├── requirements.txt ├── sd_signer.py ├── se_patcher.py ├── shadowboot.py ├── xcp_dumper.py ├── xdk_extract.py ├── xebuild_config.py ├── xekeys_signer.py ├── xell_unpack.py ├── xkelib_exports.py ├── xsm3.py └── xval.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/.gitmodules -------------------------------------------------------------------------------- /Build/manifest_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Build/manifest_template.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/LICENSE -------------------------------------------------------------------------------- /MemCrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/MemCrypto.py -------------------------------------------------------------------------------- /Patches/HVPP.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/HVPP.S -------------------------------------------------------------------------------- /Patches/Loader/shadoweng.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/Loader/shadoweng.S -------------------------------------------------------------------------------- /Patches/RGH3/rgh3_bl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGH3/rgh3_bl.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-HvxPeekPoke.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-HvxPeekPoke.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-dev.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-dev.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-ignoreHeapErr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-ignoreHeapErr.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-kd_1retry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-kd_1retry.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-memprot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-memprot.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-nofcrt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-nofcrt.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-spoof.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-spoof.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-sysroot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-sysroot.S -------------------------------------------------------------------------------- /Patches/RGL/17559-dev/RGLoader-vfuses.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/RGL/17559-dev/RGLoader-vfuses.S -------------------------------------------------------------------------------- /Patches/SC0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/SC0.S -------------------------------------------------------------------------------- /Patches/Spoofy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/Spoofy.S -------------------------------------------------------------------------------- /Patches/SpoofyOriginal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/SpoofyOriginal.S -------------------------------------------------------------------------------- /Patches/Test Kit/patches.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/Test Kit/patches.S -------------------------------------------------------------------------------- /Patches/XAM/17559-dev/rglXam.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/XAM/17559-dev/rglXam.S -------------------------------------------------------------------------------- /Patches/include/macros.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/include/macros.S -------------------------------------------------------------------------------- /Patches/include/settings.S: -------------------------------------------------------------------------------- 1 | .set KRNL_VER, 17559 2 | -------------------------------------------------------------------------------- /Patches/remap_bootanim_17559.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/Patches/remap_bootanim_17559.S -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/README.md -------------------------------------------------------------------------------- /XeCrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/XeCrypt.py -------------------------------------------------------------------------------- /assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/assembler.py -------------------------------------------------------------------------------- /bin/KV/TGSREQ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/KV/TGSREQ.bin -------------------------------------------------------------------------------- /bin/KV/XMACSREQ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/KV/XMACSREQ.bin -------------------------------------------------------------------------------- /bin/KV/apReq1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/KV/apReq1.bin -------------------------------------------------------------------------------- /bin/KV/apReq2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/KV/apReq2.bin -------------------------------------------------------------------------------- /bin/KV/authenticator.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/KV/authenticator.bin -------------------------------------------------------------------------------- /bin/KV/servicereq.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/KV/servicereq.bin -------------------------------------------------------------------------------- /bin/LZX/Linux/liblzxc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/LZX/Linux/liblzxc.so -------------------------------------------------------------------------------- /bin/LZX/Linux/liblzxd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/LZX/Linux/liblzxd.so -------------------------------------------------------------------------------- /bin/LZX/Windows/LZXCompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/LZX/Windows/LZXCompression.dll -------------------------------------------------------------------------------- /bin/LZX/Windows/LZXDecompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/LZX/Windows/LZXDecompression.dll -------------------------------------------------------------------------------- /bin/xenon-as.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/xenon-as.exe -------------------------------------------------------------------------------- /bin/xenon-objcopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin/xenon-objcopy.exe -------------------------------------------------------------------------------- /bin2lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/bin2lang.py -------------------------------------------------------------------------------- /cpu_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/cpu_key.py -------------------------------------------------------------------------------- /create_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/create_key.py -------------------------------------------------------------------------------- /exp_build_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/exp_build_task.py -------------------------------------------------------------------------------- /exp_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/exp_signer.py -------------------------------------------------------------------------------- /export_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/export_keys.py -------------------------------------------------------------------------------- /format_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/format_key.py -------------------------------------------------------------------------------- /harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/harness.py -------------------------------------------------------------------------------- /kdnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/kdnet.py -------------------------------------------------------------------------------- /keystore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/keystore.py -------------------------------------------------------------------------------- /kv_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/kv_checker.py -------------------------------------------------------------------------------- /kv_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/kv_tool.py -------------------------------------------------------------------------------- /lzx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/lzx.py -------------------------------------------------------------------------------- /nand_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/nand_tool.py -------------------------------------------------------------------------------- /patch_build_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/patch_build_task.py -------------------------------------------------------------------------------- /patch_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/patch_checker.py -------------------------------------------------------------------------------- /patch_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/patch_compile.py -------------------------------------------------------------------------------- /patch_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/patch_dumper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography >= 38.0.4 -------------------------------------------------------------------------------- /sd_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/sd_signer.py -------------------------------------------------------------------------------- /se_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/se_patcher.py -------------------------------------------------------------------------------- /shadowboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/shadowboot.py -------------------------------------------------------------------------------- /xcp_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xcp_dumper.py -------------------------------------------------------------------------------- /xdk_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xdk_extract.py -------------------------------------------------------------------------------- /xebuild_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xebuild_config.py -------------------------------------------------------------------------------- /xekeys_signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xekeys_signer.py -------------------------------------------------------------------------------- /xell_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xell_unpack.py -------------------------------------------------------------------------------- /xkelib_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xkelib_exports.py -------------------------------------------------------------------------------- /xsm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xsm3.py -------------------------------------------------------------------------------- /xval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoobyCorp/Xbox-360-Crypto/HEAD/xval.py --------------------------------------------------------------------------------