CVE-2025-62215 CrowdStrike LogScale · LogScale

Detect CVE-2025-62215 Microsoft Windows Race Condition Exploitation in CrowdStrike LogScale

Detects exploitation attempts of CVE-2025-62215, a race condition vulnerability (CWE-362) in Microsoft Windows. This KEV-listed vulnerability can be abused by attackers to gain elevated privileges or execute arbitrary code by winning a time-of-check to time-of-use (TOCTOU) race condition. Detection focuses on suspicious process creation patterns, handle manipulation, and abnormal thread timing indicative of race condition exploitation.

MITRE ATT&CK

Tactic
Privilege Escalation Execution

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
event_simpleName IN ("ProcessRollup2", "CreateRemoteThreadV2", "HandleDuplicated", "PrivilegeEscalationDetected")
| where ImageFileName matches "(?i)(svchost|lsass|winlogon|services|wininit)\.exe"
    OR ParentBaseFileName matches "(?i)(svchost|services)\.exe"
    AND NOT ImageFileName matches "(?i)(conhost|WerFault|MpCmdRun)\.exe"
| eval event_ts = _time
| stats 
    count() AS burst_count, 
    dc(event_simpleName) AS unique_event_types,
    values(event_simpleName) AS event_types,
    values(ImageFileName) AS images,
    min(_time) AS first_seen,
    max(_time) AS last_seen 
  by aid, UserName
| eval duration_sec = last_seen - first_seen
| where burst_count > 4 AND duration_sec < 45 AND unique_event_types >= 2
| eval risk_level = case(burst_count > 15 AND unique_event_types >= 3, "critical", burst_count > 8, "high", "medium")
| sort - burst_count
| fields first_seen, last_seen, aid, UserName, images, event_types, burst_count, duration_sec, risk_level
high severity medium confidence

CrowdStrike Falcon Query Language detection identifying rapid bursts of process, thread, and handle events involving sensitive Windows system executables, with multiple distinct event types occurring within 45 seconds — pattern consistent with CVE-2025-62215 TOCTOU race condition exploitation.

Data Sources

CrowdStrike Falcon EDR telemetry

Required Tables

ProcessRollup2CreateRemoteThreadV2HandleDuplicatedPrivilegeEscalationDetected

False Positives & Tuning

  • CrowdStrike sensor self-updates or configuration changes that generate multiple process events
  • Legitimate red team or penetration testing activities in authorized engagement windows
  • Windows system restore or recovery operations that transiently access multiple system processes
  • Enterprise software deployment tools performing simultaneous operations on system components

Other platforms for CVE-2025-62215


Testing Methodology

Validate this detection against 3 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 1Simulate Rapid Handle Acquisition on System Process

    Expected signal: Windows Security Event Log entries for EventID 4656 (A handle to an object was requested) and 4658 (The handle to an object was closed) appearing in rapid succession for the svchost process, triggering the burst detection threshold.

  2. Test 2Privilege Escalation Sequence Simulation

    Expected signal: EventID 4688 (process creation) followed by EventID 4672 (special privileges assigned to new logon) within seconds, generating the correlated alert pattern.

  3. Test 3CreateRemoteThread into System Process (Lab Only)

    Expected signal: CrowdStrike CreateRemoteThreadV2 event and Windows EventID 4656 for the target process handle, followed by potential Microsoft Defender ATP alert for suspicious cross-process thread creation.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections