Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/quyicheng03-boop/xiaomi15-dada-cve-2026-64560
Android SecurityExploit FrameworksExploitationPenetration TestingMobile SecurityPayload DevelopmentBinary Exploitation
GitHubquyicheng03-boop/xiaomi15-dada-cve-2026-64560

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

xiaomi15-dada-cve-2026-64560

Device-bound CVE-2026-64560 adaptation for Xiaomi 15 dada OS4.0.0.8

View Repository
3310h 18m agoNot yet reviewed

Xiaomi 15 (dada) CVE-2026-64560

Device-specific adaptation of the NebuSec CVE-2026-64560 Android proof of concept for one exact Xiaomi 15 build. It provides temporary root access for the current boot through an ADB-shell-only helper.

[!WARNING] This is experimental kernel exploit code. It can reboot the device, corrupt kernel state, or cause data loss. Use it only on a device you own or are explicitly authorized to test. Back up important data first.

Supported target

PropertyRequired value
DeviceXiaomi 15 / dada
FingerprintXiaomi/dada/dada:17/CP2A.260605.016/OS4.0.0.8.XOCCNXM:user/release-keys
Kernel6.6.118-android15-8-gb9cc6ec16bc8-abogki536571621-4k
Page size / CPUs4 KiB / 8 online CPUs
Stock boot SHA-2568ffe7c88d05348ecaa334ed05ef2aceb0e0cfdc8c7eaa73b6d9ba9452998e85f
Decoded Image SHA-2561b79cadcee836a77c7c4d918f53bc24f7646dd216324de8910b00e50473c1bed

The runner rejects an unexpected fingerprint and verifies every bundled payload before execution. This repository does not contain firmware images, device keys, or device-unique secrets.

Usage

Requirements:

  • Windows PowerShell
  • Android Platform Tools with adb available on PATH
  • USB debugging enabled and authorized

From the repository root:

root@kitploit:~
powershell -ExecutionPolicy Bypass -File .\scripts\root.ps1

If more than one ADB device is connected, select one explicitly:

root@kitploit:~
powershell -ExecutionPolicy Bypass -File .\scripts\root.ps1 -Serial SERIAL

After ROOT_SUCCESS, any new terminal can open the temporary root shell:

root@kitploit:~
adb -s SERIAL shell -t /data/local/tmp/su

Run id to verify uid=0(root). Access lasts only for the current boot; rerun the script after a reboot. No boot, vendor, or system partition is modified.

The exploit contains a probabilistic kernel race. The runner automatically uses two independently verified reclaim strategies and cold-boots between unsafe or inconclusive outcomes. The default limit is 12 boots and can be changed with -MaxBoots.

Build

Android NDK r29 and API 35 are the reproducible-build defaults:

root@kitploit:~
.\scripts\build.ps1

The script builds both exploit strategies and the temporary-su helper, strips the outputs, and verifies their pinned SHA-256 values.

Porting toolkit

Create a read-only draft profile for another connected device and register its exact boot/Image hashes:

root@kitploit:~
.\scripts\new-target.ps1 -Target TARGET `
  -BootImage .\stock_boot.img `
  -DecodedImage .\Image

Generated profiles are always marked draft. The release runner refuses them until device-specific offsets, race parameters, restoration gates, artifact hashes, and the complete chain have been reviewed and verified. See docs/PORTING.md for the workflow.

Repository layout

Provenance and license

The primary upstream is NebuSec/CyberMeowfia. Exact revisions and Linux fixes are listed in docs/UPSTREAM.md. This adaptation retains the upstream Apache License 2.0; see LICENSE and NOTICE.

Download Tool
PathPurpose
bin/Verified AArch64 release payloads
profiles/Versioned target manifests and artifact pins
src/Corresponding C sources
scripts/root.ps1Target checks, execution, retry, and recovery
scripts/build.ps1Reproducible NDK build
scripts/new-target.ps1Read-only target-profile scaffolding
tools/derive_profile.pyRead-only profile derivation from a raw Image
docs/PORTING.mdNew-build adaptation and promotion checklist
docs/UPSTREAM.mdUpstream provenance and fixed revisions
docs/TECHNICAL.mdDevice adaptation notes
docs/TESTING.mdVerification criteria and observed limits