// 5 ZERO-DAY · 4 CVE · 6 EXPLOIT · 1 ADVISORY IN THE LAST 24H
D-Link confirmed a maximum-severity zero-day in DIR-822A routers running firmware A_101. A public proof-of-concept exists, no patch is available, and the vendor's recommended mitigation — restricting internet access to the admin panel — does not address the LAN-only DHCP attack vector.

D-Link confirmed on September 18, 2026 a maximum-severity zero-day vulnerability in DIR-822A routers running firmware A_101. The flaw, tracked as CVE-2026-86296 with a CVSS 10.0 score in both versions 3.1 and 4.0, allows an attacker on the same local network to compromise the device without authentication. A proof-of-concept is already public and no patch is available.

Key Takeaways
  • CVE-2026-86296 carries a maximum CVSS 10.0: the DIR-822A with firmware A_101 is vulnerable to a stack-based buffer overflow in the DHCP component udhcpcd.
  • The attack requires only local network access — no credentials or user interaction; a compromised device or malicious guest on the LAN can trigger the exploit.
  • The researcher who discovered the vulnerability published the PoC publicly, drastically lowering the barrier for offensive use.
  • D-Link is investigating a second critical vulnerability, CVE-2026-86510 (CVSS 9.9), an out-of-bounds write in the L2TP parser, which instead requires low privileges and has a WAN attack surface.

Technical Mechanism: Unchecked strcpy in udhcpcd

The vulnerability resides in the DHCP server component udhcpcd, specifically in the file serverpacket.c via the strcpy function. According to advisory SAP10516 cited by BleepingComputer, a specially crafted request causes the available stack buffer to be exceeded during processing. The manipulation produces a remotely exploitable stack-based buffer overflow on the same local network.

The absence of length checks on the string copy in strcpy represents a known and avoidable security pattern for decades. The udhcpcd component, a derivative of the BusyBox project, is integrated here into D-Link's proprietary firmware and exhibits this specific weakness in DHCP server packet handling.

The Vendor Mitigation Miss

D-Link released an advisory with operational recommendations. The central measure consists of not exposing the router's administration interface to the internet. While sensible for the web attack surface, this guidance ignores the technical reality of CVE-2026-86296: the DHCP vector operates exclusively on the local network.

An attacker already on the LAN — via a compromised IoT device, a malicious guest laptop, or previously installed malware — reaches the udhcpcd daemon directly on UDP port 67 without traversing the perimeter firewall. Restricting admin access from WAN therefore does not intercept or reduce this attack surface.

WindowsForum highlighted this discrepancy by analyzing the two vulnerabilities in parallel: CVE-2026-86296 (DHCP, LAN, unauthenticated) and CVE-2026-86510 (L2TP, WAN, low-privilege). Only the second would be partially mitigated by reducing internet exposure; the first remains fully exposed in any network hosting multiple devices or guest access.

BleepingComputer reported that CISA tracks 26 previously exploited D-Link vulnerabilities, two of which were also used by ransomware groups. This historical data does not imply active exploitation for CVE-2026-86296 and CVE-2026-86510, which D-Link has not confirmed in-the-wild. However, it places the vendor in a high-risk profile regarding patch timeliness and end-user adoption.

D-Link DIR-series routers, particularly entry-level and SOHO models, have historically ended up in DDoS botnets — including the notorious Mirai and its variants — exploiting default credentials or remote vulnerabilities. The availability of a public PoC for an unauthenticated flaw on the local network, even without documented active exploitation, significantly raises the risk of automation once working code circulates in attacker repositories.

"A specially crafted request may cause data to exceed the available stack buffer when processed by the strcpy function. Successful exploitation may cause memory corruption and could allow an attacker to affect the device's confidentiality, integrity, or availability." — D-Link advisory SAP10516, reported by BleepingComputer

The Second Flaw: CVE-2026-86510 in the L2TP Parser

Alongside CVE-2026-86296, D-Link is investigating CVE-2026-86510, rated CVSS 9.9 in version 3.1 and 9.4 in version 4.0. This is an out-of-bounds write in the tunnel_set_params function of the L2TP/L2TPv6 parser. Unlike the DHCP flaw, this requires low privileges to trigger and presents a WAN attack surface in configurations that expose L2TP tunnels to the internet.

GBhackers published the full vector strings for both vulnerabilities, highlighting the CWE-121 (Stack-based Buffer Overflow) classification for the first and the distinct attack profiles. The overlap of two simultaneous criticalities on the same router model, with no patch for either, exposes users to an expanded threat arc covering both the LAN and WAN perimeters.

Immediate Actions

Disable guest access and segment the LAN. Since the DHCP exploit requires presence on the local network, isolating untrusted devices in VLANs or separate networks reduces the likelihood an attacker reaches the router.

Monitor for anomalous DHCP traffic. DHCP requests with suspiciously long or malformed payload fields directed at the router can indicate attempts to trigger the buffer overflow.

Evaluate device replacement if end-of-life. The dossier does not confirm the DIR-822A's lifecycle status; however, legacy routers without a scheduled patch represent structural security technical debt.

Reduce L2TP exposure to the internet. For those using L2TP/L2TPv6 tunnels, limiting access to known source addresses partially mitigates the CVE-2026-86510 surface pending a patch.

Why the Vendor Measure Falls Short

D-Link's response embodies a form of "security by obscurity": recommending obscuring the admin panel as if it solved the real problem. The DHCP vector does not cross the internet perimeter; it lives inside the network, where the attack surface is by definition broader and less controlled. Every guest smartphone, every compromised printer, every smart TV with dated firmware becomes a potential springboard.

The failure to acknowledge this technical distinction in official communication leaves home users and small offices with a false sense of protection. Until a patch replaces strcpy with bounded functions in DHCP packet handling, the DIR-822A A_101 remains vulnerable by design in its core networking functionality.

Frequently Asked Questions

Is remote connection required to exploit CVE-2026-86296?
No. The primary source explicitly states the attacker must be on the same local network. Internet exposure of the admin interface is irrelevant for this vector.

Is there a firmware version that fixes the vulnerability?
No. At the time of publication, no patch is available. D-Link states it is investigating and working on security fixes.

Is the DIR-822A still supported by the vendor?
The dossier does not specify the model's lifecycle status. Users should verify directly on the D-Link support portal whether the device falls under active support programs.

Sources

Information verified against cited sources and current as of publication.

Fonti


Sources and references
  1. bleepingcomputer.com
  2. daily.dev
  3. github.com
  4. windowsforum.com
  5. gbhackers.com
  6. nvd.nist.gov
  7. support.github.com