├── .gitignore ├── LICENSE ├── emmc_extract.py ├── extract_idstorage.py ├── pup_fiction.py ├── scedecrypt.py ├── scetypes.py ├── sceutils.py ├── self2elf.py ├── unarzl ├── .gitignore ├── Makefile └── unarzl.c ├── unpack_bootimage_new.py ├── util.py └── vita_loader ├── LICENSE ├── README.md ├── highlight_arm_system_insn.py └── vita_loader.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.pyc 3 | keys.py 4 | env 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/LICENSE -------------------------------------------------------------------------------- /emmc_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/emmc_extract.py -------------------------------------------------------------------------------- /extract_idstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/extract_idstorage.py -------------------------------------------------------------------------------- /pup_fiction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/pup_fiction.py -------------------------------------------------------------------------------- /scedecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/scedecrypt.py -------------------------------------------------------------------------------- /scetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/scetypes.py -------------------------------------------------------------------------------- /sceutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/sceutils.py -------------------------------------------------------------------------------- /self2elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/self2elf.py -------------------------------------------------------------------------------- /unarzl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/unarzl/.gitignore -------------------------------------------------------------------------------- /unarzl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/unarzl/Makefile -------------------------------------------------------------------------------- /unarzl/unarzl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/unarzl/unarzl.c -------------------------------------------------------------------------------- /unpack_bootimage_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/unpack_bootimage_new.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/util.py -------------------------------------------------------------------------------- /vita_loader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/vita_loader/LICENSE -------------------------------------------------------------------------------- /vita_loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/vita_loader/README.md -------------------------------------------------------------------------------- /vita_loader/highlight_arm_system_insn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/vita_loader/highlight_arm_system_insn.py -------------------------------------------------------------------------------- /vita_loader/vita_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamMolecule/sceutils/HEAD/vita_loader/vita_loader.py --------------------------------------------------------------------------------