Conhost Spawned By Suspicious Parent Process
Detects when the Console Window Host (conhost.exe) process is spawned by a suspicious parent process, which could be indicative of code injection.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/08/17"
3integration = ["endpoint", "windows"]
4maturity = "production"
5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
6min_stack_version = "8.3.0"
7updated_date = "2023/10/23"
8
9[rule]
10author = ["Elastic"]
11description = """
12Detects when the Console Window Host (conhost.exe) process is spawned by a suspicious parent process, which could be
13indicative of code injection.
14"""
15from = "now-9m"
16index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*", "endgame-*"]
17language = "eql"
18license = "Elastic License v2"
19name = "Conhost Spawned By Suspicious Parent Process"
20note = """## Triage and analysis
21
22### Investigating Conhost Spawned By Suspicious Parent Process
23
24The Windows Console Host, or `conhost.exe`, is both the server application for all of the Windows Console APIs as well as the classic Windows user interface for working with command-line applications.
25
26Attackers often rely on custom shell implementations to avoid using built-in command interpreters like `cmd.exe` and `PowerShell.exe` and bypass application allowlisting and security features. Attackers commonly inject these implementations into legitimate system processes.
27
28#### Possible investigation steps
29
30- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
31- Investigate abnormal behaviors observed by the subject process, such as network connections, registry or file modifications, and any spawned child processes.
32- Investigate other alerts associated with the user/host during the past 48 hours.
33- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
34- Retrieve the parent process executable and determine if it is malicious:
35 - Use a private sandboxed malware analysis system to perform analysis.
36 - Observe and collect information about the following activities:
37 - Attempts to contact external domains and addresses.
38 - File and registry access, modification, and creation activities.
39 - Service creation and launch activities.
40 - Scheduled task creation.
41 - Use the PowerShell `Get-FileHash` cmdlet to get the files' SHA-256 hash values.
42 - Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
43
44### False positive analysis
45
46- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
47
48### Related rules
49
50- Suspicious Process from Conhost - 28896382-7d4f-4d50-9b72-67091901fd26
51- Suspicious PowerShell Engine ImageLoad - 852c1f19-68e8-43a6-9dce-340771fe1be3
52
53### Response and remediation
54
55- Initiate the incident response process based on the outcome of the triage.
56- Isolate the involved hosts to prevent further post-compromise behavior.
57- If the triage identified malware, search the environment for additional compromised hosts.
58 - Implement temporary network rules, procedures, and segmentation to contain the malware.
59 - Stop suspicious processes.
60 - Immediately block the identified indicators of compromise (IoCs).
61 - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
62- Remove and block malicious artifacts identified during triage.
63- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
64- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
65- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
66- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
67
68"""
69references = [
70 "https://www.fireeye.com/blog/threat-research/2017/08/monitoring-windows-console-activity-part-one.html",
71]
72risk_score = 73
73rule_id = "05b358de-aa6d-4f6c-89e6-78f74018b43b"
74setup="""
75
76If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
77events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
78Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
79`event.ingested` to @timestamp.
80For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
81"""
82severity = "high"
83tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Execution", "Tactic: Defense Evasion", "Tactic: Privilege Escalation", "Resources: Investigation Guide", "Data Source: Elastic Endgame", "Data Source: Elastic Defend"]
84timestamp_override = "event.ingested"
85type = "eql"
86
87query = '''
88process where host.os.type == "windows" and event.type == "start" and
89 process.name : "conhost.exe" and
90 process.parent.name : ("lsass.exe", "services.exe", "smss.exe", "winlogon.exe", "explorer.exe", "dllhost.exe", "rundll32.exe",
91 "regsvr32.exe", "userinit.exe", "wininit.exe", "spoolsv.exe", "ctfmon.exe") and
92 not (process.parent.name : "rundll32.exe" and
93 process.parent.args : ("?:\\Windows\\Installer\\MSI*.tmp,zzzzInvokeManagedCustomActionOutOfProc",
94 "?:\\WINDOWS\\system32\\PcaSvc.dll,PcaPatchSdbTask",
95 "?:\\WINDOWS\\system32\\davclnt.dll,DavSetCookie"))
96'''
97
98
99[[rule.threat]]
100framework = "MITRE ATT&CK"
101[[rule.threat.technique]]
102id = "T1059"
103name = "Command and Scripting Interpreter"
104reference = "https://attack.mitre.org/techniques/T1059/"
105
106
107[rule.threat.tactic]
108id = "TA0002"
109name = "Execution"
110reference = "https://attack.mitre.org/tactics/TA0002/"
111
112[[rule.threat]]
113framework = "MITRE ATT&CK"
114[[rule.threat.technique]]
115id = "T1036"
116name = "Masquerading"
117reference = "https://attack.mitre.org/techniques/T1036/"
118
119
120[rule.threat.tactic]
121id = "TA0005"
122name = "Defense Evasion"
123reference = "https://attack.mitre.org/tactics/TA0005/"
124
125[[rule.threat]]
126framework = "MITRE ATT&CK"
127[[rule.threat.technique]]
128id = "T1055"
129name = "Process Injection"
130reference = "https://attack.mitre.org/techniques/T1055/"
131
132
133[rule.threat.tactic]
134id = "TA0004"
135name = "Privilege Escalation"
136reference = "https://attack.mitre.org/tactics/TA0004/"
Triage and analysis
Investigating Conhost Spawned By Suspicious Parent Process
The Windows Console Host, or conhost.exe
, is both the server application for all of the Windows Console APIs as well as the classic Windows user interface for working with command-line applications.
Attackers often rely on custom shell implementations to avoid using built-in command interpreters like cmd.exe
and PowerShell.exe
and bypass application allowlisting and security features. Attackers commonly inject these implementations into legitimate system processes.
Possible investigation steps
- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
- Investigate abnormal behaviors observed by the subject process, such as network connections, registry or file modifications, and any spawned child processes.
- Investigate other alerts associated with the user/host during the past 48 hours.
- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
- Retrieve the parent process executable and determine if it is malicious:
- Use a private sandboxed malware analysis system to perform analysis.
- Observe and collect information about the following activities:
- Attempts to contact external domains and addresses.
- File and registry access, modification, and creation activities.
- Service creation and launch activities.
- Scheduled task creation.
- Observe and collect information about the following activities:
- Use the PowerShell
Get-FileHash
cmdlet to get the files' SHA-256 hash values.- Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
- Use a private sandboxed malware analysis system to perform analysis.
False positive analysis
- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
Related rules
- Suspicious Process from Conhost - 28896382-7d4f-4d50-9b72-67091901fd26
- Suspicious PowerShell Engine ImageLoad - 852c1f19-68e8-43a6-9dce-340771fe1be3
Response and remediation
- Initiate the incident response process based on the outcome of the triage.
- Isolate the involved hosts to prevent further post-compromise behavior.
- If the triage identified malware, search the environment for additional compromised hosts.
- Implement temporary network rules, procedures, and segmentation to contain the malware.
- Stop suspicious processes.
- Immediately block the identified indicators of compromise (IoCs).
- Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
- Remove and block malicious artifacts identified during triage.
- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
References
Related rules
- Service Control Spawned via Script Interpreter
- Bypass UAC via Event Viewer
- Clearing Windows Console History
- Component Object Model Hijacking
- Disabling Windows Defender Security Settings via PowerShell