├── .gitattributes ├── PS5_Server ├── PS5_Server.ino ├── data │ ├── byepervisor.elf.gz │ ├── etaHEN.bin.gz │ ├── kstuff-toggle.elf.gz │ ├── libhijacker-v1.160.elf.gz │ └── versions.elf ├── elfldr.h ├── etahen.h ├── exploit.h ├── module.h ├── offsets.h └── psfree.h ├── README.md ├── bin2h ├── bin2h.py └── bin2h_python.bat └── images └── board-info.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/.gitattributes -------------------------------------------------------------------------------- /PS5_Server/PS5_Server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/PS5_Server.ino -------------------------------------------------------------------------------- /PS5_Server/data/byepervisor.elf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/data/byepervisor.elf.gz -------------------------------------------------------------------------------- /PS5_Server/data/etaHEN.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/data/etaHEN.bin.gz -------------------------------------------------------------------------------- /PS5_Server/data/kstuff-toggle.elf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/data/kstuff-toggle.elf.gz -------------------------------------------------------------------------------- /PS5_Server/data/libhijacker-v1.160.elf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/data/libhijacker-v1.160.elf.gz -------------------------------------------------------------------------------- /PS5_Server/data/versions.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/data/versions.elf -------------------------------------------------------------------------------- /PS5_Server/elfldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/elfldr.h -------------------------------------------------------------------------------- /PS5_Server/etahen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/etahen.h -------------------------------------------------------------------------------- /PS5_Server/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/exploit.h -------------------------------------------------------------------------------- /PS5_Server/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/module.h -------------------------------------------------------------------------------- /PS5_Server/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/offsets.h -------------------------------------------------------------------------------- /PS5_Server/psfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/PS5_Server/psfree.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/README.md -------------------------------------------------------------------------------- /bin2h/bin2h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/bin2h/bin2h.py -------------------------------------------------------------------------------- /bin2h/bin2h_python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/bin2h/bin2h_python.bat -------------------------------------------------------------------------------- /images/board-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x1iii1ii/PS5-Server/HEAD/images/board-info.jpg --------------------------------------------------------------------------------