CVE-2026-13735
Last modified
CVE-2026-13735 is a low-severity vulnerability rated 3.7/10 on the CVSS scale. Zephyr's WireGuard implementation in subsys/net/lib/wireguard/wg_crypto.c mishandled keepalive packets. In wg_process_data_message(), any type-4 transport-data message whose payload was exactly 16 bytes (an empty plaintext plus a bare Poly1305 tag, i.e. EPSS estimates a 0.25% chance of exploitation in the next 30 days.
Description
Zephyr's WireGuard implementation in subsys/net/lib/wireguard/wg_crypto.c mishandled keepalive packets. In wg_process_data_message(), any type-4 transport-data message whose payload was exactly 16 bytes (an empty plaintext plus a bare Poly1305 tag, i.e. a keepalive) was accepted and returned immediately, before wg_decrypt_packet() was ever called. The Poly1305 authentication tag was therefore never verified; the only preceding gates were a cleartext receiver-index lookup (get_peer_keypair_for_index() on the attacker-supplied data_hdr->receiver) and a non-cryptographic keypair validity/expiry check. The path is reachable entirely from the network: inbound UDP on the WireGuard port is dispatched by wg_input() to handle_transport_data() and then wg_process_data_message(). The 32-bit receiver index is transmitted in cleartext in WireGuard handshake and data messages, so an on-path observer learns it directly and an off-path attacker can brute-force it against the UDP port. Given an active receiving-valid session for that index, an attacker could send a 16-byte garbage payload and have it accepted without possessing the session key. On acceptance the unauthenticated message caused the management layer to observe a spoofed NET_EVENT_VPN_CONNECTED signal (setting peer->first_valid and notifying any net_mgmt listener) and incremented the keepalive-RX statistic. The impact is limited to integrity of this status signal: no plaintext is decrypted or injected, no key is disclosed, and the early-return path did not update the peer endpoint or liveness timers, so there is no traffic-injection, session-takeover, or availability consequence. The fix removes the pre-decrypt early return so a 16-byte payload flows through wg_decrypt_packet(), which verifies the Poly1305 tag over the empty plaintext, followed by the existing anti-replay check; only an authenticated, non-replayed message is then recognised as a keepalive. Forged keepalives now fail the tag check and are counted as decrypt failures.
Metrics
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 4.4.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-13735?
How severe is CVE-2026-13735?
How do I fix CVE-2026-13735?
How Strix Helps
- Same Subject, Wrong User: A Cross-Issuer Account Takeover in n8nStrix found an identity-binding bug in n8n's token-exchange flow enabling account takeover.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-13729The Podlove Podcast Publisher WordPress plugin before 4.5.3 …4.3
- CVE-2026-1373The Easy Author Image plugin for WordPress is vulnerable to …6.4
- CVE-2026-13731The WPBot – AI ChatBot for Live Support, Lead Generation, AI…7.2
- CVE-2026-13732A flaw was found in GDB's STABS debug format parser. The rea…7
- CVE-2026-13733The Download Manager plugin for WordPress is vulnerable to S…6.4
- CVE-2026-13734Zephyr's WireGuard VPN data-plane receive handler wg_process…6.5
- CVE-2026-13736The NewPath WildApricotPress Add-on WordPress plugin throug…5.3
- CVE-2026-13737CommServe contained an allowlist bypass vulnerability affect…9.8
- CVE-2026-13738CommServe contained an authorization bypass vulnerability af…9.8
- CVE-2026-13739A legacy endpoint in Command Center contained an unauthentic…9.8
- CVE-2026-13741The Digits: WordPress Mobile Number Signup and Login plugin …8.8
- CVE-2026-13742Honeywell IQ MultiAccess, all versions prior to and includin…5.9
Are you affected by CVE-2026-13735?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
