
Microsoft’s August 2026 Patch Tuesday patched 398 CVEs. The one getting all the attention is CVE-2026-68820 — the Windows WinSock zero-day Lazarus exploited for five weeks. The one you should be patching right now is CVE-2026-62878. It is a CVSS 9.8 stack-based buffer overflow in Windows DNS Server, requires no authentication, requires no user interaction, and Zero Day Initiative has called it wormable. Microsoft rates exploitation as “less likely.” ZDI’s wormable label means the window between “no exploitation” and “active worm outbreak” could be measured in hours.
What CVE-2026-62878 Is
The vulnerability is a stack-based buffer overflow (CWE-121) in the Windows DNS Server role. An unauthenticated attacker on any network path to UDP or TCP port 53 sends a specially crafted DNS packet. The server parses it, overflows a stack buffer, and the attacker achieves remote code execution with elevated privileges. No credentials. No user click. No preconditions beyond network access to your DNS server.
Affected systems span Windows Server 2012 through Windows Server 2025 — the full range of versions still in use across enterprise environments. The patch shipped in the August 11 Patch Tuesday update, available via Windows Update, WSUS, and SCCM. There is no Microsoft-provided workaround. The only fix is the patch.
Why “DNS Server” Means “Domain Controller”
This is the framing that transforms CVE-2026-62878 from a “critical patch” into a “drop everything” event. In most enterprise Windows environments, the DNS Server role runs on the same machines as Active Directory Domain Services. Your DNS servers are your domain controllers. Remote code execution on a DNS server is remote code execution on a domain controller.
Domain controller compromise means full control of the AD identity infrastructure: every user account, every computer account, every privileged group. Recovery is not an afternoon project. It is a multi-day enterprise incident requiring forensic assessment, credential resets across the domain, and potential forest-level recovery procedures. The blast radius from a single exploited DNS server — particularly an internet-facing one — is effectively unlimited within the domain.
Wormable: What That Actually Means
Microsoft’s advisory rates CVE-2026-62878 as “exploitation less likely.” ZDI’s August 2026 review says it is wormable. These two assessments are not contradictory — Microsoft is assessing current observed exploitation; ZDI is assessing the technical characteristics of the vulnerability. Trust ZDI’s technical assessment.
Wormable means the exploit can self-propagate without human involvement. An attacker compromises one DNS server. The malicious payload scans for adjacent DNS servers on port 53 and exploits them automatically. No additional attacker action required. The historical precedent is unambiguous: EternalBlue (MS17-010) was a CVSS 9.8 stack buffer overflow rated by Microsoft as relatively low priority. Two months later, WannaCry spread to 230,000 systems across 150 countries. CVE-2019-0708 (BlueKeep) followed the same pattern.
The window between “no public exploit” and “active worm” is unpredictable. It can be months. It can be days. It has been hours. The only rational response is to assume the window is short.
CVE-2026-62893: While You’re Patching
The August Patch Tuesday also includes CVE-2026-62893, a use-after-free in Windows Deployment Services’ TFTP server (CVSS 9.8). Unlike CVE-2026-62878, this one is rated “Exploitation More Likely” — meaning analysts consider it higher urgency despite not being wormable. TFTP has no authentication by design; any WDS server doing PXE boot is exposed on UDP port 69. Enterprise environments using WDS for OS deployment should treat this as equivalent priority to the DNS flaw.
What to Patch, in Order
If you are triaging the full August 2026 Patch Tuesday, here is the priority order based on exploitation status and blast radius:
- CVE-2026-68820 — Already exploited in the wild by Lazarus. Patch immediately.
- CVE-2026-62878 — Wormable DNS RCE, CVSS 9.8. Patch this week.
- CVE-2026-62893 — WDS TFTP RCE, CVSS 9.8, exploitation rated more likely. Patch this week.
- CVE-2026-62832 — Windows User Profile Service LPE, publicly disclosed.
- CVE-2026-72971 — Container Isolation FS Filter Driver LPE, publicly disclosed.
Interim Mitigation
If your change management process prevents immediate deployment, apply these controls in the interim:
- Block inbound TCP/UDP port 53 from untrusted external networks at the perimeter firewall.
- Separate public-facing authoritative DNS from internal Active Directory DNS infrastructure.
- Disable DNS recursion for requests from external or untrusted sources.
- Monitor DNS server event logs for anomalous parsing errors or unexpected connection spikes.
These are mitigations, not fixes. They reduce exposure but do not eliminate it. To identify which servers carry the DNS role across your environment, run this from an elevated PowerShell prompt on each server or via remote execution:
Get-WindowsFeature -Name DNS | Where-Object {$_.Installed -eq $true}
Build your patch target list before your maintenance window, not during it. Tenable’s Patch Tuesday analysis includes additional detection guidance and plugin IDs if you use Nessus.
The Bottom Line
CVE-2026-62878 got overshadowed by the Lazarus zero-day this Patch Tuesday cycle. That is understandable — an actively exploited nation-state tool demands immediate attention. But the wormable DNS RCE is the more dangerous vulnerability at scale, precisely because it has not been weaponized yet. Patch it this week, not at your next monthly maintenance window. The cost of waiting for a worm outbreak to motivate urgency is catastrophically higher than the cost of an accelerated patch cycle.













