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", "m365_defender", "sentinel_one_cloud_funnel"]
4maturity = "production"
5updated_date = "2024/10/15"
6min_stack_version = "8.14.0"
7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
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.process-*", "logs-windows.sysmon_operational-*", "endgame-*", "logs-m365_defender.event-*", "logs-sentinel_one_cloud_funnel.*"]
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"""
68references = [
69 "https://www.fireeye.com/blog/threat-research/2017/08/monitoring-windows-console-activity-part-one.html",
70]
71risk_score = 73
72rule_id = "05b358de-aa6d-4f6c-89e6-78f74018b43b"
73severity = "high"
74tags = [
75 "Domain: Endpoint",
76 "OS: Windows",
77 "Use Case: Threat Detection",
78 "Tactic: Execution",
79 "Tactic: Defense Evasion",
80 "Tactic: Privilege Escalation",
81 "Resources: Investigation Guide",
82 "Data Source: Elastic Endgame",
83 "Data Source: Elastic Defend",
84 "Data Source: Sysmon",
85 "Data Source: Microsoft Defender for Endpoint",
86 "Data Source: SentinelOne",
87]
88timestamp_override = "event.ingested"
89type = "eql"
90
91query = '''
92process where host.os.type == "windows" and event.type == "start" and
93 process.name : "conhost.exe" and
94 process.parent.name : ("lsass.exe", "services.exe", "smss.exe", "winlogon.exe", "explorer.exe", "dllhost.exe", "rundll32.exe",
95 "regsvr32.exe", "userinit.exe", "wininit.exe", "spoolsv.exe", "ctfmon.exe") and
96 not (process.parent.name : "rundll32.exe" and
97 process.parent.args : ("?:\\Windows\\Installer\\MSI*.tmp,zzzzInvokeManagedCustomActionOutOfProc",
98 "?:\\WINDOWS\\system32\\PcaSvc.dll,PcaPatchSdbTask",
99 "?:\\WINDOWS\\system32\\davclnt.dll,DavSetCookie"))
100'''
101
102
103[[rule.threat]]
104framework = "MITRE ATT&CK"
105[[rule.threat.technique]]
106id = "T1059"
107name = "Command and Scripting Interpreter"
108reference = "https://attack.mitre.org/techniques/T1059/"
109
110
111[rule.threat.tactic]
112id = "TA0002"
113name = "Execution"
114reference = "https://attack.mitre.org/tactics/TA0002/"
115[[rule.threat]]
116framework = "MITRE ATT&CK"
117[[rule.threat.technique]]
118id = "T1036"
119name = "Masquerading"
120reference = "https://attack.mitre.org/techniques/T1036/"
121
122
123[rule.threat.tactic]
124id = "TA0005"
125name = "Defense Evasion"
126reference = "https://attack.mitre.org/tactics/TA0005/"
127[[rule.threat]]
128framework = "MITRE ATT&CK"
129[[rule.threat.technique]]
130id = "T1055"
131name = "Process Injection"
132reference = "https://attack.mitre.org/techniques/T1055/"
133
134
135[rule.threat.tactic]
136id = "TA0004"
137name = "Privilege Escalation"
138reference = "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
- Execution from Unusual Directory - Command Line
- UAC Bypass Attempt via Elevated COM Internet Explorer Add-On Installer
- UAC Bypass Attempt with IEditionUpgradeManager Elevated COM Interface
- UAC Bypass via Windows Firewall Snap-In Hijack
- Unusual Executable File Creation by a System Critical Process