├── .gitignore ├── README.md ├── Screenshot_20231024-164541.png ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── droppedapk-release.apk │ ├── java │ └── com │ │ └── example │ │ └── abxoverflow │ │ ├── AbxInjector.java │ │ ├── Main.java │ │ ├── MainActivity.java │ │ └── RebootBackgroundRunner.java │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi │ ├── 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 ├── droppedapk ├── .gitignore ├── abxdroppedapk.keystore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── abxoverflow │ │ └── droppedapk │ │ ├── LaunchReceiver.java │ │ └── MainActivity.java │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi │ ├── 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 │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── utils ├── example_new_package.xml ├── example_packages.xml ├── example_session.xml ├── moveapk.sh ├── peeksessions.sh └── wipesessions.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_20231024-164541.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/Screenshot_20231024-164541.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/droppedapk-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/assets/droppedapk-release.apk -------------------------------------------------------------------------------- /app/src/main/java/com/example/abxoverflow/AbxInjector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/java/com/example/abxoverflow/AbxInjector.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/abxoverflow/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/java/com/example/abxoverflow/Main.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/abxoverflow/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/java/com/example/abxoverflow/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/abxoverflow/RebootBackgroundRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/java/com/example/abxoverflow/RebootBackgroundRunner.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /droppedapk/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /droppedapk/abxdroppedapk.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/abxdroppedapk.keystore -------------------------------------------------------------------------------- /droppedapk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/build.gradle -------------------------------------------------------------------------------- /droppedapk/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/proguard-rules.pro -------------------------------------------------------------------------------- /droppedapk/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /droppedapk/src/main/java/com/example/abxoverflow/droppedapk/LaunchReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/java/com/example/abxoverflow/droppedapk/LaunchReceiver.java -------------------------------------------------------------------------------- /droppedapk/src/main/java/com/example/abxoverflow/droppedapk/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/java/com/example/abxoverflow/droppedapk/MainActivity.java -------------------------------------------------------------------------------- /droppedapk/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /droppedapk/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /droppedapk/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /droppedapk/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /droppedapk/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/droppedapk/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/settings.gradle -------------------------------------------------------------------------------- /utils/example_new_package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/utils/example_new_package.xml -------------------------------------------------------------------------------- /utils/example_packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/utils/example_packages.xml -------------------------------------------------------------------------------- /utils/example_session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/utils/example_session.xml -------------------------------------------------------------------------------- /utils/moveapk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/utils/moveapk.sh -------------------------------------------------------------------------------- /utils/peeksessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/utils/peeksessions.sh -------------------------------------------------------------------------------- /utils/wipesessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalbednarski/AbxOverflow/HEAD/utils/wipesessions.sh --------------------------------------------------------------------------------