CVE-2026-62911: Public PoC Released for Microsoft Exchange Pre-Auth RCE Chain

Proactive Security for the AI Era
NodeZero continuously and autonomously pentests infrastructure, identity, cloud, and now web applications, chaining weaknesses across every domain the way real attackers do. Every finding ships with replayable proof showing exploitable business impact, not theoretical risk.
CVE-2026-62911 is a capture-replay authentication bypass in Microsoft Exchange Server that an attacker chains into SYSTEM-level remote code execution without a single valid credential, and a public proof-of-concept exploit hit GitHub this morning. Orange Tsai of DEVCORE demonstrated the full attack at Pwn2Own Berlin 2026 and collected a $200,000 payout. Microsoft shipped the fix on August 11, 2026, as part of the monthly Exchange security update rollup, but with a working PoC now publicly available, every unpatched Exchange server reachable from the internet faces a closing window before mass exploitation campaigns begin.
The vulnerability centers on Exchange's Mailbox Replication Service Proxy (MRSProxy), a Windows Communication Foundation endpoint at /EWS/MrsProxy.svc used for cross-forest mailbox migrations. MRSProxy accepts Negotiate authentication over HTTP but does not enforce Extended Protection for Authentication (EPA) channel binding in unpatched versions. An attacker triggers the coercion phase by sending a PetitPotam request using the MS-EFSR protocol to the Exchange server, forcing it to authenticate outbound to an attacker-controlled SMB listener. The attacker relays the captured machine account NTLM credential to MRSProxy, which accepts it without the channel binding check. From there, a single WCF call to the IMailbox_Config6 operation writes an attacker-supplied ASPX file to an IIS-accessible directory, and execution follows through an HTTP request to the dropped webshell.
The attack requires no user interaction and no valid credentials. Shodan telemetry places roughly 500,000 Exchange servers directly reachable from the internet. SOC teams and Exchange administrators must apply the August 2026 security update today. This post covers the full attack chain, confirmed indicators of compromise, two Sigma detection rules, seven-platform WAF coverage, and a six-step remediation checklist. Similar NTLM relay chains recently affected Citrix NetScaler CVE-2026-8452 and ServiceNow CVE-2026-18885, underscoring the ongoing risk to enterprise perimeter services that accept relayed authentication.
How the CVE-2026-62911 Attack Chain Works
CVE-2026-62911 chains three independently known exploitation primitives into a single pre-authentication remote code execution sequence requiring no user interaction on the target Exchange server.
The coercion phase starts with a PetitPotam request. The attacker sends an MS-EFSR RPC call to the Exchange server over the lsarpc named pipe, which forces the Windows host to initiate outbound NTLM authentication to an attacker-controlled SMB listener. PetitPotam has been a reliable coercion technique against Windows servers since 2021, and Exchange servers running the default EFSR service configuration respond without additional preconditions.
The relay phase exploits MRSProxy's missing EPA check. The attacker's SMB listener captures the incoming machine account NTLM authentication and immediately relays it over HTTPS to /EWS/MrsProxy.svc on the same Exchange server. Because the MRSProxy endpoint on HTTP.sys does not enforce EPA channel binding, it cannot detect that the authentication arrived over a different transport channel than the one the credential was originally issued for. The endpoint authenticates the session as the Exchange machine account, which holds write access to the Exchange installation file system.
The file write phase calls IMailbox_Config6. The authenticated WCF session invokes the IMailbox_Config6 operation with an attacker-controlled destination path and ASPX content as parameters. The Mailbox Replication Service writes the supplied file to the specified location, targeting any directory under the Exchange IIS installation path accessible over HTTP, typically within the ClientAccess or FrontEnd HttpProxy folder structure.
The execution phase delivers SYSTEM access. An HTTP GET request to the dropped ASPX webshell with a cmd query parameter causes IIS worker process w3wp.exe running in the Exchange application pool to execute the supplied operating system command and return output in the HTTP response. At this point the attacker has full command execution with Exchange service account permissions, which in most configurations includes local administrator rights.
The August 2026 patch fixes the vulnerability by implementing EPA enforcement on the MRSProxy endpoint, binding each Negotiate authentication token to the specific TLS session in which it was negotiated. Relayed tokens from a different TLS channel fail this check and authentication is rejected.
Scope: How Many Exchange Servers Face CVE-2026-62911 Risk
Microsoft Exchange Server remains one of the most widely deployed enterprise mail platforms globally. Shodan telemetry as of late August 2026 shows approximately 500,000 Exchange servers with their EWS or OWA endpoints directly reachable from the internet, the majority running versions within the CVE-2026-62911 affected range.
The affected version set covers Exchange 2016 CU23, Exchange 2019 CU14 and CU15, and Exchange Server Subscription Edition RTM. Exchange 2016 reached end of mainstream support in October 2025, meaning its patch for this vulnerability ships only through Extended Security Updates. Organizations still on Exchange 2016 without an active ESU contract have no vendor patch path and must deploy compensating controls or migrate immediately.
The attack's low technical bar amplifies the risk surface. The PoC released today on GitHub includes a self-contained Python script handling all four phases of the attack chain: attacker IP, target Exchange FQDN, and a desired webshell path. Operators with no prior Exchange knowledge can execute a complete pre-auth RCE in under five minutes against an unpatched target. Threat intelligence firms track Exchange RCE PoC releases as one of the highest-priority escalation signals for imminent mass exploitation.
Any Exchange server not yet running the patched builds from August 11, 2026, should be treated as imminently at risk. Confirming the build version takes under 30 seconds: run Get-ExchangeDiagnosticInfo in the Exchange Management Shell and compare the returned build number against the patched thresholds listed in the remediation section.
Briefings like this, every morning before 9am.
Threat intel, active CVEs, and campaign alerts, distilled for practitioners. 50,000+ subscribers. No noise.
Discovery, Attribution, and Threat Actor Risk
Orange Tsai of DEVCORE discovered and reported CVE-2026-62911 as part of a broader Exchange attack surface research program. DEVCORE has disclosed multiple critical Exchange vulnerabilities over the past four years, including the ProxyLogon chain (CVE-2021-26855) and ProxyRelay, each of which was subsequently exploited by nation-state actors within weeks of public disclosure.
The Pwn2Own Berlin 2026 demonstration chained CVE-2026-62911 with supplementary flaws to achieve SYSTEM-level code execution on a fully patched Exchange server at the competition's time of entry. The three-bug chain earned a $200,000 prize and was disclosed to Microsoft under responsible disclosure terms with a 90-day patch development window.
Nation-state groups with a history of targeting Exchange infrastructure include Chinese-nexus actors tracked as HAFNIUM, associated with ProxyLogon mass exploitation in March 2021, alongside BRONZE BUTLER and multiple North Korean Lazarus Group affiliates. Russian APT actors including COZY BEAR and SANDWORM have leveraged Exchange vulnerabilities for initial access in campaigns targeting NATO member organizations. Any of these groups is capable of operationalizing a public PoC within 24 to 72 hours of publication.
Ransomware operators represent the second highest-probability exploitation class. Exchange RCE delivers direct access to the highest-value data repository in most organizations. Post-exploitation patterns in the ProxyLogon and ProxyNotShell campaigns showed ransomware affiliates deploying web shells, running Active Directory reconnaissance, and establishing Cobalt Strike beacons within hours of gaining Exchange access.
“We demonstrated a pre-authentication remote code execution chain on Microsoft Exchange Server at Pwn2Own Berlin. The root cause is a relay vulnerability where EPA is not enforced on the MRSProxy endpoint.”
Orange Tsai, DEVCORE Research Team, Pwn2Own Berlin 2026
CVE-2026-62911 Exploitation Timeline
The following timeline traces discovery, disclosure, and current exploitation risk for CVE-2026-62911.
Pwn2Own Berlin 2026: $200K payout
Orange Tsai of DEVCORE demonstrates the full pre-auth RCE chain on Exchange Server, collecting a $200,000 payout and triggering responsible disclosure. Microsoft receives full technical details and begins patch development.
August 11, 2026: Microsoft patches
Microsoft releases August 2026 Exchange security updates implementing EPA enforcement on the MRSProxy endpoint. KB5121573 (SE), KB5121574 (2019 CU15), and KB5121576 (2016 CU23) ship simultaneously. CVSS 8.0 assigned.
September 1, 2026: PoC published
A functional Python PoC for CVE-2026-62911 is published on GitHub, automating all four phases of the attack chain. Mass exploitation of unpatched Exchange servers is now a high-probability near-term event.
CVE-2026-62911 Indicators of Compromise
The following indicators are derived from the documented attack chain mechanics. No specific attacker C2 infrastructure has been published alongside today's PoC release. Monitor these behavioral patterns to detect exploitation before attacker-specific network indicators become available.
Block or alert on IMailbox_Config6 in Exchange IIS logs immediately. This WCF operation name has no legitimate use case in inbound HTTP requests from external sources and its presence in MRSProxy access logs is a high-confidence exploitation signal.
Apply file integrity monitoring to Exchange IIS virtual directories. New ASPX files created in those directories outside of an Exchange update window should trigger an immediate incident response. The webshell write is the most reliable forensic indicator of a completed attack chain.
Subscribe to unlock Indicators of Compromise
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Sigma Detection Rules for CVE-2026-62911
Two rules cover the webshell execution and persistence phases for CVE-2026-62911. Both carry status: experimental. Validate against your Exchange IIS and endpoint event telemetry before promoting to production.
Rule 1 — Webshell execution: IIS worker process spawning OS child processes in the Exchange application pool context. Near-zero false positives in environments that do not run custom Exchange scripts from IIS workers. Deploy via EDR process creation telemetry.
Rule 2 — Webshell persistence: New ASPX file creation in Exchange IIS virtual directories outside a known update cycle. File integrity monitoring on Exchange IIS paths is a recommended compensating control. The WAF rules below block the vulnerable WCF operation at the network layer before the file write can occur.
Subscribe to unlock Sigma Detection Rules
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Subscribe to unlock Sigma Hunt Queries
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Subscribe to unlock WAF Detection Rules
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
CVE-2026-62911 Remediation Steps
Apply the August 2026 Exchange security update as the primary remediation. The fix enforces Extended Protection for Authentication on the MRSProxy endpoint, which prevents the relay phase of the attack from succeeding. All steps below are compensating controls that reduce risk while patching is in progress.
Subscribe to unlock Remediation & Mitigation steps
Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.
Why CVE-2026-62911 Demands Immediate Action
Microsoft Exchange Server is the highest-value post-compromise target in most enterprise environments. A single Exchange server contains email for the entire organization including privileged communications between executives, legal counsel, and board members, active authentication tokens, calendar data revealing executive schedules, and cached credentials for connected cloud services.
The CVE-2026-62911 attack chain requires no credentials and no user interaction. An attacker with network access to SMB (port 445) on the Exchange server for the coercion phase and HTTPS (port 443) for the MRSProxy relay can complete the full attack in under five minutes. The $200,000 Pwn2Own payout reflects both the difficulty of the chain's discovery and the severity of its impact on a platform used by hundreds of thousands of organizations.
History confirms the urgency. Every major Exchange RCE of the past five years, including ProxyLogon, ProxyShell, ProxyNotShell, and OWASSRF, was exploited at mass scale by ransomware operators and nation-state actors within weeks of public disclosure. In the ProxyLogon case, HAFNIUM began exploitation before Microsoft's patch released. With the August 2026 patch already available for 21 days and a working PoC now public, defenders have no remaining time buffer.
CVE-2026-62911 joins a broader pattern of NTLM relay chains targeting enterprise perimeter services that also affected ServiceNow CVE-2026-18885 last week. The consistent fix across all of these cases is the same: enforce EPA on all WCF services that accept Negotiate authentication, patch before PoC release wherever possible, and deploy process creation monitoring on IIS worker processes as a standing baseline control.
The bottom line
CVE-2026-62911 delivers pre-authentication SYSTEM-level access to Microsoft Exchange Server through a four-step NTLM relay chain, and a working PoC published September 1 puts every unpatched internet-facing Exchange server at immediate mass exploitation risk. Apply the August 11, 2026 security update (KB5121573/KB5121574/KB5121576) within hours. Block /EWS/MrsProxy.svc at the perimeter if cross-forest migration is not in use. Deploy w3wp.exe child process monitoring and file integrity checks on Exchange IIS directories to detect any exploitation that predates your patch window. Every hour of delay increases the probability of an active webshell on your Exchange server.
This analysis is generic. create a free account to score threats like this against your own stack.
Frequently asked questions
What is CVE-2026-62911 and how serious is it?
CVE-2026-62911 is a capture-replay authentication bypass in Microsoft Exchange Server that attackers chain with NTLM relay and a WCF file-write call to achieve remote code execution without any valid credentials. Microsoft assigned a CVSS score of 8.0. A public proof-of-concept exploit published September 1, 2026, requires only network access to an Exchange server and executes the full chain in under five minutes. Any unpatched Exchange server reachable from the internet should be treated as actively at risk until the August 2026 security update is applied.
How does the CVE-2026-62911 attack chain work?
The attack uses four steps. First, the attacker sends a PetitPotam MS-EFSR RPC call to coerce the Exchange server into initiating outbound NTLM authentication to an attacker-controlled SMB listener. Second, the attacker relays the captured machine account credential to Exchange's MRSProxy WCF endpoint, which accepts the relay because it does not enforce Extended Protection for Authentication channel binding. Third, the session calls IMailbox_Config6 to write an ASPX webshell to an IIS-accessible Exchange directory. Fourth, the attacker requests the webshell URL and executes arbitrary commands with Exchange service account or SYSTEM privileges.
Which Exchange Server versions are affected by CVE-2026-62911?
The vulnerability affects Exchange Server 2016 Cumulative Update 23 (builds before 15.1.2507.72), Exchange Server 2019 Cumulative Update 14 (builds before 15.2.1544.44), Exchange Server 2019 Cumulative Update 15 (builds before 15.2.1748.49), and Exchange Server Subscription Edition RTM (builds before 15.2.2562.46). Exchange 2016 reached end of support in October 2025 and its patch ships only through Extended Security Updates. Exchange Online is not affected.
Has CVE-2026-62911 been exploited in the wild?
As of September 1, 2026, no confirmed in-the-wild exploitation has been publicly reported. However, the public PoC publishes the complete exploit chain with working code, which typically precedes mass exploitation by 48 to 72 hours. Nation-state actors and ransomware operators consistently exploit Exchange RCE within days of PoC release. The combination of a working PoC, a large unpatched population, and the high value of Exchange mailbox data makes this a high-probability near-term exploitation event.
How do I patch Exchange Server against CVE-2026-62911?
Apply the August 2026 Exchange security update from Microsoft's Exchange team blog. For Exchange 2019 CU15, apply KB5121574 to reach build 15.2.1748.49. For Exchange 2019 CU14, apply KB5121574 to reach build 15.2.1544.44. For Exchange SE RTM, apply KB5121573 to reach build 15.2.2562.46. For Exchange 2016 CU23, apply KB5121576 to reach build 15.1.2507.72 via Extended Security Updates. After patching, verify the MRSProxy endpoint enforces EPA by checking that the 401 challenge includes channel binding tokens.
What is the MRSProxy service and why is it vulnerable in CVE-2026-62911?
MRSProxy (Mailbox Replication Service Proxy) is an Exchange WCF service at /EWS/MrsProxy.svc used for cross-forest mailbox migration. In unpatched versions it accepts Negotiate authentication over HTTP but does not enforce Extended Protection for Authentication (EPA) channel binding. EPA binds authentication tokens to the specific TLS channel, preventing an attacker from capturing NTLM credentials over one channel and replaying them over a different connection. Without EPA, MRSProxy cannot detect the relay and authenticates the presented machine account credential as legitimate.
Does enabling Extended Protection for Authentication fix CVE-2026-62911?
Enabling EPA on Exchange virtual directories is the core fix that the August 2026 patch implements. If your organization already enforced EPA on all Exchange virtual directories before this patch, the relay phase of the attack chain cannot succeed. However, manually configuring EPA without the full security update may not protect all components of the chain. Microsoft's guidance is to apply the security update, which configures EPA correctly alongside other hardening. After updating, run the Exchange Health Checker script to verify EPA state across all virtual directories.
How do I detect CVE-2026-62911 exploitation attempts?
Monitor for three indicators. First, watch for new ASPX files created in Exchange IIS virtual directories outside normal update windows. Second, alert on the IIS worker process w3wp.exe spawning child processes such as cmd.exe or powershell.exe in the Exchange application pool context. Third, search Exchange IIS access logs for the string IMailbox_Config6 in any POST body directed at /EWS/MrsProxy.svc from external source IPs. The Sigma and WAF rules in this post cover all three detection surfaces and can be deployed immediately.
Sources & references
- Microsoft, Released: August 2026 Exchange Server Security Updates (August 11, 2026)
- GBHackers, PoC Released for Microsoft Exchange CVE-2026-62911 Pre-Auth RCE Attack Chain (September 1, 2026)
- Zero Day Initiative, The August 2026 Security Update Review (August 11, 2026)
- Sploitus, Microsoft Exchange Server 2019 PoC exploit for CVE-2026-62911 (September 1, 2026)
Free resources
Critical CVE Reference Card 2025–2026
25 actively exploited vulnerabilities with CVSS scores, exploit status, and patch availability. Print it, pin it, share it with your SOC team.
Ransomware Incident Response Playbook
Step-by-step 24-hour IR checklist covering detection, containment, eradication, and recovery. Built for SOC teams, IR leads, and CISOs.
Get threat intel before your inbox does.
50,000+ security professionals read Decryption Digest for early warnings on zero-days, ransomware, and nation-state campaigns. Free, daily, no spam.
Unsubscribe anytime. We never sell your data.

Founder & Cybersecurity Evangelist, Decryption Digest
Cybersecurity professional with expertise in threat intelligence, vulnerability research, and enterprise security. Covers zero-days, ransomware, and nation-state operations for 50,000+ security professionals every morning.
