# xex2tractor A tool for extracting and inspecting Xbox 360 XEX2 executable files, written in Rust. ## Usage ```sh xex2tractor ``` ### Example Output ``` === XEX2 Header === Magic: XEX2 (0x58455832) Module Flags: 0x00000001 [TITLE] Header Size: 0x00003000 (12288 bytes) Reserved: 0x00000000 Security Offset: 0x00000090 Header Count: 15 ``` ## 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.