2020-11-17 21:19:30 +01:00
[ metadata ]
creation_date = "2020/10/19"
2023-01-04 09:30:07 -05:00
integration = [ "endpoint" , "windows" ]
2020-11-17 21:19:30 +01:00
maturity = "production"
2022-08-24 10:38:49 -06:00
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
min_stack_version = "8.3.0"
2023-03-05 09:41:19 -09:00
updated_date = "2023/02/22"
2020-11-17 21:19:30 +01:00
[ rule ]
author = [ "Elastic" ]
description = "" "
2020-12-18 12:46:16 -09:00
Identifies suspicious command execution (cmd) via Windows Management Instrumentation (WMI) on a remote host. This could
be indicative of adversary lateral movement.
2020-11-17 21:19:30 +01:00
" ""
from = "now-9m"
2022-10-19 08:27:44 -07:00
index = [ "logs-endpoint.events.*" , "winlogbeat-*" , "logs-windows.*" , "endgame-*" ]
2020-11-17 21:19:30 +01:00
language = "eql"
2021-03-03 22:12:11 -09:00
license = "Elastic License v2"
2020-11-17 21:19:30 +01:00
name = "Suspicious Cmd Execution via WMI"
2022-07-18 15:41:32 -04:00
note = "" "## Setup
2022-04-01 15:27:08 -08:00
If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2, events will not define `event.ingested` and default fallback for EQL rules was not added until 8.2, so you will need to add a custom pipeline to populate `event.ingested` to @timestamp for this rule to work.
" ""
2020-11-17 21:19:30 +01:00
risk_score = 47
rule_id = "12f07955-1674-44f7-86b5-c35da0a6f41a"
severity = "medium"
2022-10-19 08:27:44 -07:00
tags = [ "Elastic" , "Host" , "Windows" , "Threat Detection" , "Execution" , "Elastic Endgame" ]
2021-02-16 10:52:48 -09:00
timestamp_override = "event.ingested"
2020-11-17 21:19:30 +01:00
type = "eql"
query = '' '
2023-03-05 09:41:19 -09:00
process where host.os.type == "windows" and event.type == "start" and
2021-02-04 10:23:32 -05:00
process.parent.name : "WmiPrvSE.exe" and process.name : "cmd.exe" and
process.args : "\\\\127.0.0.1\\*" and process.args : ("2>&1", "1>")
2020-11-17 21:19:30 +01:00
' ''
[ [ rule . threat ] ]
framework = "MITRE ATT&CK"
[ [ rule . threat . technique ] ]
id = "T1047"
name = "Windows Management Instrumentation"
reference = "https://attack.mitre.org/techniques/T1047/"
[ rule . threat . tactic ]
2020-12-18 12:46:16 -09:00
id = "TA0002"
name = "Execution"
reference = "https://attack.mitre.org/tactics/TA0002/"
2021-03-03 22:12:11 -09:00