├── .gitattributes ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Hypervisor Manager.csproj ├── Hypervisor Manager.sln ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Utils.cs └── bin ├── Debug ├── Hypervisor │ └── 17559 │ │ ├── Data │ │ ├── HV_DEC.bin │ │ ├── HV_ECC.bin │ │ ├── HV_ENC.bin │ │ └── HV_KEYS.bin │ │ ├── ECC_555.bin │ │ ├── EncryptedCodeChallenge.bin │ │ ├── HV_Base.bin │ │ ├── HV_Cleaned.bin │ │ ├── HV_Dumped.bin │ │ └── HV_SALTS.bin ├── Output │ └── 17559 │ │ ├── 100F0.bin │ │ ├── 100F0Ranges.txt │ │ ├── DecryptedCodeChallenge.bin │ │ ├── DigestData.txt │ │ ├── HV_Base.bin │ │ ├── HV_Cleaned.bin │ │ ├── Hashes.txt │ │ └── Kernel17559.bin └── Update │ ├── krnlupdate.exe │ ├── xboxkrnl.1888.exe │ └── xboxupd.bin └── Release ├── Hypervisor Manager.exe ├── Hypervisor Manager.exe.config ├── Hypervisor Manager.pdb ├── Hypervisor └── 17559 │ ├── Data │ ├── HV_DEC.bin │ ├── HV_ECC.bin │ ├── HV_ENC.bin │ └── HV_KEYS.bin │ ├── ECC_555.bin │ ├── EncryptedCodeChallenge.bin │ ├── HV_Base.bin │ ├── HV_Cleaned.bin │ ├── HV_Dumped.bin │ └── HV_SALTS.bin ├── Output └── 17559 │ ├── 100F0.bin │ ├── DecryptedCodeChallenge.bin │ ├── HV_Base.bin │ ├── HV_Cleaned.bin │ └── Kernel17559.bin └── Update ├── krnlupdate.exe ├── xboxkrnl.1888.exe └── xboxupd.bin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/App.config -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Form1.resx -------------------------------------------------------------------------------- /Hypervisor Manager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Hypervisor Manager.csproj -------------------------------------------------------------------------------- /Hypervisor Manager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Hypervisor Manager.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/README.md -------------------------------------------------------------------------------- /Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/Utils.cs -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/Data/HV_DEC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/Data/HV_DEC.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/Data/HV_ECC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/Data/HV_ECC.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/Data/HV_ENC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/Data/HV_ENC.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/Data/HV_KEYS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/Data/HV_KEYS.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/ECC_555.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/ECC_555.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/EncryptedCodeChallenge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/EncryptedCodeChallenge.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/HV_Base.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/HV_Base.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/HV_Cleaned.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/HV_Cleaned.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/HV_Dumped.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/HV_Dumped.bin -------------------------------------------------------------------------------- /bin/Debug/Hypervisor/17559/HV_SALTS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Hypervisor/17559/HV_SALTS.bin -------------------------------------------------------------------------------- /bin/Debug/Output/17559/100F0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/100F0.bin -------------------------------------------------------------------------------- /bin/Debug/Output/17559/100F0Ranges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/100F0Ranges.txt -------------------------------------------------------------------------------- /bin/Debug/Output/17559/DecryptedCodeChallenge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/DecryptedCodeChallenge.bin -------------------------------------------------------------------------------- /bin/Debug/Output/17559/DigestData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/DigestData.txt -------------------------------------------------------------------------------- /bin/Debug/Output/17559/HV_Base.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/HV_Base.bin -------------------------------------------------------------------------------- /bin/Debug/Output/17559/HV_Cleaned.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/HV_Cleaned.bin -------------------------------------------------------------------------------- /bin/Debug/Output/17559/Hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/Hashes.txt -------------------------------------------------------------------------------- /bin/Debug/Output/17559/Kernel17559.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Output/17559/Kernel17559.bin -------------------------------------------------------------------------------- /bin/Debug/Update/krnlupdate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Update/krnlupdate.exe -------------------------------------------------------------------------------- /bin/Debug/Update/xboxkrnl.1888.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Update/xboxkrnl.1888.exe -------------------------------------------------------------------------------- /bin/Debug/Update/xboxupd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Debug/Update/xboxupd.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor Manager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor Manager.exe -------------------------------------------------------------------------------- /bin/Release/Hypervisor Manager.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor Manager.exe.config -------------------------------------------------------------------------------- /bin/Release/Hypervisor Manager.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor Manager.pdb -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/Data/HV_DEC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/Data/HV_DEC.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/Data/HV_ECC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/Data/HV_ECC.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/Data/HV_ENC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/Data/HV_ENC.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/Data/HV_KEYS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/Data/HV_KEYS.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/ECC_555.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/ECC_555.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/EncryptedCodeChallenge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/EncryptedCodeChallenge.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/HV_Base.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/HV_Base.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/HV_Cleaned.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/HV_Cleaned.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/HV_Dumped.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/HV_Dumped.bin -------------------------------------------------------------------------------- /bin/Release/Hypervisor/17559/HV_SALTS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Hypervisor/17559/HV_SALTS.bin -------------------------------------------------------------------------------- /bin/Release/Output/17559/100F0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Output/17559/100F0.bin -------------------------------------------------------------------------------- /bin/Release/Output/17559/DecryptedCodeChallenge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Output/17559/DecryptedCodeChallenge.bin -------------------------------------------------------------------------------- /bin/Release/Output/17559/HV_Base.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Output/17559/HV_Base.bin -------------------------------------------------------------------------------- /bin/Release/Output/17559/HV_Cleaned.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Output/17559/HV_Cleaned.bin -------------------------------------------------------------------------------- /bin/Release/Output/17559/Kernel17559.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Output/17559/Kernel17559.bin -------------------------------------------------------------------------------- /bin/Release/Update/krnlupdate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Update/krnlupdate.exe -------------------------------------------------------------------------------- /bin/Release/Update/xboxkrnl.1888.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Update/xboxkrnl.1888.exe -------------------------------------------------------------------------------- /bin/Release/Update/xboxupd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWest07/Xbox-360-Hypervisor-Manager/HEAD/bin/Release/Update/xboxupd.bin --------------------------------------------------------------------------------