Overview
CVE-2025-33073 is an improper access control vulnerability (CWE-284) in the Windows SMB
Client. It allows an authenticated attacker to elevate privileges to
NT AUTHORITY\SYSTEM over a network by abusing flaws in how the client
handles coerced authentication and target name validation (particularly with marshaled
DNS records and NTLM reflection).
The issue effectively revives certain NTLM reflection techniques that were previously considered mitigated. It was patched by Microsoft in the June 2025 security updates and later added to the CISA KEV catalog due to confirmed active exploitation.
Affected versions
Affects multiple Windows client and server editions, including:
- Windows 10
- Windows 11 (up to 24H2)
- Windows Server 2016–2025 (various builds)
The vulnerability requires the target to be domain-joined or in an environment where SMB signing is not enforced on the client side. Patches are available via the June 2025 Patch Tuesday.
Technical breakdown (root cause)
The root cause lies in the SMB client's (mrxsmb.sys) handling of
authentication context initialization and target name validation during coerced SMB
connections.
When an attacker coerces a victim machine (e.g., via UNC path, LLMNR/NBNS poisoning, or
tools like PetitPotam) to connect to a malicious SMB server, the client performs
NTLM/Kerberos authentication. Due to improper validation of marshaled target information
in DNS records, the client can be tricked into treating the remote connection as a local
one. This leads to reflection of the authentication context (including high-privilege
tokens such as from lsass.exe running as SYSTEM) back to the local system.
The flaw bypasses previous NTLM reflection mitigations when SMB signing is not enforced. Researchers described it as enabling authenticated remote code execution as SYSTEM in many practical scenarios.
Attack chain
-
Attacker coerces the victim host (often
lsass.exeor another high-priv process) to initiate an SMB connection to attacker-controlled infrastructure (e.g., via malicious link, WebDAV, or name resolution poisoning). - Malicious SMB server manipulates the authentication flow and target name.
- The Windows SMB client reflects the authentication (NTLM or Kerberos ticket) in a way that allows local impersonation.
- Attacker achieves SYSTEM-level privileges on the target, enabling credential dumping, lateral movement, or further compromise.
Exploitation often combines with existing tools for coercion and relay. Public PoCs appeared after the patch, with active exploitation confirmed later in 2025.
Detection guidance
- Monitor for unusual SMB client connections (especially coerced ones) to external or suspicious hosts.
- Look for anomalous NTLM authentication attempts, reflection patterns, or use of marshaled target information in DNS/SMB traffic.
- Detect processes (e.g.,
lsass) initiating outbound SMB connections unexpectedly. - Endpoint detection for privilege escalation indicators following SMB activity.
- Network signatures for known coercion techniques (PetitPotam-like) combined with SMBv1/v2/v3 traffic lacking signing.
Enforcing SMB signing significantly raises the bar for exploitation.
Indicators of compromise
- Malicious UNC paths or links triggering SMB connections.
- DNS records with specific marshaled target information used in reflection attacks.
- Command lines or scripts associated with coercion tools (e.g., variants of PetitPotam).
- Post-exploitation indicators: SAM hive dumps, SYSTEM-level process creation shortly after SMB activity.
Consult Microsoft advisories and CISA KEV for updated hashes and network indicators.
Mitigation
- Apply the June 2025 Windows security updates immediately.
- Enforce SMB signing on both client and server sides across the environment (Group Policy: "Microsoft network client/server: Digitally sign communications (always)").
- Disable or restrict unnecessary name resolution protocols (LLMNR, NBT-NS) and implement mitigations like WPAD protection.
- Limit exposure of high-privilege processes to coerced authentication.
- Use network segmentation and monitor for SMB traffic anomalies.
- Consider application control and Credential Guard features where applicable.
This vulnerability highlights the ongoing risks in environments without strict SMB signing policies.