Root My Pixel is an Android application designed to automate root access on Google Pixel devices leveraging the NebuSec IonStack exploit (CVE-2026-43499) and integrating ReSukiSU / KernelSU.
How the Application Works
Root My Pixel lets you temporarily gain root access with ReSukiSU in just one tap.
Installation Workflow
Device Detection & Profiling
- At startup, the app uses native JNI (
NativeProbe),/proc/versionqueries, and system properties to detect the device codename, kernel version, CPU ABI, memory page size, and build display ID. - Via
ResolveTargetUseCase, it matches the device details against supported target profiles defined inassets/profiles.json.
- At startup, the app uses native JNI (
Shizuku Integration
- The app uses Shizuku (UID 2000) to acquire ADB shell privileges without needing initial root access, which is required to stage and execute payload binaries in
/data/local/tmp. - A managed
ExploitServiceis bound via Binder IPC to stream exploit execution logs to the UI in real time.
- The app uses Shizuku (UID 2000) to acquire ADB shell privileges without needing initial root access, which is required to stage and execute payload binaries in
Exploit Payload Extraction & Execution
- Precompiled binary payloads (
.so) corresponding to each supported build and the native helper tool (libcve43499root.so) are extracted from APK assets to/data/local/tmp. - The IonStack exploit (CVE-2026-43499) is executed to establish a local root daemon socket (
temp_su.sock), acquiring fullrootprivileges.
- Precompiled binary payloads (
KernelSU / ReSukiSU Integration
- Staging of the
ksudbinary matching the device's Kernel Module Interface (KMI, e.g.,android15-6.6). - The app triggers the KernelSU late-load mechanism (
ksud late-load --kmi <kmi>). - Verifies KernelSU active status by probing kernel device nodes (
/dev/kernelsu,/sys/kernel/kernelsu,/data/adb/ksu).
- Staging of the
User Interface & Management Tools
- Real-time live log progress monitoring.
- Handy actions for Soft Reboot (restarting
system_server) and Log Exporting for debugging purposes.
Supported Devices & Build Profiles
| Device | Codename | Supported Build | Kernel KMI | Tested |
|---|---|---|---|---|
| Pixel 10 | frankel |
CP2A.260705.006 |
android15-6.6 |
⏳ |
| Pixel 10 Pro | blazer |
CP2A.260705.006 |
android15-6.6 |
✅ |
| Pixel 10 Pro XL | mustang |
CP2A.260705.006 |
android15-6.6 |
✅ |
| Pixel 10 Pro Fold | rango |
CP2A.260705.006 |
android15-6.6 |
✅ |
| Pixel 10a | stallion |
CP2A.260705.006 |
android15-6.6 |
⏳ |
| Pixel 8 Pro | husky |
CP2A.260705.006 |
android14-6.1 |
✅ |
| Pixel 7 | panther |
CP2A.260705.006 |
android14-6.1 |
✅ |
| Pixel 7a | lynx |
CP2A.260705.006 |
android14-6.1 |
✅ |
Prerequisites
- A supported Google Pixel device listed in the table above.
- Shizuku installed and running via ADB (
adb shell sh /sdcard/Android/data/rikka.shizuku/starter.shor Wireless Debugging). - ReSukiSU Manager installed on the device to manage root permissions granted to apps.
Building from Source
To compile the entire project (native helper, exploit payloads for all targets, and the final debug APK):
Build Requirements
- Android NDK r25+ (
ANDROID_NDK_HOMEset or present in Android SDK) - macOS (arm64/x86_64) or Linux (x86_64) host
- Java 17+ and Gradle Wrapper
Build Command
./build-all.sh
The compiled APK will be generated at:
app/build/outputs/apk/debug/app-debug.apk
To install it on a connected device via ADB:
adb install -r app/build/outputs/apk/debug/app-debug.apk
Comments