Potential Credential Access via Renamed COM+ Services DLL

Identifies suspicious renamed COMSVCS.DLL Image Load, which exports the MiniDump function that can be used to dump a process memory. This may indicate an attempt to dump LSASS memory while bypassing command-line based detection in preparation for credential access.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2021/10/17"
  3integration = ["windows"]
  4maturity = "production"
  5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
  6min_stack_version = "8.3.0"
  7updated_date = "2024/03/08"
  8
  9[transform]
 10[[transform.osquery]]
 11label = "Osquery - Retrieve DNS Cache"
 12query = "SELECT * FROM dns_cache"
 13
 14[[transform.osquery]]
 15label = "Osquery - Retrieve All Services"
 16query = "SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"
 17
 18[[transform.osquery]]
 19label = "Osquery - Retrieve Services Running on User Accounts"
 20query = """
 21SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services WHERE
 22NOT (user_account LIKE '%LocalSystem' OR user_account LIKE '%LocalService' OR user_account LIKE '%NetworkService' OR
 23user_account == null)
 24"""
 25
 26[[transform.osquery]]
 27label = "Osquery - Retrieve Service Unsigned Executables with Virustotal Link"
 28query = """
 29SELECT concat('https://www.virustotal.com/gui/file/', sha1) AS VtLink, name, description, start_type, status, pid,
 30services.path FROM services JOIN authenticode ON services.path = authenticode.path OR services.module_path =
 31authenticode.path JOIN hash ON services.path = hash.path WHERE authenticode.result != 'trusted'
 32"""
 33
 34[rule]
 35author = ["Elastic"]
 36description = """
 37Identifies suspicious renamed COMSVCS.DLL Image Load, which exports the MiniDump function that can be used to dump a
 38process memory. This may indicate an attempt to dump LSASS memory while bypassing command-line based detection in
 39preparation for credential access.
 40"""
 41from = "now-9m"
 42index = ["winlogbeat-*", "logs-windows.sysmon_operational-*"]
 43language = "eql"
 44license = "Elastic License v2"
 45name = "Potential Credential Access via Renamed COM+ Services DLL"
 46note = """## Triage and analysis
 47
 48### Investigating Potential Credential Access via Renamed COM+ Services DLL
 49
 50COMSVCS.DLL is a Windows library that exports the MiniDump function, which can be used to dump a process memory. Adversaries may attempt to dump LSASS memory using a renamed COMSVCS.DLL to bypass command-line based detection and gain unauthorized access to credentials.
 51
 52This rule identifies suspicious instances of rundll32.exe loading a renamed COMSVCS.DLL image, which can indicate potential abuse of the MiniDump function for credential theft.
 53
 54> **Note**:
 55> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/master/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
 56
 57### Possible investigation steps
 58
 59- 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.
 60- Investigate any abnormal behavior by the subject process, such as network connections, registry or file modifications, and any spawned child processes.
 61- Identify the process that created the DLL using file creation events.
 62   - Inspect the file for useful metadata, such as file size and creation or modification time.
 63- Examine the host for derived artifacts that indicate suspicious activities:
 64  - Analyze the process executable and DLL using a private sandboxed analysis system.
 65  - Observe and collect information about the following activities in both the sandbox and the alert subject host:
 66    - Attempts to contact external domains and addresses.
 67      - Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process's `process.entity_id`.
 68      - Examine the DNS cache for suspicious or anomalous entries.
 69        - $osquery_0
 70    - Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
 71    - Examine the host services for suspicious or anomalous entries.
 72      - $osquery_1
 73      - $osquery_2
 74      - $osquery_3
 75  - Retrieve the files' SHA-256 hash values using the PowerShell `Get-FileHash` cmdlet and search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
 76- Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts.
 77- Look for the presence of relevant artifacts on other systems. Identify commonalities and differences between potentially compromised systems.
 78
 79### False positive analysis
 80
 81- False positives may include legitimate instances of rundll32.exe loading a renamed COMSVCS.DLL image for non-malicious purposes, such as during software development, testing, or troubleshooting.
 82
 83### Related Rules
 84
 85- Potential Credential Access via LSASS Memory Dump - 9960432d-9b26-409f-972b-839a959e79e2
 86- Suspicious Module Loaded by LSASS - 3a6001a0-0939-4bbe-86f4-47d8faeb7b97
 87- Suspicious Lsass Process Access - 128468bf-cab1-4637-99ea-fdf3780a4609
 88- LSASS Process Access via Windows API - ff4599cb-409f-4910-a239-52e4e6f532ff
 89
 90### Response and Remediation
 91
 92- Initiate the incident response process based on the outcome of the triage.
 93  - If malicious activity is confirmed, perform a broader investigation to identify the scope of the compromise and determine the appropriate remediation steps.
 94- Implement Elastic Endpoint Security to detect and prevent further post exploitation activities in the environment.
 95   - Contain the affected system by isolating it from the network to prevent further spread of the attack.
 96- If the triage identified malware, search the environment for additional compromised hosts.
 97  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 98  - Stop suspicious processes.
 99  - Immediately block the identified indicators of compromise (IoCs).
100  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
101- Remove and block malicious artifacts identified during triage.
102- Restore the affected system to its operational state by applying any necessary patches, updates, or configuration changes.
103- 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.
104- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
105- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
106- 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).
107"""
108references = ["https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/"]
109risk_score = 73
110rule_id = "c5c9f591-d111-4cf8-baec-c26a39bc31ef"
111setup = """## Setup
112
113You will need to enable logging of ImageLoads in your Sysmon configuration to include COMSVCS.DLL by Imphash or Original
114File Name.
115"""
116severity = "high"
117tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Credential Access", "Tactic: Defense Evasion", "Data Source: Sysmon"]
118type = "eql"
119
120query = '''
121sequence by process.entity_id with maxspan=1m
122 [process where host.os.type == "windows" and event.category == "process" and
123    process.name : "rundll32.exe"]
124 [process where host.os.type == "windows" and event.category == "process" and event.dataset : "windows.sysmon_operational" and event.code == "7" and
125   (file.pe.original_file_name : "COMSVCS.DLL" or file.pe.imphash : "EADBCCBB324829ACB5F2BBE87E5549A8") and
126    /* renamed COMSVCS */
127    not file.name : "COMSVCS.DLL"]
128'''
129
130
131[[rule.threat]]
132framework = "MITRE ATT&CK"
133[[rule.threat.technique]]
134id = "T1003"
135name = "OS Credential Dumping"
136reference = "https://attack.mitre.org/techniques/T1003/"
137[[rule.threat.technique.subtechnique]]
138id = "T1003.001"
139name = "LSASS Memory"
140reference = "https://attack.mitre.org/techniques/T1003/001/"
141
142
143
144[rule.threat.tactic]
145id = "TA0006"
146name = "Credential Access"
147reference = "https://attack.mitre.org/tactics/TA0006/"
148
149[[rule.threat]]
150framework = "MITRE ATT&CK"
151[[rule.threat.technique]]
152id = "T1218"
153name = "System Binary Proxy Execution"
154reference = "https://attack.mitre.org/techniques/T1218/"
155[[rule.threat.technique.subtechnique]]
156id = "T1218.011"
157name = "Rundll32"
158reference = "https://attack.mitre.org/techniques/T1218/011/"
159
160
161
162[rule.threat.tactic]
163id = "TA0005"
164name = "Defense Evasion"
165reference = "https://attack.mitre.org/tactics/TA0005/"

