1. Internal Hex Standard Platform Implants
2. Narrow 2.0 Hex Platform Implants
3. Conical Connection (RP/NP) Implants
4. Premium M1.4 MUA Platform
5. Premium M1.6 MUA Platform
6. Next-Gen M1.7 MUA Platform
8. Direct Connection Internal Hex
9. Digital Analogs
also compatible with ZirkonZahn and Amann Girrbach
You also have the ability to customize the checks and hashes by editing the checklist.xml and hashlist.xml files included with the tool. This allows advanced users to tailor the verification process to their specific needs.
: Execute the script by pointing it to your PS3 dump file (e.g., python3 checker.py dump.hex Use code with caution. Copied to clipboard Review the Output
#!/bin/bash for pkg in "$1"/*.pkg; do echo "Checking: $pkg" python /path/to/pyps3checker.py "$pkg" echo "-----" done pyps3checker mac
Open your "Terminal" application.
It recursively checks all .self , .sprx , and .edat files. You also have the ability to customize the
This loops through every .iso file and subfolder, generating a summary report at the end.
You can create a drag-and-drop app to check files without opening Terminal. Copied to clipboard Review the Output #
While many homebrew tools are designed for Windows, modern Mac users—including those on Apple Silicon (M1/M2/M3) or Intel processors—can easily utilize PyPS3Checker. Because it is written in Python, it is cross-platform compatible.
Launch the Terminal app on your Mac (Found in Applications > Utilities). Navigate to the Folder: command to enter the directory.
pyPS3Checker is an open-source command-line utility written in Python. It scans your PS3 game backups and compares them against a local or online database of verified checksums (CRC32, MD5, or SHA-1). The tool can identify:
| Error Message | Likely Cause | Solution | |---------------|--------------|----------| | python3: command not found | Python 3 not installed | Install via Homebrew or python.org | | ImportError: No module named requests | Missing dependency | Run pip3 install requests | | Permission denied | File permissions issue | Use chmod +x ps3checker.py or sudo (not recommended) | | Database not found | No internet connection | Connect online or manually download ps3hashes.db | | ISO too large for 32-bit Python | Using older Python build | Reinstall Python 3 (64-bit) |