Analysis updated 2026-06-24
Manage Magisk, KernelSU, and APatch modules from one Android app
Check Magisk version, Zygisk state, and ramdisk patch status on a rooted phone
Remove ROOT or Magisk in one tap without multiple manual reboots
Study a Kotlin + WebView shell where the UI is HTML/CSS/JS in assets
| cuso4-x/cuso4-rootmanager | 34306/ios-exploit-starterpack | reallygood83/obsigravity | |
|---|---|---|---|
| Stars | 12 | 11 | 11 |
| Language | CSS | CSS | CSS |
| Setup difficulty | hard | easy | moderate |
| Complexity | 3/5 | 5/5 | 3/5 |
| Audience | developer | researcher | writer |
Figures from each repo's GitHub metadata at analysis time.
Requires an already-rooted Android device with Magisk, KernelSU, or APatch preinstalled, the app refuses to run otherwise.
CuSO4 Open is an open source Android app that acts as a front end for ROOT management on rooted phones. Rooting an Android device gives an app the ability to read and change parts of the system that are normally locked away from regular apps, and the standard tools for doing this are projects called Magisk, KernelSU, and APatch. CuSO4 Open provides a single user interface that talks to whichever of those tools is already installed. The README is firm on one point: this app does not replace Magisk or KernelSU. The official ROOT manager has to be installed first, otherwise CuSO4 Open cannot run. The author calls this both a safety feature and a budget choice. The listed features are module management, meaning the user can install, enable, disable, and remove ROOT modules from inside the app, plus Magisk specific information such as the current kernel version, the Magisk version, whether Zygisk is on, and whether the boot ramdisk has been patched. There is also a one click option to remove ROOT or Magisk completely without going through several reboots. Under the hood the app is a native Android shell, written in Kotlin, that wraps a WebView. The user interface lives in android/app/src/main/assets/home as HTML, CSS, and JavaScript, and the Kotlin code sits next to it in the java folder. The app asks for three permissions: INTERNET for downloading modules, FOREGROUND_SERVICE for long running work, and POST_NOTIFICATIONS for install progress. To build from source the README asks for Android Studio Hedgehog or later, Android SDK 34, Gradle 8.9, and JDK 17, then a normal ./gradlew assembleDebug produces the debug APK. Pre-built APKs are also offered on the GitHub Releases page. The minimum supported Android version is 5.0.
Android app that wraps Magisk, KernelSU, and APatch under a single Kotlin and WebView UI for managing root modules, viewing Magisk status, and one-click unrooting.
Mainly CSS. The stack also includes Kotlin, Android, WebView.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.