T1562.006 Google Chronicle · YARA-L

Detect Indicator Blocking in Google Chronicle

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/

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule indicator_blocking_t1562_006 {
  meta:
    author = "Argus Detection Engineering"
    description = "Detects T1562.006 Indicator Blocking via ETW tampering, crash dump disabling, or syslog service termination"
    severity = "HIGH"
    priority = "HIGH"
    mitre_attack_tactic = "Defense Evasion"
    mitre_attack_technique = "T1562.006"
    reference = "https://attack.mitre.org/techniques/T1562/006/"
    created = "2026-04-21"

  events:
    (
      $e.metadata.event_type = "PROCESS_LAUNCH" and
      (
        re.regex($e.target.process.command_line, `(?i)(Set-EtwTraceProvider|Remove-EtwTraceProvider|logman\s+(stop|delete|update)|EtwEventWrite|NtTraceEvent|NtTraceControl)`) or
        re.regex($e.target.process.command_line, `(?i)(systemctl\s+stop\s+(rsyslog|syslog-ng)|service\s+(rsyslog|syslog)\s+stop|esxcli\s+system\s+syslog)`) or
        re.regex($e.target.process.command_line, `(?i)CrashDumpEnabled`)
      )
    )
    or
    (
      $e.metadata.event_type = "REGISTRY_MODIFICATION" and
      re.regex($e.target.registry.registry_key, `(?i)CrashControl`) and
      re.regex($e.target.registry.registry_value_name, `(?i)(CrashDumpEnabled|NMICrashDump)`)
    )

  condition:
    $e
}
high severity high confidence

Chronicle YARA-L 2.0 rule detecting T1562.006 Indicator Blocking. Matches PROCESS_LAUNCH events with ETW provider manipulation commands (Set/Remove-EtwTraceProvider, logman, ETW API functions), syslog service termination, crash dump disabling via command line, and REGISTRY_MODIFICATION events targeting the CrashControl key for crash dump settings.

Data Sources

Google Chronicle (UDM)Chronicle Forwarder (Windows Sysmon)Chronicle Forwarder (Linux auditd/syslog)

Required Tables

UDM Events (PROCESS_LAUNCH, REGISTRY_MODIFICATION)

False Positives & Tuning

  • Legitimate logman.exe usage by Windows Performance Monitor or SCOM agents collecting ETW-based performance counters
  • Incident response tooling (e.g., KAPE, Velociraptor) that may interact with ETW providers during forensic data collection
  • Hardening scripts that set CrashDumpEnabled=0 on production servers to reduce disk I/O impact during memory pressure events
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