├── .gitignore ├── README.md ├── clean.sh ├── exploit.template ├── exploit └── index.html ├── installer ├── Makefile ├── include │ ├── debug.h │ ├── defines.h │ └── offsets.h └── source │ ├── debug.c │ ├── embed.s │ ├── main.c │ └── ps4.c ├── kpayload ├── Makefile ├── include │ ├── amd_helper.h │ ├── ccp_helper.h │ ├── elf_helper.h │ ├── freebsd_helper.h │ ├── offsets.h │ ├── pfs_helper.h │ ├── rif_helper.h │ ├── sbl_helper.h │ ├── sections.h │ ├── self_helper.h │ └── sparse.h ├── linker.x └── source │ ├── fpkg.c │ ├── fself.c │ ├── main.c │ └── patch.c └── tool ├── Makefile └── bin2js.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/clean.sh -------------------------------------------------------------------------------- /exploit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/exploit.template -------------------------------------------------------------------------------- /exploit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/exploit/index.html -------------------------------------------------------------------------------- /installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/Makefile -------------------------------------------------------------------------------- /installer/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/include/debug.h -------------------------------------------------------------------------------- /installer/include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/include/defines.h -------------------------------------------------------------------------------- /installer/include/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/include/offsets.h -------------------------------------------------------------------------------- /installer/source/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/source/debug.c -------------------------------------------------------------------------------- /installer/source/embed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/source/embed.s -------------------------------------------------------------------------------- /installer/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/source/main.c -------------------------------------------------------------------------------- /installer/source/ps4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/installer/source/ps4.c -------------------------------------------------------------------------------- /kpayload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/Makefile -------------------------------------------------------------------------------- /kpayload/include/amd_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/amd_helper.h -------------------------------------------------------------------------------- /kpayload/include/ccp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/ccp_helper.h -------------------------------------------------------------------------------- /kpayload/include/elf_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/elf_helper.h -------------------------------------------------------------------------------- /kpayload/include/freebsd_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/freebsd_helper.h -------------------------------------------------------------------------------- /kpayload/include/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/offsets.h -------------------------------------------------------------------------------- /kpayload/include/pfs_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/pfs_helper.h -------------------------------------------------------------------------------- /kpayload/include/rif_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/rif_helper.h -------------------------------------------------------------------------------- /kpayload/include/sbl_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/sbl_helper.h -------------------------------------------------------------------------------- /kpayload/include/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/sections.h -------------------------------------------------------------------------------- /kpayload/include/self_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/self_helper.h -------------------------------------------------------------------------------- /kpayload/include/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/include/sparse.h -------------------------------------------------------------------------------- /kpayload/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/linker.x -------------------------------------------------------------------------------- /kpayload/source/fpkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/source/fpkg.c -------------------------------------------------------------------------------- /kpayload/source/fself.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/source/fself.c -------------------------------------------------------------------------------- /kpayload/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/source/main.c -------------------------------------------------------------------------------- /kpayload/source/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/kpayload/source/patch.c -------------------------------------------------------------------------------- /tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/tool/Makefile -------------------------------------------------------------------------------- /tool/bin2js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiSTR0/ps4-hen-vtx/HEAD/tool/bin2js.c --------------------------------------------------------------------------------