Implement security info parsing including RSA signature, encrypted AES key, image/region/media flags, load address, SHA-1 digests, and page descriptors with section type classification. Add comprehensive unit and integration tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
84 lines
1.8 KiB
Markdown
84 lines
1.8 KiB
Markdown
# xex2tractor
|
|
|
|
A tool for extracting and inspecting Xbox 360 XEX2 executable files, written in Rust.
|
|
|
|
## Usage
|
|
|
|
```sh
|
|
xex2tractor <file.xex>
|
|
```
|
|
|
|
### Example Output
|
|
|
|
```
|
|
=== XEX2 Header ===
|
|
Magic: XEX2 (0x58455832)
|
|
Module Flags: 0x00000001 [TITLE]
|
|
Header Size: 0x00003000 (12288 bytes)
|
|
Reserved: 0x00000000
|
|
Security Offset: 0x00000090
|
|
Header Count: 15
|
|
|
|
=== Optional Headers (15 entries) ===
|
|
|
|
[ENTRY_POINT] 0x824AB748
|
|
[IMAGE_BASE_ADDRESS] 0x82000000
|
|
[DEFAULT_STACK_SIZE] 0x00080000 (524288 bytes)
|
|
[SYSTEM_FLAGS] 0x00000400 [PAL50_INCOMPATIBLE]
|
|
|
|
[EXECUTION_INFO]
|
|
Media ID: 0x2D2E2EEB
|
|
Title ID: 0x535107D4
|
|
Version: 0.0.0.2
|
|
...
|
|
|
|
[FILE_FORMAT_INFO]
|
|
Encryption: Normal (AES-128-CBC)
|
|
Compression: Normal (LZX)
|
|
|
|
[STATIC_LIBRARIES] (12 libraries)
|
|
XAPILIB 2.0.3215.0 (Unknown(64))
|
|
D3D9 2.0.3215.1 (Unknown(64))
|
|
...
|
|
|
|
[IMPORT_LIBRARIES] (2 libraries)
|
|
xam.xex v2.0.4552.0 (min v2.0.4552.0) - 104 imports
|
|
xboxkrnl.exe v2.0.4552.0 (min v2.0.4552.0) - 294 imports
|
|
|
|
=== Security Info ===
|
|
Header Size: 0x00000F34 (3892 bytes)
|
|
Image Size: 0x00920000 (9568256 bytes)
|
|
RSA Signature: 2C94EBE6...11A6E8AA (256 bytes)
|
|
Image Flags: 0x00000008 [XGD2_MEDIA_ONLY]
|
|
Load Address: 0x82000000
|
|
Region: 0xFFFFFFFF [ALL REGIONS]
|
|
Allowed Media Types: 0x00000004 [DVD_CD]
|
|
...
|
|
|
|
Page Descriptors (146 entries, 64KB pages):
|
|
#0 Unknown(0) 19 pages ( 1245184 bytes) offset +0x00000000 SHA1: B136058FBBAD...
|
|
...
|
|
```
|
|
|
|
## Building
|
|
|
|
```sh
|
|
cargo build --release
|
|
```
|
|
|
|
## Testing
|
|
|
|
Place a sample XEX2 file at `tests/data/default.xex`, then run:
|
|
|
|
```sh
|
|
cargo test
|
|
```
|
|
|
|
## Documentation
|
|
|
|
See [doc/xex2_format.md](doc/xex2_format.md) for the XEX2 file format specification.
|
|
|
|
## License
|
|
|
|
This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.
|