Microsoft — Local Privilege Escalation to SYSTEM via Defender Patch Bypass (CVE-2026-69414)
Publication date: August 12, 2026
Category: Vulnerabilities / Zero-Day
Introduction
Security researcher Chaotic Eclipse (also known as INFINITE NIGHTMARE or MSNightmare) has publicly released a proof-of-concept (PoC) exploit for a new zero-day vulnerability in Microsoft Defender tracked as ShieldBreak (CVE-2026-69414). The exploit serves as a full patch bypass for RoguePlanet (CVE-2026-50656), a previously disclosed privilege escalation flaw residing within the Microsoft Malware Protection Engine (mpengine.dll).
If successfully exploited by a local authenticated attacker holding low-privilege access, ShieldBreak elevates permissions to NT AUTHORITY\SYSTEM. This disclosure arrives concurrently with Microsoft’s August 2026 Security Update release, which resolved 421 security flaws across Windows components. The update batch addresses key issues including filesystem driver tampering (unionfs.sys), User Profile Service privilege escalation (LegacyHive / CVE-2026-62832), and an actively exploited Use-After-Free flaw in the Windows Ancillary Function Driver (afd.sys / CVE-2026-68820).
What is ShieldBreak? (General Analysis)
ShieldBreak is a privilege escalation flaw in Microsoft Defender’s core engine (mpengine.dll). While the original RoguePlanet flaw (CVE-2026-50656) relied on a race condition using native NT filesystem manipulations and virtual disks to trick Defender’s quarantine process into overwriting system files, ShieldBreak manipulates Defender’s cloud-hydration scan mechanism using user-mode callback hooks in the Windows Cloud Filter API (cfapi.dll).
Official NVD entries detail the following parameters:
- CVE ID: CVE-2026-69414 (Confirmed in NVD).
- Official CVSS v3.1: 7.8 (High) —
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H. - CWE Classification: CWE-284 (Improper Access Control) / CWE-269 (Improper Privilege Management).
- CISA KEV Status: Not formally listed at initial release time.
The threat severity stems from the exploit’s high reliability: testing confirmed a 100% success rate on builds including Windows 11 version 25H2 and Windows Server 2025. Although Windows 10 was not explicitly supported in the original PoC script, the underlying malware protection engine logic remains vulnerable across supported releases.
How Does It Work? (Technical Analysis)
The ShieldBreak attack vector requires local machine access under a low-privilege user account and an active Microsoft Defender real-time protection process.
[1. Plant EICAR File] ---> [2. Object Manager Symlinks to System32]
|
[4. Trigger QueueReporting Task] <--- [3. Intercept via CLFS/cfapi (Phoneinfo.dll)]
|
v
[5. DLL Loading by wermgr.exe] ---> [6. Shell with SYSTEM Privileges]The execution chain unfolds as follows:
- Malware Indicator Staging: The attacker drops a standard EICAR test file to trigger an active scanning and quarantine inspection flow within Microsoft Defender.
- Path Redirection via Object Manager: By leveraging Windows Object Manager symlinks, the attacker redirects Defender’s internal scanning path toward
C:\Windows\System32. - Cloud Hydration Interception (CLFS &
cfapi): During the cloud hydration scan stage, user-mode callback hooks in the Cloud Filter API (cfapi) intercept Defender’s file operations. Combined with Common Log File System (CLFS) operations, the exploit swaps the scanned file identity and hydration data with payload code, resulting in the creation ofC:\Windows\System32\phoneinfo.dll(a file that does not exist in standard Windows installations). - Triggering High-Privilege Scheduled Tasks: The exploit triggers the native
QueueReportingscheduled task, which invokes the Windows Error Reporting manager (wermgr.exe -upload) executing with highest privileges. - DLL Side-Loading: The legitimate binary
wermgr.exe(viawer.dll) contains explicit logic to attempt loadingphoneinfo.dll. Becausephoneinfo.dllnow exists inSystem32containing attacker-controlled code, it executes within the elevated process context, spawningconhost.exeor executing payloads asNT AUTHORITY\SYSTEM.
Affected Systems / Environments
ShieldBreak impacts Windows desktop and server installations utilizing unpatched instances of the Microsoft Malware Protection Engine.
The table below outlines all key CVEs discussed in Microsoft’s August security bulletin:
| CVE | Classification (CWE) | Impact | CVSS v3.1 Score | CVSS Vector |
|---|---|---|---|---|
| CVE-2026-69414 | CWE-284 / CWE-269 | SYSTEM Privilege Escalation via Defender | 7.8 (High) | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H |
| CVE-2026-50656 | CWE-59 | Privilege Escalation in Defender (RoguePlanet) | 7.8 (High) | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H |
| CVE-2026-62832 | CWE-59 | Local EoP in User Profile Service (LegacyHive) | 7.8 (High) | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H |
| CVE-2026-68820 | CWE-416 | WinSock Privilege Escalation (afd.sys - Active Exploitation) | 7.0 (High) | CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H |
| CVE-2026-72971 | CWE-59 | Local Tampering in Container Isolation FS Filter Driver | 5.5 (Medium) | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N |
Mitigation and Detection
Remediation
- Defender Engine Updates: Verify that Microsoft Defender definitions and engine binaries receive automated updates via Windows Update or enterprise WSUS/Intune policies.
- Kernel Hotfixing for CVE-2026-68820: Immediately apply the August 2026 cumulative patch across all Windows endpoints. The
afd.sysvulnerability is actively exploited and mandated for remediation by CISA KEV directives. - Local Privilege Hardening: Enforce strict access controls on user-writable directories and audit low-privileged accounts to hinder initial exploit staging.
Detection
Defenders should monitor endpoints for unexpected file creation events targeting phoneinfo.dll inside C:\Windows\System32\, alongside anomalous process spawning from Windows Error Reporting binaries.
Security Alert: Detection of
phoneinfo.dllcreation inSystem32followed bywermgr.exespawning command shells (cmd.exe,powershell.exe,conhost.exe) underSYSTEMauthority indicates an active exploitation attempt.
The following KQL rule for Microsoft Defender for Endpoint detects ShieldBreak execution patterns:
// Detection of ShieldBreak PoC via anomalous wermgr.exe execution and phoneinfo.dll creation
DeviceProcessEvents
| where InitiatingProcessFileName =~ "wermgr.exe"
| where FileName in~ ("cmd.exe", "powershell.exe", "conhost.exe", "rundll32.exe")
| project Timestamp, DeviceName, ActionType, FileName, FolderPath, ProcessCommandLine, InitiatingProcessCommandLine, AccountName
| join kind=inner (
DeviceFileEvents
| where FolderPath =~ @"C:\Windows\System32\phoneinfo.dll"
| where ActionType in~ ("FileCreated", "FileModified")
) on DeviceNameWrapping Up
ShieldBreak demonstrates the persistent challenge of fully remediating vulnerabilities in security tools running at highest operating system privileges. Patching single vectors without addressing root integration behaviors across Cloud Filter APIs and CLFS can leave secondary bypass avenues open. Enterprise security teams must validate that both core OS patches and antimalware engine updates are systematically deployed across all managed assets.
References
- Beaumont, K. (2026). Advanced Hunting Queries: ShieldBreak.kql. GitHub. https://github.com/GossiTheDog/ThreatHunting/blob/master/AdvancedHuntingQueries/ShieldBreak.kql
- Cybersecurity and Infrastructure Security Agency. (2026, August 11). Known Exploited Vulnerabilities Catalog. https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- Lakshmanan, R. (2026, August 12). ShieldBreak Zero-Day PoC Claims Microsoft Defender Patch Bypass With SYSTEM Access. The Hacker News. https://thehackernews.com/2026/08/shieldbreak-zero-day-poc-claims.html
- Microsoft. (2026a). Microsoft Security Response Center: Security Update Guide - CVE-2026-50656. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-50656
- Microsoft. (2026b). Microsoft Security Response Center: Security Update Guide - CVE-2026-62832. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-62832
- Microsoft. (2026c). Microsoft Security Response Center: Security Update Guide - CVE-2026-68820. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-68820
- Microsoft. (2026d). Microsoft Security Response Center: Security Update Guide - CVE-2026-69414. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-69414
- Microsoft. (2026e). Microsoft Security Response Center: Security Update Guide - CVE-2026-72971. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-72971
- Nightcrawler Project. (2026, August 11). ShieldBreak August 2026 Disclosure. https://blog.projectnightcrawler.dev/posts/2026-08-11-shieldbreak-august-2026-disclosure/
