├── .gitignore ├── Makefile ├── README.md ├── maker.c ├── notes.TXT └── payloads ├── LoadEncryptedModule.S ├── LoadEncryptedModule.string ├── LoadModule.S ├── LoadModule.string ├── boot-fifa.s ├── boot-fifa.string ├── boot-klonoa.S ├── boot-klonoa.string ├── hdd.S ├── include └── addresses.S ├── sceCdDiskReady.S ├── sceCdMmode.S ├── sceOpen.S ├── sceOpen.string ├── test-full-restore.S └── test-quick-restore.S /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | maker 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/README.md -------------------------------------------------------------------------------- /maker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/maker.c -------------------------------------------------------------------------------- /notes.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/notes.TXT -------------------------------------------------------------------------------- /payloads/LoadEncryptedModule.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/LoadEncryptedModule.S -------------------------------------------------------------------------------- /payloads/LoadEncryptedModule.string: -------------------------------------------------------------------------------- 1 | rom1:EROMDRVE -------------------------------------------------------------------------------- /payloads/LoadModule.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/LoadModule.S -------------------------------------------------------------------------------- /payloads/LoadModule.string: -------------------------------------------------------------------------------- 1 | rom0:ADDRV -------------------------------------------------------------------------------- /payloads/boot-fifa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/boot-fifa.s -------------------------------------------------------------------------------- /payloads/boot-fifa.string: -------------------------------------------------------------------------------- 1 | cdrom0:\FIFADEMO\GAMEZ.ELF -------------------------------------------------------------------------------- /payloads/boot-klonoa.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/boot-klonoa.S -------------------------------------------------------------------------------- /payloads/boot-klonoa.string: -------------------------------------------------------------------------------- 1 | cdrom0:\KLONOA2\MAIN.ELF -------------------------------------------------------------------------------- /payloads/hdd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/hdd.S -------------------------------------------------------------------------------- /payloads/include/addresses.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/include/addresses.S -------------------------------------------------------------------------------- /payloads/sceCdDiskReady.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/sceCdDiskReady.S -------------------------------------------------------------------------------- /payloads/sceCdMmode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/sceCdMmode.S -------------------------------------------------------------------------------- /payloads/sceOpen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/sceOpen.S -------------------------------------------------------------------------------- /payloads/sceOpen.string: -------------------------------------------------------------------------------- 1 | path here... -------------------------------------------------------------------------------- /payloads/test-full-restore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/test-full-restore.S -------------------------------------------------------------------------------- /payloads/test-quick-restore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTurt/PS2-Yabasic-Exploit/HEAD/payloads/test-quick-restore.S --------------------------------------------------------------------------------