CVE-2025-33073

8.8 HIGH CISA KEV

📋 TL;DR

CVE-2025-33073 is an improper access control vulnerability in Windows SMB that allows authenticated attackers to elevate privileges over a network. This affects organizations running vulnerable Windows systems with SMB enabled. Attackers can exploit this to gain higher privileges than intended.

💻 Affected Systems

Products:
  • Windows Server
  • Windows Client
Versions: Specific versions not yet detailed in public sources
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Requires SMB to be enabled and accessible. Systems with SMB disabled or blocked are not vulnerable.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Full domain compromise with administrative access to all connected systems and data exfiltration.

🟠

Likely Case

Lateral movement within the network leading to data theft, ransomware deployment, or persistent access.

🟢

If Mitigated

Limited to initial access point with no privilege escalation possible.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: HIGH

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Requires authenticated access to the SMB service. Exploitation appears straightforward once authenticated.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Check Microsoft Security Update Guide for specific KB numbers

Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-33073

Restart Required: Yes

Instructions:

1. Apply the latest Windows security updates from Microsoft. 2. Restart affected systems. 3. Verify the patch is installed via Windows Update history.

🔧 Temporary Workarounds

Disable SMBv1

windows

Disables the vulnerable SMB version 1 protocol

Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol

Block SMB ports at firewall

windows

Blocks SMB network traffic to prevent remote exploitation

New-NetFirewallRule -DisplayName "Block SMB" -Direction Inbound -Protocol TCP -LocalPort 445 -Action Block

🧯 If You Can't Patch

  • Implement network segmentation to isolate SMB traffic
  • Enforce strict access controls and monitor SMB authentication logs

🔍 How to Verify

Check if Vulnerable:

Check if SMB is enabled and accessible on ports 139/445. Review system for missing security patches.

Check Version:

systeminfo | findstr /B /C:"OS Name" /C:"OS Version"

Verify Fix Applied:

Verify the latest Windows security updates are installed via Windows Update or Get-Hotfix.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SMB authentication attempts
  • Privilege escalation events in Windows Security logs
  • Multiple failed SMB connections from single source

Network Indicators:

  • SMB traffic to unexpected destinations
  • Anomalous SMB protocol usage patterns

SIEM Query:

source="windows_security" EventCode=4625 OR EventCode=4672 | stats count by src_ip, user

🔗 References

📤 Share & Export