e272800a5d
* Add Mitre sub-technique support to CLI * Add subtechnique enum to schema * Add test to prevent duplicative tactics in mapping
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[metadata]
|
|
creation_date = "2020/10/19"
|
|
maturity = "production"
|
|
updated_date = "2020/10/19"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = "Identifies command shell activity started via RunDLL32, which is commonly abused by attackers to host malicious code."
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*"]
|
|
language = "eql"
|
|
license = "Elastic License"
|
|
name = "Command Shell Activity Started via RunDLL32"
|
|
risk_score = 21
|
|
rule_id = "9ccf3ce0-0057-440a-91f5-870c6ad39093"
|
|
severity = "low"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Execution"]
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where event.type in ("start", "process_started") and
|
|
process.name : ("cmd.exe", "powershell.exe") and
|
|
process.parent.name : "rundll32.exe" and
|
|
/* common FPs can be added here */
|
|
not process.parent.args : "C:\\Windows\\System32\\SHELL32.dll,RunAsNewUser_RunDLL"
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1059"
|
|
name = "Command and Scripting Interpreter"
|
|
reference = "https://attack.mitre.org/techniques/T1059/"
|
|
|
|
[[rule.threat.technique]]
|
|
id = "T1086"
|
|
name = "PowerShell"
|
|
reference = "https://attack.mitre.org/techniques/T1086/"
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0002"
|
|
name = "Execution"
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|
|
|