Google Chronicle unknown experimental yara-l

abusing_windows_telemetry_compattelrunnerexeaudit_rule

Detects abusing of CompatTelRunner.exe for persistance. License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md.

View Source

Detection Logic

rule abusing_windows_telemetry_compattelrunnerexeaudit_rule {
 meta:
    author = "Den Iuzvyk"
    description = "Detects abusing of CompatTelRunner.exe for persistance.  License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md."
    reference = "https://tdm.socprime.com/tdm/info/0ZXi5CE8Zkwb"
    version = "0.01"
    created = "2020/04/09"
    category = "sysmon"
    product = "windows"
    mitre = "persistence, t1053"

  events:
($selection.metadata.product_event_type = "4657" and (re.regex($selection.target.registry.registry_value_data, `.*SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\TelemetryController.*\\Command.*`) or re.regex($selection.target.file.full_path, `.*SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\TelemetryController.*\\Command.*`)))

  condition:
    $selection
}

Field Validations

Loading…

Comments (0)

Loading comments...