├── .gitignore ├── Brotli.exe ├── Extractor.bat ├── README.md ├── Repack_INFO.md └── bin ├── Imgextractor.exe ├── LOG ├── Repack_INFO.txt ├── cecho.exe ├── cyggcc_s-1.dll ├── cygpcre-1.dll ├── cygwin1.dll ├── cygz.dll ├── fciv.exe ├── img2simg.exe ├── make_ext4fs.exe ├── msvcr100.dll ├── python ├── LOG2 └── sdat2img.py ├── rimg2sdat.exe ├── sdat2img.exe ├── signapk.jar ├── simg2img.exe ├── testkey.pk8 └── testkey.x509.pem /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.zip 3 | 4 | system_/ 5 | -------------------------------------------------------------------------------- /Brotli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/Brotli.exe -------------------------------------------------------------------------------- /Extractor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/Extractor.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/README.md -------------------------------------------------------------------------------- /Repack_INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/Repack_INFO.md -------------------------------------------------------------------------------- /bin/Imgextractor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/Imgextractor.exe -------------------------------------------------------------------------------- /bin/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/LOG -------------------------------------------------------------------------------- /bin/Repack_INFO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/Repack_INFO.txt -------------------------------------------------------------------------------- /bin/cecho.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/cecho.exe -------------------------------------------------------------------------------- /bin/cyggcc_s-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/cyggcc_s-1.dll -------------------------------------------------------------------------------- /bin/cygpcre-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/cygpcre-1.dll -------------------------------------------------------------------------------- /bin/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/cygwin1.dll -------------------------------------------------------------------------------- /bin/cygz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/cygz.dll -------------------------------------------------------------------------------- /bin/fciv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/fciv.exe -------------------------------------------------------------------------------- /bin/img2simg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/img2simg.exe -------------------------------------------------------------------------------- /bin/make_ext4fs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/make_ext4fs.exe -------------------------------------------------------------------------------- /bin/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/msvcr100.dll -------------------------------------------------------------------------------- /bin/python/LOG2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/python/sdat2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/python/sdat2img.py -------------------------------------------------------------------------------- /bin/rimg2sdat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/rimg2sdat.exe -------------------------------------------------------------------------------- /bin/sdat2img.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/sdat2img.exe -------------------------------------------------------------------------------- /bin/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/signapk.jar -------------------------------------------------------------------------------- /bin/simg2img.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/simg2img.exe -------------------------------------------------------------------------------- /bin/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/testkey.pk8 -------------------------------------------------------------------------------- /bin/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matriex/System_Extractor-WIN/HEAD/bin/testkey.x509.pem --------------------------------------------------------------------------------