├── .gitignore ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── swift │ │ └── hookdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── armeabi-v7a │ │ │ ├── libinjector.so │ │ │ └── libsandhook │ ├── cpp │ │ ├── Inject.cpp │ │ ├── Inject.h │ │ ├── fake_dlfcn.cpp │ │ ├── fake_dlfcn.h │ │ ├── native-lib.cpp │ │ ├── native-lib.h │ │ └── sotool.h │ ├── java │ │ └── com │ │ │ └── swift │ │ │ └── hookdemo │ │ │ ├── ActivityHooker.java │ │ │ ├── HookStub.java │ │ │ ├── MainActivity.java │ │ │ └── ProcessUtils.java │ └── res │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ └── com │ └── swift │ └── hookdemo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/swift/hookdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/androidTest/java/com/swift/hookdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/armeabi-v7a/libinjector.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/assets/armeabi-v7a/libinjector.so -------------------------------------------------------------------------------- /app/src/main/assets/armeabi-v7a/libsandhook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/assets/armeabi-v7a/libsandhook -------------------------------------------------------------------------------- /app/src/main/cpp/Inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/Inject.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/Inject.h -------------------------------------------------------------------------------- /app/src/main/cpp/fake_dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/fake_dlfcn.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/fake_dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/fake_dlfcn.h -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/native-lib.h -------------------------------------------------------------------------------- /app/src/main/cpp/sotool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/cpp/sotool.h -------------------------------------------------------------------------------- /app/src/main/java/com/swift/hookdemo/ActivityHooker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/java/com/swift/hookdemo/ActivityHooker.java -------------------------------------------------------------------------------- /app/src/main/java/com/swift/hookdemo/HookStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/java/com/swift/hookdemo/HookStub.java -------------------------------------------------------------------------------- /app/src/main/java/com/swift/hookdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/java/com/swift/hookdemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/swift/hookdemo/ProcessUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/java/com/swift/hookdemo/ProcessUtils.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/swift/hookdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/app/src/test/java/com/swift/hookdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganyao114/SandBoxHookPlugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------