CVE-2026-32202 CrowdStrike LogScale · LogScale

Detect CVE-2026-32202 Microsoft Windows Protection Mechanism Failure in CrowdStrike LogScale

Detects exploitation of CVE-2026-32202, a Microsoft Windows Protection Mechanism Failure vulnerability (CWE-693) listed in CISA KEV. This vulnerability allows attackers to bypass security controls in Windows, potentially enabling privilege escalation, defense evasion, or code execution. Detection focuses on anomalous process behavior, security feature bypass indicators, and suspicious Windows API usage patterns consistent with protection mechanism circumvention.

MITRE ATT&CK

Tactic
Defense Evasion Privilege Escalation Execution

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName in (ProcessRollup2, SyntheticProcessRollup2, RegKeyCreate, RegKeySetValue)
| where event_simpleName in ("ProcessRollup2", "SyntheticProcessRollup2")
  and (
    FileName in ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "rundll32.exe", "regsvr32.exe")
    and not ParentBaseFileName in ("explorer.exe", "svchost.exe", "services.exe", "msiexec.exe")
  )
  or (
    match(CommandLine, /(?i)(SeDebugPrivilege|AdjustTokenPrivileges|NtSetInformationToken|ZwSetInformationToken|BypassUAC|Set-MpPreference|DisableRealtimeMonitoring|DisableAntiSpyware)/)
  )
| union [
  #event_simpleName in (RegKeyCreate, RegKeySetValue)
  | where match(RegKeyPath, /(?i)(Windows\\Defender|SecurityHealthService|WinDefend)/)
  | project timestamp, ComputerName, UserName, RegKeyPath, RegValueName, RegValueType
]
| eval cve = "CVE-2026-32202"
| eval alert = "Windows Protection Mechanism Failure - Bypass Activity"
| stats count() as events, values(FileName) as process_names, values(CommandLine) as commands, values(RegKeyPath) as registry_paths, min(timestamp) as first_seen, max(timestamp) as last_seen by ComputerName, UserName, cve
| where events >= 1
| sort - events
high severity medium confidence

CrowdStrike Falcon LogScale (CQL) detection for CVE-2026-32202 focusing on suspicious process lineage, protection bypass command-line patterns, and Windows Defender registry tampering.

Data Sources

CrowdStrike Falcon EDRFalcon LogScale

Required Tables

ProcessRollup2SyntheticProcessRollup2RegKeyCreateRegKeySetValue

False Positives & Tuning

  • CrowdStrike sensor itself or other security agents modifying Defender registry keys
  • Authorized IT scripts using PowerShell to manage Windows security configuration
  • Software installers that legitimately adjust process token privileges
  • Enterprise management tooling spawning scripting engines for configuration enforcement

Other platforms for CVE-2026-32202


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Disable Windows Defender Real-Time Protection via PowerShell

    Expected signal: Windows Security Event 4688 (process create) for powershell.exe; Sysmon Event 1 with command line containing Set-MpPreference; possible Windows Defender Event 5001 (real-time protection disabled); registry modification under HKLM\SOFTWARE\Microsoft\Windows Defender

  2. Test 2Enable SeDebugPrivilege via Token Manipulation

    Expected signal: Windows Security Event 4703 (token right adjusted) for SeDebugPrivilege; Sysmon Event 1 for powershell.exe process creation; PowerShell ScriptBlock log Event 4104 capturing the command

  3. Test 3Windows Defender Registry Key Tampering

    Expected signal: Windows Security Event 4657 (registry value modified); Sysmon Events 12 and 13 (registry key create/value set) for HKLM\SOFTWARE\Policies\Microsoft\Windows Defender; Windows Security Center Event 5001

  4. Test 4Spawn Scripting Engine from Unusual Parent Process

    Expected signal: Sysmon Event 1 showing cmd.exe with ParentImage=powershell.exe; Windows Security Event 4688 chain; command output in process creation logs

Unlock Pro Content

Get the full detection package for CVE-2026-32202 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections