T1562.006 Splunk · SPL

Detect Indicator Blocking in Splunk

Adversaries may attempt to block indicators or events typically captured by sensors from being gathered and analyzed. This includes tampering with Event Tracing for Windows (ETW), disabling crash dumps, modifying syslog configuration, redirecting telemetry, or blocking network traffic to SIEM/logging infrastructure. ETW tampering is particularly impactful as many security tools depend on ETW providers for visibility.

MITRE ATT&CK

Tactic
Defense Evasion
Technique
T1562 Impair Defenses
Sub-technique
T1562.006 Indicator Blocking
Canonical reference
https://attack.mitre.org/techniques/T1562/006/

SPL Detection Query

Splunk (SPL)
spl
(index=wineventlog sourcetype="XmlWinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=1
  (CommandLine="*Set-EtwTraceProvider*" OR CommandLine="*logman stop*" OR CommandLine="*logman delete*" OR CommandLine="*logman update*" OR CommandLine="*Remove-EtwTraceProvider*"))
OR
(index=wineventlog sourcetype="XmlWinEventLog:Microsoft-Windows-Sysmon/Operational" (EventCode=12 OR EventCode=13)
  TargetObject="*CrashControl*CrashDumpEnabled*")
OR
(index=linux sourcetype=syslog ("systemctl stop rsyslog" OR "systemctl stop syslog-ng" OR "service rsyslog stop" OR "service syslog stop" OR "esxcli system syslog"))
| eval BlockingType=case(
    match(_raw, "(?i)(Set-EtwTraceProvider|logman\s+(stop|delete|update)|Remove-EtwTraceProvider)"), "ETW Tampering",
    match(_raw, "(?i)CrashDumpEnabled"), "Crash Dump Disabled",
    match(_raw, "(?i)(rsyslog|syslog-ng|syslog)"), "Syslog Tampering",
    true(), "Other")
| table _time, host, User, EventCode, BlockingType, CommandLine, TargetObject, Details
| sort - _time
high severity high confidence

Detects indicator blocking across Windows (ETW tampering, crash dump registry changes) and Linux (syslog service stops). ETW tampering is a critical indicator as it can blind EDR, AMSI, and other security monitoring that relies on ETW providers.

Data Sources

Process: Process CreationWindows Registry: Windows Registry Key ModificationLinux SyslogSysmon Event ID 1, 12, 13

Required Sourcetypes

XmlWinEventLog:Microsoft-Windows-Sysmon/Operationalsyslog

False Positives & Tuning

  • Performance engineers using logman to manage ETW trace sessions for diagnostics
  • System administrators configuring crash dump settings for disk space management on servers
  • Security teams intentionally modifying ETW providers during tuning or testing
Download portable Sigma rule (.yml)

Other platforms for T1562.006


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 1Stop ETW Trace Session with logman

    Expected signal: Sysmon Event ID 1: logman.exe with CommandLine 'stop EventLog-Application -ets'.

  2. Test 2Disable Crash Dumps via Registry

    Expected signal: Sysmon Event ID 13: Registry value set for CrashControl\CrashDumpEnabled=0. Sysmon Event ID 1: reg.exe process creation.

  3. Test 3Stop rsyslog Service on Linux

    Expected signal: Auditd execve record for systemctl stop rsyslog. Syslog may capture its own stop (depending on timing). MDE DeviceProcessEvents if deployed.

Unlock Pro Content

Get the full detection package for T1562.006 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections