├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── technician │ │ └── turing │ │ └── pers │ │ └── fasthookapp │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ └── native-lib.cpp │ ├── java │ │ └── pers │ │ │ └── turing │ │ │ └── technician │ │ │ └── fasthookapp │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── hook │ │ │ ├── HookInfo.java │ │ │ ├── HookInfo2.java │ │ │ ├── HookMethodInfo.java │ │ │ └── Test.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── technician │ └── turing │ └── pers │ └── fasthookapp │ └── ExampleUnitTest.java ├── fasthook ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── pers │ │ └── turing │ │ └── technician │ │ └── fasthook │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── enhanced_dlfcn.c │ │ ├── enhanced_dlfcn.h │ │ ├── fast_hook_manager.c │ │ └── fast_hook_manager.h │ ├── java │ │ └── pers │ │ │ └── turing │ │ │ └── technician │ │ │ └── fasthook │ │ │ └── FastHookManager.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── pers │ └── turing │ └── technician │ └── fasthook │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/technician/turing/pers/fasthookapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/androidTest/java/technician/turing/pers/fasthookapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/java/pers/turing/technician/fasthookapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/java/pers/turing/technician/fasthookapp/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pers/turing/technician/fasthookapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/java/pers/turing/technician/fasthookapp/MainApplication.java -------------------------------------------------------------------------------- /app/src/main/java/pers/turing/technician/fasthookapp/hook/HookInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/java/pers/turing/technician/fasthookapp/hook/HookInfo.java -------------------------------------------------------------------------------- /app/src/main/java/pers/turing/technician/fasthookapp/hook/HookInfo2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/java/pers/turing/technician/fasthookapp/hook/HookInfo2.java -------------------------------------------------------------------------------- /app/src/main/java/pers/turing/technician/fasthookapp/hook/HookMethodInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/java/pers/turing/technician/fasthookapp/hook/HookMethodInfo.java -------------------------------------------------------------------------------- /app/src/main/java/pers/turing/technician/fasthookapp/hook/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/java/pers/turing/technician/fasthookapp/hook/Test.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/technician/turing/pers/fasthookapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/app/src/test/java/technician/turing/pers/fasthookapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /fasthook/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /fasthook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/CMakeLists.txt -------------------------------------------------------------------------------- /fasthook/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/build.gradle -------------------------------------------------------------------------------- /fasthook/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/proguard-rules.pro -------------------------------------------------------------------------------- /fasthook/src/androidTest/java/pers/turing/technician/fasthook/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/androidTest/java/pers/turing/technician/fasthook/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /fasthook/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /fasthook/src/main/cpp/enhanced_dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/cpp/enhanced_dlfcn.c -------------------------------------------------------------------------------- /fasthook/src/main/cpp/enhanced_dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/cpp/enhanced_dlfcn.h -------------------------------------------------------------------------------- /fasthook/src/main/cpp/fast_hook_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/cpp/fast_hook_manager.c -------------------------------------------------------------------------------- /fasthook/src/main/cpp/fast_hook_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/cpp/fast_hook_manager.h -------------------------------------------------------------------------------- /fasthook/src/main/java/pers/turing/technician/fasthook/FastHookManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/java/pers/turing/technician/fasthook/FastHookManager.java -------------------------------------------------------------------------------- /fasthook/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /fasthook/src/test/java/pers/turing/technician/fasthook/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/fasthook/src/test/java/pers/turing/technician/fasthook/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turing-technician/FastHook/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':fasthook' 2 | --------------------------------------------------------------------------------