├── .gitignore ├── 660_plugins_on_661 ├── 660_plugins_on_661.prx ├── Makefile ├── exports.exp └── main.c ├── PRXDecompiler ├── LICENSE ├── Lib │ ├── expat.h │ ├── expat_external.h │ └── libexpat.a.rename ├── Makefile ├── README ├── TODO ├── abi.c ├── allefast.c ├── allegrex.c ├── allegrex.h ├── alloc.c ├── alloc.h ├── analyser.c ├── cfg.c ├── code.h ├── constants.c ├── dataflow.c ├── decoder.c ├── graph.c ├── hash.c ├── hash.h ├── lists.c ├── lists.h ├── liveness.c ├── main.c ├── makedots.sh ├── module.c ├── nids.c ├── nids.h ├── operations.c ├── outcode.c ├── outgraph.c ├── output.c ├── output.h ├── prx.c ├── prx.h ├── relocs.c ├── ssa.c ├── structures.c ├── subroutines.c ├── switches.c ├── types.h ├── utils.c └── utils.h ├── PRXDecrypter ├── .cproject ├── .project ├── ICON0.PNG ├── License.txt ├── SOURCE_CODE_README.txt ├── common.c ├── common.h ├── file.c ├── file.h ├── include │ ├── kubridge.h │ ├── libpsardumper.h │ ├── pspcrypt.h │ ├── pspdecrypt.h │ ├── pspinit.h │ ├── psploadexec_kernel.h │ ├── pspmodulemgr.h │ ├── pspmodulemgr_kernel.h │ ├── pspsysmem.h │ ├── pspsysmem_kernel.h │ ├── pspusbdevice.h │ ├── psputilsforkernel.h │ ├── systemctrl.h │ ├── systemctrl_se.h │ └── vshctrl.h ├── keys_144_byte.h ├── keys_16_byte.h ├── lib │ └── lib.rar ├── main.c ├── make.bat ├── makefile ├── prxdecrypter_01g │ ├── Makefile │ ├── exports.c │ ├── exports.exp │ ├── libprxdecrypter_01g │ │ ├── make.bat │ │ ├── makefile │ │ ├── pspAPI.S │ │ └── pspimport.S │ ├── main.c │ ├── make.bat │ ├── prxdecrypter_01g.elf │ ├── prxdecrypter_01g.prx │ └── prxdecrypter_prx_01g.S ├── prxdecrypter_02g │ ├── Makefile │ ├── exports.exp │ ├── main.c │ ├── make.bat │ ├── prxdecrypter_02g.elf │ ├── prxdecrypter_02g.prx │ └── prxdecrypter_prx_02g.S ├── prxdecrypter_prx_01g.S └── prxdecrypter_prx_02g.S ├── PRXTool ├── LICENSE ├── Makefile.am ├── NidMgr.cpp ├── NidMgr.h ├── ProcessElf.cpp ├── ProcessElf.h ├── ProcessPrx.cpp ├── ProcessPrx.h ├── README ├── SerializePrx.cpp ├── SerializePrx.h ├── SerializePrxToIdc.cpp ├── SerializePrxToIdc.h ├── SerializePrxToMap.cpp ├── SerializePrxToMap.h ├── SerializePrxToXml.cpp ├── SerializePrxToXml.h ├── VirtualMem.cpp ├── VirtualMem.h ├── aclocal │ ├── ax_create_stdint_h.m4 │ └── version.m4 ├── bootstrap ├── clean.bat ├── configure.ac ├── disasm.cpp ├── disasm.h ├── elftypes.h ├── functions.txt ├── getargs.cpp ├── getargs.h ├── main.cpp ├── output.cpp ├── output.h ├── prxtypes.h ├── pspkerror.cpp ├── pspkerror.h ├── tinyxml │ ├── VERSION │ ├── changes.txt │ ├── readme.txt │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp └── types.h ├── PSPCipher ├── CipherBridge.S ├── Makefile ├── README.txt ├── include │ ├── kubridge.h │ ├── pspcrypt.h │ ├── psputilsforkernel.h │ └── systemctrl.h ├── kbridge │ ├── Makefile │ ├── exports.exp │ ├── main.c │ ├── memlmd_reverse.c │ ├── mesg_led_02g.S │ └── mesgled_reverse.c ├── main.c └── pspcipher.h ├── README.md ├── SGDeemer ├── deemer_driver │ ├── Makefile │ ├── deemerd.exp │ └── main.c └── deemer_hooker │ ├── Makefile │ ├── deemerd.S │ ├── deemerd.h │ └── main.c ├── SGKeyDumper ├── CHANGELOG ├── Makefile ├── README ├── SGKeyDumper.prx ├── gpl-3.0.txt ├── libs │ ├── libpspkubridge.a │ └── libpspsystemctrl_kernel.a └── src │ ├── exports.exp │ ├── imports.S │ ├── lib.c │ ├── lib.h │ ├── main.c │ ├── sctrl.h │ └── setk1.S ├── deceboot ├── LICENSE.txt ├── README.txt ├── deceboot.exe └── src │ ├── Core │ └── ELF │ │ ├── PrxDecrypter.cpp │ │ └── PrxDecrypter.h │ ├── LICENSE.txt │ ├── Makefile │ ├── cooltypedefs.h │ ├── ext │ └── libkirk │ │ ├── AES.c │ │ ├── AES.h │ │ ├── CMakeLists.txt │ │ ├── SHA1.c │ │ ├── SHA1.h │ │ ├── amctrl.c │ │ ├── amctrl.h │ │ ├── bn.c │ │ ├── ec.c │ │ ├── kirk_engine.c │ │ ├── kirk_engine.h │ │ ├── libkirk.vcxproj │ │ └── libkirk.vcxproj.filters │ └── main.cpp ├── depackager ├── Makefile ├── PARAM.SFO ├── README.TXT ├── gpl-3.0.txt └── src │ ├── aes.c │ ├── aes.h │ ├── exports.exp │ ├── imports.S │ ├── lib.c │ ├── lib.h │ ├── main.c │ ├── sctrl.h │ └── setk1.S ├── keydump ├── Makefile ├── core.c ├── core.h ├── exports.exp ├── imports.S ├── include │ └── key.h ├── kirk_engine │ ├── crypto.c │ ├── crypto.h │ ├── kirk_engine.c │ ├── kirk_engine.h │ └── types.h └── main.c ├── kxploit ├── Makefile ├── README.txt ├── imports.S └── main.c ├── memdump ├── Makefile ├── exports.exp └── main.c └── parsedreg2 ├── Readme.txt ├── build ├── example registry ├── system.dreg └── system.ireg ├── fixupdreg2.c ├── parsedreg2.c ├── pspreghtmlizer ├── 2.00-manymod-fix.xml ├── 2.00-manymod-nofix.xml ├── 2.00-mod-fix.xml ├── 2.00-mod-nofix.xml ├── 2.00-namemod-fix.xml ├── 2.00-namemod-nofix.xml └── pspreghtmlizer.xsl ├── sha1.c └── sha1.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/.gitignore -------------------------------------------------------------------------------- /660_plugins_on_661/660_plugins_on_661.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/660_plugins_on_661/660_plugins_on_661.prx -------------------------------------------------------------------------------- /660_plugins_on_661/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/660_plugins_on_661/Makefile -------------------------------------------------------------------------------- /660_plugins_on_661/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/660_plugins_on_661/exports.exp -------------------------------------------------------------------------------- /660_plugins_on_661/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/660_plugins_on_661/main.c -------------------------------------------------------------------------------- /PRXDecompiler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/LICENSE -------------------------------------------------------------------------------- /PRXDecompiler/Lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/Lib/expat.h -------------------------------------------------------------------------------- /PRXDecompiler/Lib/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/Lib/expat_external.h -------------------------------------------------------------------------------- /PRXDecompiler/Lib/libexpat.a.rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/Lib/libexpat.a.rename -------------------------------------------------------------------------------- /PRXDecompiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/Makefile -------------------------------------------------------------------------------- /PRXDecompiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/README -------------------------------------------------------------------------------- /PRXDecompiler/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/TODO -------------------------------------------------------------------------------- /PRXDecompiler/abi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/abi.c -------------------------------------------------------------------------------- /PRXDecompiler/allefast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/allefast.c -------------------------------------------------------------------------------- /PRXDecompiler/allegrex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/allegrex.c -------------------------------------------------------------------------------- /PRXDecompiler/allegrex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/allegrex.h -------------------------------------------------------------------------------- /PRXDecompiler/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/alloc.c -------------------------------------------------------------------------------- /PRXDecompiler/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/alloc.h -------------------------------------------------------------------------------- /PRXDecompiler/analyser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/analyser.c -------------------------------------------------------------------------------- /PRXDecompiler/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/cfg.c -------------------------------------------------------------------------------- /PRXDecompiler/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/code.h -------------------------------------------------------------------------------- /PRXDecompiler/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/constants.c -------------------------------------------------------------------------------- /PRXDecompiler/dataflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/dataflow.c -------------------------------------------------------------------------------- /PRXDecompiler/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/decoder.c -------------------------------------------------------------------------------- /PRXDecompiler/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/graph.c -------------------------------------------------------------------------------- /PRXDecompiler/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/hash.c -------------------------------------------------------------------------------- /PRXDecompiler/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/hash.h -------------------------------------------------------------------------------- /PRXDecompiler/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/lists.c -------------------------------------------------------------------------------- /PRXDecompiler/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/lists.h -------------------------------------------------------------------------------- /PRXDecompiler/liveness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/liveness.c -------------------------------------------------------------------------------- /PRXDecompiler/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/main.c -------------------------------------------------------------------------------- /PRXDecompiler/makedots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/makedots.sh -------------------------------------------------------------------------------- /PRXDecompiler/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/module.c -------------------------------------------------------------------------------- /PRXDecompiler/nids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/nids.c -------------------------------------------------------------------------------- /PRXDecompiler/nids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/nids.h -------------------------------------------------------------------------------- /PRXDecompiler/operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/operations.c -------------------------------------------------------------------------------- /PRXDecompiler/outcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/outcode.c -------------------------------------------------------------------------------- /PRXDecompiler/outgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/outgraph.c -------------------------------------------------------------------------------- /PRXDecompiler/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/output.c -------------------------------------------------------------------------------- /PRXDecompiler/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/output.h -------------------------------------------------------------------------------- /PRXDecompiler/prx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/prx.c -------------------------------------------------------------------------------- /PRXDecompiler/prx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/prx.h -------------------------------------------------------------------------------- /PRXDecompiler/relocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/relocs.c -------------------------------------------------------------------------------- /PRXDecompiler/ssa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/ssa.c -------------------------------------------------------------------------------- /PRXDecompiler/structures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/structures.c -------------------------------------------------------------------------------- /PRXDecompiler/subroutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/subroutines.c -------------------------------------------------------------------------------- /PRXDecompiler/switches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/switches.c -------------------------------------------------------------------------------- /PRXDecompiler/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/types.h -------------------------------------------------------------------------------- /PRXDecompiler/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/utils.c -------------------------------------------------------------------------------- /PRXDecompiler/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecompiler/utils.h -------------------------------------------------------------------------------- /PRXDecrypter/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/.cproject -------------------------------------------------------------------------------- /PRXDecrypter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/.project -------------------------------------------------------------------------------- /PRXDecrypter/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/ICON0.PNG -------------------------------------------------------------------------------- /PRXDecrypter/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/License.txt -------------------------------------------------------------------------------- /PRXDecrypter/SOURCE_CODE_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/SOURCE_CODE_README.txt -------------------------------------------------------------------------------- /PRXDecrypter/common.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /PRXDecrypter/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/common.h -------------------------------------------------------------------------------- /PRXDecrypter/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/file.c -------------------------------------------------------------------------------- /PRXDecrypter/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/file.h -------------------------------------------------------------------------------- /PRXDecrypter/include/kubridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/kubridge.h -------------------------------------------------------------------------------- /PRXDecrypter/include/libpsardumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/libpsardumper.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspcrypt.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspdecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspdecrypt.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspinit.h -------------------------------------------------------------------------------- /PRXDecrypter/include/psploadexec_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/psploadexec_kernel.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspmodulemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspmodulemgr.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspmodulemgr_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspmodulemgr_kernel.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspsysmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspsysmem.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspsysmem_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspsysmem_kernel.h -------------------------------------------------------------------------------- /PRXDecrypter/include/pspusbdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/pspusbdevice.h -------------------------------------------------------------------------------- /PRXDecrypter/include/psputilsforkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/psputilsforkernel.h -------------------------------------------------------------------------------- /PRXDecrypter/include/systemctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/systemctrl.h -------------------------------------------------------------------------------- /PRXDecrypter/include/systemctrl_se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/systemctrl_se.h -------------------------------------------------------------------------------- /PRXDecrypter/include/vshctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/include/vshctrl.h -------------------------------------------------------------------------------- /PRXDecrypter/keys_144_byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/keys_144_byte.h -------------------------------------------------------------------------------- /PRXDecrypter/keys_16_byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/keys_16_byte.h -------------------------------------------------------------------------------- /PRXDecrypter/lib/lib.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/lib/lib.rar -------------------------------------------------------------------------------- /PRXDecrypter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/main.c -------------------------------------------------------------------------------- /PRXDecrypter/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/make.bat -------------------------------------------------------------------------------- /PRXDecrypter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/makefile -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/Makefile -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/exports.c -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/exports.exp -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/make.bat -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/makefile -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/pspAPI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/pspAPI.S -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/pspimport.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/libprxdecrypter_01g/pspimport.S -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/main.c -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/make.bat -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/prxdecrypter_01g.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/prxdecrypter_01g.elf -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/prxdecrypter_01g.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/prxdecrypter_01g.prx -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_01g/prxdecrypter_prx_01g.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_01g/prxdecrypter_prx_01g.S -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/Makefile -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/exports.exp -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/main.c -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/make.bat -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/prxdecrypter_02g.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/prxdecrypter_02g.elf -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/prxdecrypter_02g.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/prxdecrypter_02g.prx -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_02g/prxdecrypter_prx_02g.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_02g/prxdecrypter_prx_02g.S -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_prx_01g.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_prx_01g.S -------------------------------------------------------------------------------- /PRXDecrypter/prxdecrypter_prx_02g.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXDecrypter/prxdecrypter_prx_02g.S -------------------------------------------------------------------------------- /PRXTool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/LICENSE -------------------------------------------------------------------------------- /PRXTool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/Makefile.am -------------------------------------------------------------------------------- /PRXTool/NidMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/NidMgr.cpp -------------------------------------------------------------------------------- /PRXTool/NidMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/NidMgr.h -------------------------------------------------------------------------------- /PRXTool/ProcessElf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/ProcessElf.cpp -------------------------------------------------------------------------------- /PRXTool/ProcessElf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/ProcessElf.h -------------------------------------------------------------------------------- /PRXTool/ProcessPrx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/ProcessPrx.cpp -------------------------------------------------------------------------------- /PRXTool/ProcessPrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/ProcessPrx.h -------------------------------------------------------------------------------- /PRXTool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/README -------------------------------------------------------------------------------- /PRXTool/SerializePrx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrx.cpp -------------------------------------------------------------------------------- /PRXTool/SerializePrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrx.h -------------------------------------------------------------------------------- /PRXTool/SerializePrxToIdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrxToIdc.cpp -------------------------------------------------------------------------------- /PRXTool/SerializePrxToIdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrxToIdc.h -------------------------------------------------------------------------------- /PRXTool/SerializePrxToMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrxToMap.cpp -------------------------------------------------------------------------------- /PRXTool/SerializePrxToMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrxToMap.h -------------------------------------------------------------------------------- /PRXTool/SerializePrxToXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrxToXml.cpp -------------------------------------------------------------------------------- /PRXTool/SerializePrxToXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/SerializePrxToXml.h -------------------------------------------------------------------------------- /PRXTool/VirtualMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/VirtualMem.cpp -------------------------------------------------------------------------------- /PRXTool/VirtualMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/VirtualMem.h -------------------------------------------------------------------------------- /PRXTool/aclocal/ax_create_stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/aclocal/ax_create_stdint_h.m4 -------------------------------------------------------------------------------- /PRXTool/aclocal/version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/aclocal/version.m4 -------------------------------------------------------------------------------- /PRXTool/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/bootstrap -------------------------------------------------------------------------------- /PRXTool/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/clean.bat -------------------------------------------------------------------------------- /PRXTool/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/configure.ac -------------------------------------------------------------------------------- /PRXTool/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/disasm.cpp -------------------------------------------------------------------------------- /PRXTool/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/disasm.h -------------------------------------------------------------------------------- /PRXTool/elftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/elftypes.h -------------------------------------------------------------------------------- /PRXTool/functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/functions.txt -------------------------------------------------------------------------------- /PRXTool/getargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/getargs.cpp -------------------------------------------------------------------------------- /PRXTool/getargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/getargs.h -------------------------------------------------------------------------------- /PRXTool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/main.cpp -------------------------------------------------------------------------------- /PRXTool/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/output.cpp -------------------------------------------------------------------------------- /PRXTool/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/output.h -------------------------------------------------------------------------------- /PRXTool/prxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/prxtypes.h -------------------------------------------------------------------------------- /PRXTool/pspkerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/pspkerror.cpp -------------------------------------------------------------------------------- /PRXTool/pspkerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/pspkerror.h -------------------------------------------------------------------------------- /PRXTool/tinyxml/VERSION: -------------------------------------------------------------------------------- 1 | 2.3.4 2 | -------------------------------------------------------------------------------- /PRXTool/tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/changes.txt -------------------------------------------------------------------------------- /PRXTool/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/readme.txt -------------------------------------------------------------------------------- /PRXTool/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /PRXTool/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/tinystr.h -------------------------------------------------------------------------------- /PRXTool/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /PRXTool/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /PRXTool/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /PRXTool/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /PRXTool/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PRXTool/types.h -------------------------------------------------------------------------------- /PSPCipher/CipherBridge.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/CipherBridge.S -------------------------------------------------------------------------------- /PSPCipher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/Makefile -------------------------------------------------------------------------------- /PSPCipher/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/README.txt -------------------------------------------------------------------------------- /PSPCipher/include/kubridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/include/kubridge.h -------------------------------------------------------------------------------- /PSPCipher/include/pspcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/include/pspcrypt.h -------------------------------------------------------------------------------- /PSPCipher/include/psputilsforkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/include/psputilsforkernel.h -------------------------------------------------------------------------------- /PSPCipher/include/systemctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/include/systemctrl.h -------------------------------------------------------------------------------- /PSPCipher/kbridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/kbridge/Makefile -------------------------------------------------------------------------------- /PSPCipher/kbridge/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/kbridge/exports.exp -------------------------------------------------------------------------------- /PSPCipher/kbridge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/kbridge/main.c -------------------------------------------------------------------------------- /PSPCipher/kbridge/memlmd_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/kbridge/memlmd_reverse.c -------------------------------------------------------------------------------- /PSPCipher/kbridge/mesg_led_02g.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/kbridge/mesg_led_02g.S -------------------------------------------------------------------------------- /PSPCipher/kbridge/mesgled_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/kbridge/mesgled_reverse.c -------------------------------------------------------------------------------- /PSPCipher/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/main.c -------------------------------------------------------------------------------- /PSPCipher/pspcipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/PSPCipher/pspcipher.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/README.md -------------------------------------------------------------------------------- /SGDeemer/deemer_driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_driver/Makefile -------------------------------------------------------------------------------- /SGDeemer/deemer_driver/deemerd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_driver/deemerd.exp -------------------------------------------------------------------------------- /SGDeemer/deemer_driver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_driver/main.c -------------------------------------------------------------------------------- /SGDeemer/deemer_hooker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_hooker/Makefile -------------------------------------------------------------------------------- /SGDeemer/deemer_hooker/deemerd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_hooker/deemerd.S -------------------------------------------------------------------------------- /SGDeemer/deemer_hooker/deemerd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_hooker/deemerd.h -------------------------------------------------------------------------------- /SGDeemer/deemer_hooker/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGDeemer/deemer_hooker/main.c -------------------------------------------------------------------------------- /SGKeyDumper/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/CHANGELOG -------------------------------------------------------------------------------- /SGKeyDumper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/Makefile -------------------------------------------------------------------------------- /SGKeyDumper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/README -------------------------------------------------------------------------------- /SGKeyDumper/SGKeyDumper.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/SGKeyDumper.prx -------------------------------------------------------------------------------- /SGKeyDumper/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/gpl-3.0.txt -------------------------------------------------------------------------------- /SGKeyDumper/libs/libpspkubridge.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/libs/libpspkubridge.a -------------------------------------------------------------------------------- /SGKeyDumper/libs/libpspsystemctrl_kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/libs/libpspsystemctrl_kernel.a -------------------------------------------------------------------------------- /SGKeyDumper/src/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/exports.exp -------------------------------------------------------------------------------- /SGKeyDumper/src/imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/imports.S -------------------------------------------------------------------------------- /SGKeyDumper/src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/lib.c -------------------------------------------------------------------------------- /SGKeyDumper/src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/lib.h -------------------------------------------------------------------------------- /SGKeyDumper/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/main.c -------------------------------------------------------------------------------- /SGKeyDumper/src/sctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/sctrl.h -------------------------------------------------------------------------------- /SGKeyDumper/src/setk1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/SGKeyDumper/src/setk1.S -------------------------------------------------------------------------------- /deceboot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/LICENSE.txt -------------------------------------------------------------------------------- /deceboot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/README.txt -------------------------------------------------------------------------------- /deceboot/deceboot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/deceboot.exe -------------------------------------------------------------------------------- /deceboot/src/Core/ELF/PrxDecrypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/Core/ELF/PrxDecrypter.cpp -------------------------------------------------------------------------------- /deceboot/src/Core/ELF/PrxDecrypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/Core/ELF/PrxDecrypter.h -------------------------------------------------------------------------------- /deceboot/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/LICENSE.txt -------------------------------------------------------------------------------- /deceboot/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/Makefile -------------------------------------------------------------------------------- /deceboot/src/cooltypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/cooltypedefs.h -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/AES.c -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/AES.h -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/CMakeLists.txt -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/SHA1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/SHA1.c -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/SHA1.h -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/amctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/amctrl.c -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/amctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/amctrl.h -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/bn.c -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/ec.c -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/kirk_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/kirk_engine.c -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/kirk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/kirk_engine.h -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/libkirk.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/libkirk.vcxproj -------------------------------------------------------------------------------- /deceboot/src/ext/libkirk/libkirk.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/ext/libkirk/libkirk.vcxproj.filters -------------------------------------------------------------------------------- /deceboot/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/deceboot/src/main.cpp -------------------------------------------------------------------------------- /depackager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/Makefile -------------------------------------------------------------------------------- /depackager/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/PARAM.SFO -------------------------------------------------------------------------------- /depackager/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/README.TXT -------------------------------------------------------------------------------- /depackager/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/gpl-3.0.txt -------------------------------------------------------------------------------- /depackager/src/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/aes.c -------------------------------------------------------------------------------- /depackager/src/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/aes.h -------------------------------------------------------------------------------- /depackager/src/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/exports.exp -------------------------------------------------------------------------------- /depackager/src/imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/imports.S -------------------------------------------------------------------------------- /depackager/src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/lib.c -------------------------------------------------------------------------------- /depackager/src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/lib.h -------------------------------------------------------------------------------- /depackager/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/main.c -------------------------------------------------------------------------------- /depackager/src/sctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/sctrl.h -------------------------------------------------------------------------------- /depackager/src/setk1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/depackager/src/setk1.S -------------------------------------------------------------------------------- /keydump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/Makefile -------------------------------------------------------------------------------- /keydump/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/core.c -------------------------------------------------------------------------------- /keydump/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/core.h -------------------------------------------------------------------------------- /keydump/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/exports.exp -------------------------------------------------------------------------------- /keydump/imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/imports.S -------------------------------------------------------------------------------- /keydump/include/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/include/key.h -------------------------------------------------------------------------------- /keydump/kirk_engine/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/kirk_engine/crypto.c -------------------------------------------------------------------------------- /keydump/kirk_engine/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/kirk_engine/crypto.h -------------------------------------------------------------------------------- /keydump/kirk_engine/kirk_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/kirk_engine/kirk_engine.c -------------------------------------------------------------------------------- /keydump/kirk_engine/kirk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/kirk_engine/kirk_engine.h -------------------------------------------------------------------------------- /keydump/kirk_engine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/kirk_engine/types.h -------------------------------------------------------------------------------- /keydump/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/keydump/main.c -------------------------------------------------------------------------------- /kxploit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/kxploit/Makefile -------------------------------------------------------------------------------- /kxploit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/kxploit/README.txt -------------------------------------------------------------------------------- /kxploit/imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/kxploit/imports.S -------------------------------------------------------------------------------- /kxploit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/kxploit/main.c -------------------------------------------------------------------------------- /memdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/memdump/Makefile -------------------------------------------------------------------------------- /memdump/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/memdump/exports.exp -------------------------------------------------------------------------------- /memdump/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/memdump/main.c -------------------------------------------------------------------------------- /parsedreg2/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/Readme.txt -------------------------------------------------------------------------------- /parsedreg2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/build -------------------------------------------------------------------------------- /parsedreg2/example registry/system.dreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/example registry/system.dreg -------------------------------------------------------------------------------- /parsedreg2/example registry/system.ireg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/example registry/system.ireg -------------------------------------------------------------------------------- /parsedreg2/fixupdreg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/fixupdreg2.c -------------------------------------------------------------------------------- /parsedreg2/parsedreg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/parsedreg2.c -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/2.00-manymod-fix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/2.00-manymod-fix.xml -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/2.00-manymod-nofix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/2.00-manymod-nofix.xml -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/2.00-mod-fix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/2.00-mod-fix.xml -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/2.00-mod-nofix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/2.00-mod-nofix.xml -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/2.00-namemod-fix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/2.00-namemod-fix.xml -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/2.00-namemod-nofix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/2.00-namemod-nofix.xml -------------------------------------------------------------------------------- /parsedreg2/pspreghtmlizer/pspreghtmlizer.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/pspreghtmlizer/pspreghtmlizer.xsl -------------------------------------------------------------------------------- /parsedreg2/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/sha1.c -------------------------------------------------------------------------------- /parsedreg2/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/psptools/HEAD/parsedreg2/sha1.h --------------------------------------------------------------------------------