Sysmon service started or stopped.
Sysmon being stopped is a defense evasion technique — attackers disable Sysmon to blind EDR and SIEM. Any unexpected stop of Sysmon warrants immediate investigation.
Alert: State=Stopped during non-maintenance windows. Alert: service state change by non-SYSTEM accounts. Correlate with 7036 (System log) for service state changes.
ImageCommandLineParentImageUserHashes | Tactic | Technique |
|---|---|
| Defense Evasion | Disable or Modify Tools (T1562.001) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
title: Sysmon Service Stopped
status: stable
description: Sysmon service stopped — defense evasion
author: theadminstack.com
date: 2026/05/16
logsource:
product: windows
service: sysmon
detection:
selection:
EventID: 4
State: 'Stopped'
condition: selection
falsepositives:
- Planned maintenance
level: critical
tags:
- attack.defense_evasion
- attack.t1562.001
Event
| where EventLog == "Microsoft-Windows-Sysmon/Operational" and EventID == 4 // Sysmon service state changed
// EventData holds: Image, CommandLine, ParentImage, User, Hashes
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=4
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# Sysmon service state changed — add EventData fields: Image, CommandLine, ParentImage, User`
Sysmon service state changed. Sysmon service started or stopped.
Event 4 is written to the Microsoft-Windows-Sysmon/Operational channel by Microsoft-Windows-Sysmon. Requires Sysmon installed with a config that logs this event (e.g. SwiftOnSecurity / Olaf Hartong).
Event 4 is associated with: Disable or Modify Tools (T1562.001).
Alert: State=Stopped during non-maintenance windows. Alert: service state change by non-SYSTEM accounts. Correlate with 7036 (System log) for service state changes.