├── .gitmodules ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── f │ │ └── qbdi │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── native-lib.cpp │ ├── java │ │ └── com │ │ │ └── f │ │ │ └── qbdi │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── f │ └── qbdi │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── nativelib ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── f │ │ └── nativelib │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── hook │ │ │ ├── HookUtils.cpp │ │ │ ├── HookUtils.h │ │ │ ├── linkerHandler.cpp │ │ │ └── linkerHandler.h │ │ ├── include │ │ │ ├── logger.h │ │ │ ├── nativelib.h │ │ │ ├── version.h │ │ │ └── vm.h │ │ ├── nativelib.cpp │ │ ├── qdbi-arm64 │ │ │ ├── bin │ │ │ │ ├── qbdi-frida-template-AARCH64 │ │ │ │ └── qbdi-template-AARCH64 │ │ │ ├── include │ │ │ │ ├── QBDI.h │ │ │ │ └── QBDI │ │ │ │ │ ├── Bitmask.h │ │ │ │ │ ├── Callback.h │ │ │ │ │ ├── Config.h │ │ │ │ │ ├── Errors.h │ │ │ │ │ ├── InstAnalysis.h │ │ │ │ │ ├── Logs.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Memory.hpp │ │ │ │ │ ├── Options.h │ │ │ │ │ ├── Platform.h │ │ │ │ │ ├── Range.h │ │ │ │ │ ├── State.h │ │ │ │ │ ├── VM.h │ │ │ │ │ ├── VM_C.h │ │ │ │ │ └── Version.h │ │ │ ├── lib │ │ │ │ ├── libQBDI.a │ │ │ │ └── libQBDI.so │ │ │ ├── libQBDI.so │ │ │ └── share │ │ │ │ └── qbdiAARCH64 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── cmake │ │ │ │ ├── QBDIAARCH64Config-release.cmake │ │ │ │ ├── QBDIAARCH64Config.cmake │ │ │ │ ├── QBDIConfig-release.cmake │ │ │ │ └── QBDIConfig.cmake │ │ │ │ ├── frida-qbdi.js │ │ │ │ ├── qbdi_frida_template │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FridaQBDI_sample.js │ │ │ │ └── SimpleXOR.c │ │ │ │ └── qbdi_template │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.txt │ │ │ │ └── qbdi_template.c │ │ ├── record │ │ │ ├── HookInfo.cpp │ │ │ ├── HookInfo.h │ │ │ ├── fileRecord.cpp │ │ │ └── fileRecord.h │ │ ├── utils │ │ │ ├── json.hpp │ │ │ ├── jsonbean.cpp │ │ │ ├── jsonbean.h │ │ │ ├── mongoose.c │ │ │ ├── mongoose.h │ │ │ ├── socketUtils.cpp │ │ │ └── socketUtils.h │ │ └── vm.cpp │ └── java │ │ └── com │ │ └── f │ │ └── nativelib │ │ └── NativeLib.java │ └── test │ └── java │ └── com │ └── f │ └── nativelib │ └── ExampleUnitTest.java └── settings.gradle /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/.gitmodules -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/f/qbdi/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/androidTest/java/com/f/qbdi/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/java/com/f/qbdi/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/java/com/f/qbdi/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/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/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/f/qbdi/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/app/src/test/java/com/f/qbdi/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/gradlew.bat -------------------------------------------------------------------------------- /nativelib/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /nativelib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/build.gradle -------------------------------------------------------------------------------- /nativelib/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nativelib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/proguard-rules.pro -------------------------------------------------------------------------------- /nativelib/src/androidTest/java/com/f/nativelib/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/androidTest/java/com/f/nativelib/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /nativelib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /nativelib/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /nativelib/src/main/cpp/hook/HookUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/hook/HookUtils.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/hook/HookUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/hook/HookUtils.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/hook/linkerHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/hook/linkerHandler.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/hook/linkerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/hook/linkerHandler.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/include/logger.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/include/nativelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/include/nativelib.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/include/version.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/include/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/include/vm.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/nativelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/nativelib.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/bin/qbdi-frida-template-AARCH64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/bin/qbdi-frida-template-AARCH64 -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/bin/qbdi-template-AARCH64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/bin/qbdi-template-AARCH64 -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Bitmask.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Callback.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Config.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Errors.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/InstAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/InstAnalysis.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Logs.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Memory.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Memory.hpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Options.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Platform.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Range.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/State.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/VM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/VM.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/VM_C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/VM_C.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/include/QBDI/Version.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/lib/libQBDI.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/lib/libQBDI.a -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/lib/libQBDI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/lib/libQBDI.so -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/libQBDI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/libQBDI.so -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/LICENSE.txt -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIAARCH64Config-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIAARCH64Config-release.cmake -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIAARCH64Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIAARCH64Config.cmake -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIConfig-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIConfig-release.cmake -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/cmake/QBDIConfig.cmake -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/frida-qbdi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/frida-qbdi.js -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_frida_template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_frida_template/CMakeLists.txt -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_frida_template/FridaQBDI_sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_frida_template/FridaQBDI_sample.js -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_frida_template/SimpleXOR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_frida_template/SimpleXOR.c -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_template/CMakeLists.txt -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_template/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_template/README.txt -------------------------------------------------------------------------------- /nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_template/qbdi_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/qdbi-arm64/share/qbdiAARCH64/qbdi_template/qbdi_template.c -------------------------------------------------------------------------------- /nativelib/src/main/cpp/record/HookInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/record/HookInfo.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/record/HookInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/record/HookInfo.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/record/fileRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/record/fileRecord.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/record/fileRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/record/fileRecord.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/json.hpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/jsonbean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/jsonbean.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/jsonbean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/jsonbean.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/mongoose.c -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/mongoose.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/socketUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/socketUtils.cpp -------------------------------------------------------------------------------- /nativelib/src/main/cpp/utils/socketUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/utils/socketUtils.h -------------------------------------------------------------------------------- /nativelib/src/main/cpp/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/cpp/vm.cpp -------------------------------------------------------------------------------- /nativelib/src/main/java/com/f/nativelib/NativeLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/main/java/com/f/nativelib/NativeLib.java -------------------------------------------------------------------------------- /nativelib/src/test/java/com/f/nativelib/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/nativelib/src/test/java/com/f/nativelib/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FANGG3/DobbyWithQBDI/HEAD/settings.gradle --------------------------------------------------------------------------------