This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
PS4 SysCon Patch Decryptor by SocraticBliss (R) | |
Thanks to zecoxao <3 | |
1) Replace AES CBC Key on line 50 with the actual key | |
2) Replace AES CMAC Key on line 50 with the actual key | |
3) Place in your PS4UPDATE1/dev directory | |
4) python ps4_syscon_patch_decryptor.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
Crash Dump Decryptor by SocraticBliss (R) | |
Thanks to... | |
# Team FailOverflow | |
# CelesteBlue | |
# zecoxao |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
SocraticBliss (R) | |
PS4 Kernel Defines Maker - Creates a non-rebased kernel offsets header file | |
Inspired by CelesteBlue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------ | |
//--- 010 Editor v9.0 Binary Template | |
// | |
// File: PS4_PKG.bt | |
// Authors: SocraticBliss | |
// Version: 1.0.0 | |
// Purpose: 1) Decode the PKG format for the PS4 (64 bit) | |
// | |
// Category: Game | |
// File Mask: * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------ | |
//--- 010 Editor v9.0 Binary Template | |
// | |
// File: PS4_SELF.bt | |
// Authors: SocraticBliss | |
// Version: 1.0.0 | |
// Purpose: 1) Decode the Signed ELF format for the PS4 (64 bit) | |
// 2) Decode the ELF program and section headers | |
// | |
// Category: Game |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: SocraticBliss (R) | |
@ECHO OFF | |
TITLE Remote PS4 Package Installer | |
:: 0) Edit these | |
SET PS4=13.37.13.136:12800 | |
SET SERVER=13.37.13.137:8008 | |
:: 1) Check if the CUSA is already installed or not | |
SET CUSA=%~nx1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
PS4 MONO binaries to IL MONO binaries by SocraticBliss (R) | |
The script recursively searches the directories for PS4 MONO DLL and EXE files, | |
finds the scekrit magic for them and then spits them out in the same directory... | |
1) Place this script in the top-most directory | |
2) python ps4_mono_to_il.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PS4 Signed ELF Parser | |
# SocraticBliss (R) | |
# Thanks to Znullptr and flatz <3 | |
from binascii import hexlify as hx | |
import struct | |
import sys | |
def self_header(file): | |
# MAGIC = 4F 15 3D 1D |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cnmt de-struct-or | |
# SocraticBliss (R) | |
from struct import unpack as up | |
from binascii import hexlify as hx | |
''' | |
CNMT HEADER | |
title_id = up('<Q', cnmt[:0x8]) | |
title_version = up('<I', cnmt[0x8:0xC]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A script for updating your ps4libdoc json files with additional names... | |
# SocraticBliss (R) | |
import json | |
import os | |
import re | |
import subprocess | |
import sys | |
def get_null_NIDs(): |
NewerOlder