├── Build.bat ├── README.md ├── Smali Files └── loadLib │ ├── libLoader$1.smali │ └── libLoader.smali ├── params.txt ├── x32 └── jni │ ├── Android.mk │ ├── Application.mk │ ├── include │ └── Utils.h │ ├── libs │ ├── KittyMemory │ │ ├── KittyMemory.cpp │ │ ├── KittyMemory.h │ │ ├── MemoryPatch.cpp │ │ └── MemoryPatch.h │ └── Substrate │ │ ├── Buffer.hpp │ │ ├── CydiaSubstrate.h │ │ ├── SubstrateARM.hpp │ │ ├── SubstrateDebug.cpp │ │ ├── SubstrateDebug.hpp │ │ ├── SubstrateHook.cpp │ │ ├── SubstrateHook.h │ │ ├── SubstrateLog.hpp │ │ ├── SubstratePosixMemory.cpp │ │ ├── SubstrateX86.hpp │ │ ├── hde64.c │ │ ├── hde64.h │ │ └── table64.h │ └── src │ └── main.cpp └── x64 └── jni ├── Android.mk ├── Application.mk ├── include └── Utils.h ├── libs ├── 64InlineHook │ ├── And64InlineHook.cpp │ └── And64InlineHook.hpp └── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.h │ ├── MemoryPatch.cpp │ └── MemoryPatch.h └── src └── main.cpp /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/Build.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/README.md -------------------------------------------------------------------------------- /Smali Files/loadLib/libLoader$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/Smali Files/loadLib/libLoader$1.smali -------------------------------------------------------------------------------- /Smali Files/loadLib/libLoader.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/Smali Files/loadLib/libLoader.smali -------------------------------------------------------------------------------- /params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/params.txt -------------------------------------------------------------------------------- /x32/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/Android.mk -------------------------------------------------------------------------------- /x32/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/Application.mk -------------------------------------------------------------------------------- /x32/jni/include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/include/Utils.h -------------------------------------------------------------------------------- /x32/jni/libs/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /x32/jni/libs/KittyMemory/KittyMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/KittyMemory/KittyMemory.h -------------------------------------------------------------------------------- /x32/jni/libs/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /x32/jni/libs/KittyMemory/MemoryPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/KittyMemory/MemoryPatch.h -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/Buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/Buffer.hpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/CydiaSubstrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/CydiaSubstrate.h -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateARM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateARM.hpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateDebug.cpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateDebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateDebug.hpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateHook.cpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateHook.h -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateLog.hpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstratePosixMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstratePosixMemory.cpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/SubstrateX86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/SubstrateX86.hpp -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/hde64.c -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/hde64.h -------------------------------------------------------------------------------- /x32/jni/libs/Substrate/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/libs/Substrate/table64.h -------------------------------------------------------------------------------- /x32/jni/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x32/jni/src/main.cpp -------------------------------------------------------------------------------- /x64/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/Android.mk -------------------------------------------------------------------------------- /x64/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/Application.mk -------------------------------------------------------------------------------- /x64/jni/include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/include/Utils.h -------------------------------------------------------------------------------- /x64/jni/libs/64InlineHook/And64InlineHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/libs/64InlineHook/And64InlineHook.cpp -------------------------------------------------------------------------------- /x64/jni/libs/64InlineHook/And64InlineHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/libs/64InlineHook/And64InlineHook.hpp -------------------------------------------------------------------------------- /x64/jni/libs/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/libs/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /x64/jni/libs/KittyMemory/KittyMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/libs/KittyMemory/KittyMemory.h -------------------------------------------------------------------------------- /x64/jni/libs/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/libs/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /x64/jni/libs/KittyMemory/MemoryPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/libs/KittyMemory/MemoryPatch.h -------------------------------------------------------------------------------- /x64/jni/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Djngo/Hooking-and-Patching-android-template/HEAD/x64/jni/src/main.cpp --------------------------------------------------------------------------------