CVE-2026-45498 Sumo Logic CSE · Sumo

Detect Microsoft Defender Denial of Service Vulnerability (CVE-2026-45498) in Sumo Logic CSE

CVE-2026-45498 is a Denial of Service vulnerability in Microsoft Defender. Exploitation can cause Defender to crash, hang, or become unresponsive, effectively disabling endpoint protection on affected hosts. This vulnerability is listed in the CISA Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Attackers may leverage this to disable security tooling prior to follow-on intrusion activity.

MITRE ATT&CK

Tactic
Defense Evasion Impact

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=windows/events OR _sourceCategory=endpoint/defender
| where _sourceName matches "*Windows Defender*" OR _sourceName matches "*Microsoft-Windows-Windows Defender*"
| json auto
| where EventID in ("5001", "5007", "5010", "5012", "2004", "7034", "7031") or (message contains "Defender" and (message contains "stopped" or message contains "disabled" or message contains "crashed" or message contains "failed"))
| eval severity_level = if(EventID in ("5001", "5010", "5012", "7034", "7031"), "HIGH", "MEDIUM")
| timeslice 15m
| stats count as event_count, values(EventID) as event_ids, values(message) as messages by _timeslice, Computer, severity_level
| where event_count >= 1
| sort by _timeslice desc
high severity medium confidence

Sumo Logic query detecting Microsoft Defender service disruptions and anomalous configuration changes associated with CVE-2026-45498 exploitation. Monitors Windows Defender operational events for disable, crash, and service failure indicators.

Data Sources

Sumo Logic Windows Event Log SourceSumo Logic Endpoint Collection

Required Tables

windows/eventsendpoint/defender

False Positives & Tuning

  • Automated patch deployment temporarily disabling Defender real-time protection
  • Antivirus exclusion updates triggering configuration change events
  • Group Policy enforcement changing Defender settings across the environment
  • Virtualization platform snapshots causing service interruptions

Other platforms for CVE-2026-45498


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 1Simulate Defender Real-Time Protection Disable Event

    Expected signal: Windows Defender Operational EventID 5001 (disabled) followed by EventID 5000 (enabled); DeviceEvents ActionType AntivirusDisabled in MDE telemetry

  2. Test 2Force MsMpEng Process Restart Sequence

    Expected signal: System EventLog EventIDs 7036 (service state changed), 7034 (if crash simulated) for WinDefend service; multiple MsMpEng.exe process start events in DeviceProcessEvents

  3. Test 3Defender Configuration Tampering via Registry

    Expected signal: Windows Defender Operational EventID 5007 (configuration changed); registry modification event in DeviceRegistryEvents for HKLM\SOFTWARE\Policies\Microsoft\Windows Defender

  4. Test 4Generate Windows Error Reporting Artifact for MsMpEng

    Expected signal: Process access event against MsMpEng.exe in DeviceEvents (ActionType OpenProcess); file creation event for .dmp file; procdump.exe process creation with MsMpEng PID as argument

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections