#Vulnerabilities

Critical Remote Code Execution in Windows Kernel (CVE‑2026‑10879) – Immediate Action Required

Vulnerabilities Reporter
3 min read

Microsoft has disclosed CVE‑2026‑10879, a Windows kernel privilege‑escalation flaw with a CVSS 9.8 score. The vulnerability affects Windows 10 version 22H2, Windows Server 2022, and Windows 11 builds 22631‑2600 and earlier. Attackers can execute arbitrary code remotely via crafted network packets. Microsoft released patches on 2026‑04‑09. Apply the updates immediately and enforce network segmentation to mitigate exposure.

Impact First

A remote code execution (RCE) flaw in the Windows kernel can give attackers SYSTEM privileges. The bug allows unauthenticated network attackers to execute arbitrary code on vulnerable machines. The CVSS v3.1 base score is 9.8 (Critical).


Technical Details

  • CVE Identifier: CVE‑2026‑10879
  • Vulnerability Type: Remote Code Execution, Privilege Escalation
  • Affected Components: ntoskrnl.exe – kernel memory manager, and the NDIS network driver stack.
  • Root Cause: Improper validation of length fields in the handling of specially crafted NDIS packets. The kernel fails to enforce bounds checking, leading to a heap overflow that overwrites adjacent kernel structures.
  • Exploit Vector: Network‑only. An attacker sends a malformed packet to TCP/UDP port 445 (SMB) or 139 (NetBIOS) on a vulnerable host. No authentication is required.
  • Impact: Successful exploitation grants the attacker SYSTEM rights, enabling full control of the compromised system, lateral movement, and data exfiltration.
  • CVSS Metrics:
    • Attack Vector: Network (N)
    • Attack Complexity: Low (L)
    • Privileges Required: None (N)
    • User Interaction: None (N)
    • Scope: Changed (C)
    • Confidentiality: High (H)
    • Integrity: High (H)
    • Availability: High (H)

Affected Versions

Product Versions Affected
Windows 10 22H2 (Build 19045.3320) and earlier
Windows 11 22631‑2600 and earlier
Windows Server 2022 Build 20348.1500 and earlier
Windows Server 2019 Build 17763.3500 and earlier

The vulnerability is not present in Windows 10 version 23H1, Windows 11 version 22631‑2601, or any Azure‑hosted Windows images that have received the 2026‑04‑09 patch.


Mitigation Steps

  1. Apply the Security Update – Microsoft released patches on 2026‑04‑09. Download and install the cumulative update KB5029385 for the affected OS versions from the Microsoft Update Catalog.
  2. Verify Patch Installation – Run wmic qfe list brief /format:table | find "KB5029385" to confirm the update is applied.
  3. Network Isolation – Block inbound traffic on ports 445 and 139 from untrusted networks using firewalls or ACLs. Limit SMB exposure to internal subnets only.
  4. Enable SMB Signing – Enforce SMB signing on all domain controllers and file servers to add integrity checks to SMB traffic.
  5. Deploy Endpoint Detection – Ensure EDR solutions have signatures for the CVE‑2026‑10879 exploit pattern. Microsoft Defender for Endpoint released a detection rule on 2026‑04‑10.
  6. Monitor Logs – Watch for abnormal NDIS packet activity in the Windows Event Log (Microsoft-Windows-NDIS/Operational). Look for Event ID 1001 with unusually large packet sizes.
  7. Temporary Workaround – If patching cannot be completed immediately, disable SMBv1 and restrict SMB traffic via Group Policy: Computer Configuration → Policies → Administrative Templates → Network → Lanman Workstation → Enable insecure guest logons → Disabled.

Timeline

  • 2026‑04‑02 – Security researcher "ZeroDayLab" reports a kernel heap overflow to Microsoft via the MSRC Vulnerability Disclosure Program.
  • 2026‑04‑05 – Microsoft acknowledges receipt and begins internal analysis.
  • 2026‑04‑08 – Exploit code publicly released on a private forum, prompting urgent response.
  • 2026‑04‑09 – Microsoft issues Security Update Guide entry and publishes patches (KB5029385).
  • 2026‑04‑10 – Microsoft Defender for Endpoint adds detection rule; CISA adds CVE to its Known Exploited Vulnerabilities (KEV) catalog.
  • 2026‑04‑12 – Major cloud providers (Azure, AWS) roll out the patch to hosted Windows instances.

Why It Matters

The flaw bypasses typical perimeter defenses because it requires only network access. Attackers can chain this RCE with credential‑dumping tools to harvest domain admin hashes, then move laterally across the enterprise. The CVE appears in the CISA KEV list, meaning federal agencies must remediate within 30 days.


References


Action: Deploy the patch immediately. Verify compliance across all Windows endpoints. Block unnecessary SMB traffic. Monitor for signs of exploitation.

Comments

Loading comments...