CVE-2026-45498 Elastic Security · Elastic

Detect Microsoft Defender Denial of Service Vulnerability (CVE-2026-45498) in Elastic Security

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

Elastic Detection Query

Elastic Security (Elastic)
eql
sequence by host.name with maxspan=1h
  [process where event.action == "start" and process.name : "MsMpEng.exe"] by host.name
  [process where event.action == "stop" and process.name : "MsMpEng.exe"] by host.name
  [process where event.action == "start" and process.name : "MsMpEng.exe"] by host.name
| head 100

/* Alternative: service crash and restart pattern */
/* 
any where
  (
    (event.provider == "Microsoft-Windows-Windows Defender" and event.code in ("5001", "5007", "5010", "5012", "2004"))
    or
    (event.provider == "Service Control Manager" and event.code in ("7034", "7031") and message : "*Defender*")
  )
  and not user.name : ("SYSTEM", "NT AUTHORITY\\SYSTEM")
*/
high severity medium confidence

EQL sequence detection for Microsoft Defender process stop/start cycles indicating potential DoS exploitation of CVE-2026-45498. Detects rapid restart sequences of the MsMpEng.exe process within a 1-hour window.

Data Sources

Elastic Endpoint SecurityWindows Event Logs via Elastic Agent

Required Tables

logs-endpoint.events.process-*winlogbeat-*

False Positives & Tuning

  • Windows Update or patch cycles that legitimately restart Defender
  • Elastic Defend or third-party EDR conflicts causing Defender restarts
  • System hibernation or sleep cycles triggering process restart events
  • Administrative scripts performing Defender service maintenance

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