Triage and analysis

Investigating Potential Credential Access via Renamed COM+ Services DLL

COMSVCS.DLL is a Windows library that exports the MiniDump function, which can be used to dump a process memory. Adversaries may attempt to dump LSASS memory using a renamed COMSVCS.DLL to bypass command-line based detection and gain unauthorized access to credentials.

This rule identifies suspicious instances of rundll32.exe loading a renamed COMSVCS.DLL image, which can indicate potential abuse of the MiniDump function for credential theft.

Note: This investigation guide uses the Osquery Markdown Plugin introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.

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 any abnormal behavior by the subject process, such as network connections, registry or file modifications, and any spawned child processes.
  • Identify the process that created the DLL using file creation events.
    • Inspect the file for useful metadata, such as file size and creation or modification time.
  • Examine the host for derived artifacts that indicate suspicious activities:
    • Analyze the process executable and DLL using a private sandboxed analysis system.
    • Observe and collect information about the following activities in both the sandbox and the alert subject host:
      • Attempts to contact external domains and addresses.
        • Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process's process.entity_id.
        • Examine the DNS cache for suspicious or anomalous entries.
          • $osquery_0
      • Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
      • Examine the host services for suspicious or anomalous entries.
        • $osquery_1
        • $osquery_2
        • $osquery_3
    • Retrieve the files' SHA-256 hash values using the PowerShell Get-FileHash cmdlet and search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
  • Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts.
  • Look for the presence of relevant artifacts on other systems. Identify commonalities and differences between potentially compromised systems.

False positive analysis

  • False positives may include legitimate instances of rundll32.exe loading a renamed COMSVCS.DLL image for non-malicious purposes, such as during software development, testing, or troubleshooting.
  • Potential Credential Access via LSASS Memory Dump - 9960432d-9b26-409f-972b-839a959e79e2
  • Suspicious Module Loaded by LSASS - 3a6001a0-0939-4bbe-86f4-47d8faeb7b97
  • Suspicious Lsass Process Access - 128468bf-cab1-4637-99ea-fdf3780a4609
  • LSASS Process Access via Windows API - ff4599cb-409f-4910-a239-52e4e6f532ff

Response and Remediation

  • Initiate the incident response process based on the outcome of the triage.
    • If malicious activity is confirmed, perform a broader investigation to identify the scope of the compromise and determine the appropriate remediation steps.
  • Implement Elastic Endpoint Security to detect and prevent further post exploitation activities in the environment.
    • Contain the affected system by isolating it from the network to prevent further spread of the attack.
  • 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.
  • Restore the affected system to its operational state by applying any necessary patches, updates, or configuration changes.
  • 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

to-top