├── XposedSensitiveInfoChecker ├── app │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── assets │ │ │ └── xposed_init │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── themes.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── checker │ │ │ └── xposed_hook │ │ │ ├── MainActivity.java │ │ │ └── XposedHook.java │ ├── proguard-rules.pro │ └── build.gradle ├── .idea │ ├── .name │ ├── compiler.xml │ ├── kotlinc.xml │ ├── vcs.xml │ ├── AndroidProjectSystem.xml │ ├── migrations.xml │ ├── deploymentTargetSelector.xml │ ├── misc.xml │ ├── gradle.xml │ ├── runConfigurations.xml │ └── jarRepositories.xml ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── imgs ├── Hooked.png ├── clone_app.png ├── Not_Hooked.png ├── add_module.png ├── Check_Results.png ├── Start_Checking.png ├── VirtualXposed.png ├── actual_desktop.png ├── install_dialog.png ├── activate_module.png ├── restart_virtual.png ├── virtual_desktop.png ├── virtual_desktop_2.png ├── virtual_settings.png ├── xposed_installer_logs.png └── xposed_installer_logs_2.png ├── apk └── VirtualXposed_0.18.2.apk ├── Xposed虚拟环境VirtualXposed入门教程.md ├── LICENSE └── README.md /XposedSensitiveInfoChecker/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/.name: -------------------------------------------------------------------------------- 1 | Xposed-Hook -------------------------------------------------------------------------------- /imgs/Hooked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/Hooked.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Xposed-Hook" -------------------------------------------------------------------------------- /imgs/clone_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/clone_app.png -------------------------------------------------------------------------------- /imgs/Not_Hooked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/Not_Hooked.png -------------------------------------------------------------------------------- /imgs/add_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/add_module.png -------------------------------------------------------------------------------- /imgs/Check_Results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/Check_Results.png -------------------------------------------------------------------------------- /imgs/Start_Checking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/Start_Checking.png -------------------------------------------------------------------------------- /imgs/VirtualXposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/VirtualXposed.png -------------------------------------------------------------------------------- /imgs/actual_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/actual_desktop.png -------------------------------------------------------------------------------- /imgs/install_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/install_dialog.png -------------------------------------------------------------------------------- /imgs/activate_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/activate_module.png -------------------------------------------------------------------------------- /imgs/restart_virtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/restart_virtual.png -------------------------------------------------------------------------------- /imgs/virtual_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/virtual_desktop.png -------------------------------------------------------------------------------- /imgs/virtual_desktop_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/virtual_desktop_2.png -------------------------------------------------------------------------------- /imgs/virtual_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/virtual_settings.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.checker.xposed_hook.XposedHook 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /apk/VirtualXposed_0.18.2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/apk/VirtualXposed_0.18.2.apk -------------------------------------------------------------------------------- /imgs/xposed_installer_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/xposed_installer_logs.png -------------------------------------------------------------------------------- /imgs/xposed_installer_logs_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/imgs/xposed_installer_logs_2.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | XposedChecker 3 | 获取敏感信息检测 4 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaojingwen945/Xposed/HEAD/XposedSensitiveInfoChecker/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jul 24 15:17:37 CST 2025 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-8.5-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/migrations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | 23 | -keep class com.checker.xposed_hook.XposedHook { *; } -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /XposedSensitiveInfoChecker/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 16 | 17 |