├── .gitignore ├── .gitmodules ├── AHPL0.pdf ├── LICENSE.txt ├── README.md ├── gdb-scripts ├── README.md ├── playdead.sh └── playnice.sh ├── hide-emu ├── Android.mk ├── Makefile ├── README.md └── hide.c └── native-unpacker ├── Android.mk ├── Makefile ├── README.md ├── definitions.h ├── kisskiss.c └── kisskiss.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | #*# 3 | libs/ 4 | obj/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/.gitmodules -------------------------------------------------------------------------------- /AHPL0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/AHPL0.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/README.md -------------------------------------------------------------------------------- /gdb-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/gdb-scripts/README.md -------------------------------------------------------------------------------- /gdb-scripts/playdead.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/gdb-scripts/playdead.sh -------------------------------------------------------------------------------- /gdb-scripts/playnice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/gdb-scripts/playnice.sh -------------------------------------------------------------------------------- /hide-emu/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/hide-emu/Android.mk -------------------------------------------------------------------------------- /hide-emu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/hide-emu/Makefile -------------------------------------------------------------------------------- /hide-emu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/hide-emu/README.md -------------------------------------------------------------------------------- /hide-emu/hide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/hide-emu/hide.c -------------------------------------------------------------------------------- /native-unpacker/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/native-unpacker/Android.mk -------------------------------------------------------------------------------- /native-unpacker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/native-unpacker/Makefile -------------------------------------------------------------------------------- /native-unpacker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/native-unpacker/README.md -------------------------------------------------------------------------------- /native-unpacker/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/native-unpacker/definitions.h -------------------------------------------------------------------------------- /native-unpacker/kisskiss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/native-unpacker/kisskiss.c -------------------------------------------------------------------------------- /native-unpacker/kisskiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strazzere/android-unpacker/HEAD/native-unpacker/kisskiss.h --------------------------------------------------------------------------------