2020-09-22 13:56:19 +02:00
[ metadata ]
creation_date = "2020/08/17"
maturity = "production"
2021-03-03 22:12:11 -09:00
updated_date = "2021/03/03"
2020-09-22 13:56:19 +02:00
[ rule ]
author = [ "Elastic" ]
description = "" "
2020-09-24 01:03:29 -05:00
Detects when the Console Window Host (conhost.exe) process is spawned by a suspicious parent process, which could be
indicative of code injection.
2020-09-22 13:56:19 +02:00
" ""
2020-09-30 19:16:04 -05:00
from = "now-9m"
2021-01-28 20:53:57 -09:00
index = [ "winlogbeat-*" , "logs-endpoint.events.*" , "logs-windows.*" ]
2020-09-22 13:56:19 +02:00
language = "kuery"
2021-03-03 22:12:11 -09:00
license = "Elastic License v2"
2020-09-22 13:56:19 +02:00
name = "Conhost Spawned By Suspicious Parent Process"
2020-09-24 01:03:29 -05:00
references = [
"https://www.fireeye.com/blog/threat-research/2017/08/monitoring-windows-console-activity-part-one.html" ,
]
2020-09-22 13:56:19 +02:00
risk_score = 73
rule_id = "05b358de-aa6d-4f6c-89e6-78f74018b43b"
severity = "high"
2020-10-26 13:50:45 -05:00
tags = [ "Elastic" , "Host" , "Windows" , "Threat Detection" , "Execution" ]
2021-02-16 10:52:48 -09:00
timestamp_override = "event.ingested"
2020-09-22 13:56:19 +02:00
type = "query"
query = '' '
event.category:process and event.type:(start or process_started) and
process.name:conhost.exe and
process.parent.name:(svchost.exe or lsass.exe or services.exe or smss.exe or winlogon.exe or explorer.exe or dllhost.exe or rundll32.exe or regsvr32.exe or userinit.exe or wininit.exe or spoolsv.exe or wermgr.exe or csrss.exe or ctfmon.exe)
' ''
[ [ rule . threat ] ]
framework = "MITRE ATT&CK"
[ [ rule . threat . technique ] ]
id = "T1059"
2020-09-24 01:03:29 -05:00
name = "Command and Scripting Interpreter"
2020-09-22 13:56:19 +02:00
reference = "https://attack.mitre.org/techniques/T1059/"
[ rule . threat . tactic ]
id = "TA0002"
name = "Execution"
reference = "https://attack.mitre.org/tactics/TA0002/"
2020-09-24 01:03:29 -05:00