├── LICENSE ├── README.md ├── exploit ├── Makefile ├── Makefile.eeglobal ├── Makefile.pref └── main.c ├── launcher-boot ├── Makefile └── main.c ├── launcher-keys ├── Makefile ├── main.c └── pad.c └── ps2_packer ├── COPYING ├── README-lite.txt ├── README.txt └── ps2_packer.exe /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Source code for OpenTuna exploit and payloads. 2 | -------------------------------------------------------------------------------- /exploit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/exploit/Makefile -------------------------------------------------------------------------------- /exploit/Makefile.eeglobal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/exploit/Makefile.eeglobal -------------------------------------------------------------------------------- /exploit/Makefile.pref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/exploit/Makefile.pref -------------------------------------------------------------------------------- /exploit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/exploit/main.c -------------------------------------------------------------------------------- /launcher-boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/launcher-boot/Makefile -------------------------------------------------------------------------------- /launcher-boot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/launcher-boot/main.c -------------------------------------------------------------------------------- /launcher-keys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/launcher-keys/Makefile -------------------------------------------------------------------------------- /launcher-keys/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/launcher-keys/main.c -------------------------------------------------------------------------------- /launcher-keys/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/launcher-keys/pad.c -------------------------------------------------------------------------------- /ps2_packer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/ps2_packer/COPYING -------------------------------------------------------------------------------- /ps2_packer/README-lite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/ps2_packer/README-lite.txt -------------------------------------------------------------------------------- /ps2_packer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/ps2_packer/README.txt -------------------------------------------------------------------------------- /ps2_packer/ps2_packer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/opentuna-payload/HEAD/ps2_packer/ps2_packer.exe --------------------------------------------------------------------------------