LSASS Process Access via Windows API
Identifies access attempts to the LSASS handle, which may indicate an attempt to dump credentials from LSASS memory.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2023/03/02"
3integration = ["endpoint", "m365_defender"]
4maturity = "production"
5updated_date = "2024/08/08"
6
7[transform]
8[[transform.osquery]]
9label = "Osquery - Retrieve DNS Cache"
10query = "SELECT * FROM dns_cache"
11
12[[transform.osquery]]
13label = "Osquery - Retrieve All Services"
14query = "SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"
15
16[[transform.osquery]]
17label = "Osquery - Retrieve Services Running on User Accounts"
18query = """
19SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services WHERE
20NOT (user_account LIKE '%LocalSystem' OR user_account LIKE '%LocalService' OR user_account LIKE '%NetworkService' OR
21user_account == null)
22"""
23
24[[transform.osquery]]
25label = "Osquery - Retrieve Service Unsigned Executables with Virustotal Link"
26query = """
27SELECT concat('https://www.virustotal.com/gui/file/', sha1) AS VtLink, name, description, start_type, status, pid,
28services.path FROM services JOIN authenticode ON services.path = authenticode.path OR services.module_path =
29authenticode.path JOIN hash ON services.path = hash.path WHERE authenticode.result != 'trusted'
30"""
31
32
33[rule]
34author = ["Elastic"]
35description = "Identifies access attempts to the LSASS handle, which may indicate an attempt to dump credentials from LSASS memory.\n"
36from = "now-9m"
37index = ["logs-endpoint.events.api-*", "logs-m365_defender.event-*"]
38language = "eql"
39license = "Elastic License v2"
40name = "LSASS Process Access via Windows API"
41note = """## Triage and analysis
42
43### Investigating LSASS Process Access via Windows API
44
45The Local Security Authority Subsystem Service (LSASS) is a critical Windows component responsible for managing user authentication and security policies. Adversaries may attempt to access the LSASS handle to dump credentials from its memory, which can be used for lateral movement and privilege escalation.
46
47This rule identifies attempts to access LSASS by monitoring for specific API calls (OpenProcess, OpenThread) targeting the "lsass.exe" process.
48
49> **Note**:
50> 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.
51
52### Possible investigation steps
53
54- Investigate other alerts associated with the user/host during the past 48 hours.
55- Investigate the process execution chain (parent process tree) of the process that accessed the LSASS handle.
56 - Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
57 - Determine the first time the process executable was seen in the environment and if this behavior happened in the past.
58 - Validate the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
59 - Investigate any abnormal behavior by the subject process, such as network connections, DLLs loaded, registry or file modifications, and any spawned child processes.
60- Assess the access rights (`process.Ext.api.parameters.desired_access`field) requested by the process. This [Microsoft documentation](https://learn.microsoft.com/en-us/windows/win32/procthread/process-security-and-access-rights) may be useful to help the interpretation.
61- If there are traces of LSASS memory being successfully dumped, investigate potentially compromised accounts. Analysts can do this by searching for login events (e.g., 4624) to the target host.
62- Examine the host for derived artifacts that indicate suspicious activities:
63 - Analyze the executables of the processes using a private sandboxed analysis system.
64 - Observe and collect information about the following activities in both the sandbox and the alert subject host:
65 - Attempts to contact external domains and addresses.
66 - 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`.
67 - Examine the DNS cache for suspicious or anomalous entries.
68 - $osquery_0
69 - Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
70 - Examine the host services for suspicious or anomalous entries.
71 - $osquery_1
72 - $osquery_2
73 - $osquery_3
74 - 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.
75
76
77### False positive analysis
78
79- If this rule is noisy in your environment due to expected activity, consider adding exceptions — preferably with a combination of `process.executable`, `process.code_signature.subject_name` and `process.Ext.api.parameters.desired_access_numeric` conditions.
80
81### Related Rules
82
83- Suspicious Lsass Process Access - 128468bf-cab1-4637-99ea-fdf3780a4609
84- Potential Credential Access via DuplicateHandle in LSASS - 02a4576a-7480-4284-9327-548a806b5e48
85- LSASS Memory Dump Handle Access - 208dbe77-01ed-4954-8d44-1e5751cb20de
86
87### Response and Remediation
88
89- Initiate the incident response process based on the outcome of the triage.
90 - If malicious activity is confirmed, perform a broader investigation to identify the scope of the compromise and determine the appropriate remediation steps.
91- Isolate the involved host to prevent further post-compromise behavior.
92- If the triage identified malware, search the environment for additional compromised hosts.
93 - Implement temporary network rules, procedures, and segmentation to contain the malware.
94 - Stop suspicious processes.
95 - Immediately block the identified indicators of compromise (IoCs).
96 - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
97- Remove and block malicious artifacts identified during triage.
98- 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.
99- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
100- Reimage the host operating system or restore the compromised files to clean versions.
101- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
102- 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).
103"""
104references = ["https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1003.001/T1003.001.md"]
105risk_score = 47
106rule_id = "ff4599cb-409f-4910-a239-52e4e6f532ff"
107severity = "medium"
108tags = [
109 "Domain: Endpoint",
110 "OS: Windows",
111 "Use Case: Threat Detection",
112 "Tactic: Credential Access",
113 "Tactic: Execution",
114 "Data Source: Elastic Defend",
115 "Data Source: Microsoft Defender for Endpoint"
116]
117timestamp_override = "event.ingested"
118type = "eql"
119
120query = '''
121api where host.os.type == "windows" and
122 process.Ext.api.name in ("OpenProcess", "OpenThread") and Target.process.name : "lsass.exe" and
123 not
124 (
125 process.executable : (
126 "?:\\ProgramData\\GetSupportService*\\Updates\\Update_*.exe",
127 "?:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\*\\MsMpEng.exe",
128 "?:\\Program Files (x86)\\Asiainfo Security\\OfficeScan Client\\NTRTScan.exe",
129 "?:\\Program Files (x86)\\Blackpoint\\SnapAgent\\SnapAgent.exe",
130 "?:\\Program Files (x86)\\CheckPoint\\Endpoint Security\\EFR\\EFRService.exe",
131 "?:\\Program Files (x86)\\CyberCNSAgent\\osqueryi.exe",
132 "?:\\Program Files (x86)\\cisco\\cisco anyconnect secure mobility client\\vpnagent.exe",
133 "?:\\Program Files (x86)\\cisco\\cisco anyconnect secure mobility client\\aciseagent.exe",
134 "?:\\Program Files (x86)\\cisco\\cisco anyconnect secure mobility client\\vpndownloader.exe",
135 "?:\\Program Files (x86)\\eScan\\reload.exe",
136 "?:\\Program Files (x86)\\Google\\Update\\GoogleUpdate.exe",
137 "?:\\Program Files (x86)\\Kaspersky Lab\\*\\avp.exe",
138 "?:\\Program Files (x86)\\microsoft intune management extension\\microsoft.management.services.intunewindowsagent.exe",
139 "?:\\Program Files (x86)\\N-able Technologies\\Reactive\\bin\\NableReactiveManagement.exe",
140 "?:\\Program Files (x86)\\N-able Technologies\\Windows Agent\\bin\\agent.exe",
141 "?:\\Program Files (x86)\\Tanium\\Tanium Client\\TaniumClient.exe",
142 "?:\\Program Files (x86)\\Trend Micro\\*\\CCSF\\TmCCSF.exe",
143 "?:\\Program Files (x86)\\Trend Micro\\Security Agent\\TMASutility.exe",
144 "?:\\Program Files*\\Windows Defender\\MsMpEng.exe",
145 "?:\\Program Files\\Bitdefender\\Endpoint Security\\EPSecurityService.exe",
146 "?:\\Program Files\\Cisco\\AMP\\*\\sfc.exe",
147 "?:\\Program Files\\Common Files\\McAfee\\AVSolution\\mcshield.exe",
148 "?:\\Program Files\\EA\\AC\\EAAntiCheat.GameService.exe",
149 "?:\\Program Files\\Elastic\\Agent\\data\\elastic-agent-*\\components\\agentbeat.exe",
150 "?:\\Program Files\\Elastic\\Agent\\data\\elastic-agent-*\\components\\metricbeat.exe",
151 "?:\\Program Files\\Elastic\\Agent\\data\\elastic-agent-*\\components\\osqueryd.exe",
152 "?:\\Program Files\\Elastic\\Agent\\data\\elastic-agent-*\\components\\packetbeat.exe",
153 "?:\\Program Files\\ESET\\ESET Security\\ekrn.exe",
154 "?:\\Program Files\\Fortinet\\FortiClient\\FortiProxy.exe",
155 "?:\\Program Files\\Fortinet\\FortiClient\\FortiSSLVPNdaemon.exe",
156 "?:\\Program Files\\Goverlan Inc\\GoverlanAgent\\GovAgentx64.exe",
157 "?:\\Program Files\\Huntress\\HuntressAgent.exe",
158 "?:\\Program Files\\LogicMonitor\\Agent\\bin\\sbshutdown.exe",
159 "?:\\Program Files\\Malwarebytes\\Anti-Malware\\MBAMService.exe",
160 "?:\\Program Files\\Microsoft Monitoring Agent\\Agent\\Health Service State\\*\\pmfexe.exe",
161 "?:\\Program Files\\Microsoft Security Client\\MsMpEng.exe",
162 "?:\\Program Files\\Qualys\\QualysAgent\\QualysAgent.exe",
163 "?:\\Program Files\\smart-x\\controlupagent\\version*\\cuagent.exe",
164 "?:\\Program Files\\TDAgent\\ossec-agent\\ossec-agent.exe",
165 "?:\\Program Files\\Topaz OFD\\Warsaw\\core.exe",
166 "?:\\Program Files\\Trend Micro\\Deep Security Agent\\netagent\\tm_netagent.exe",
167 "?:\\Program Files\\VMware\\VMware Tools\\vmtoolsd.exe",
168 "?:\\Program Files\\Windows Defender Advanced Threat Protection\\MsSense.exe",
169 "?:\\Program Files\\Wise\\Wise Memory Optimizer\\WiseMemoryOptimzer.exe",
170 "?:\\Windows\\AdminArsenal\\PDQDeployRunner\\*\\exec\\Sysmon64.exe",
171 "?:\\Windows\\Sysmon.exe",
172 "?:\\Windows\\Sysmon64.exe",
173 "?:\\Windows\\System32\\csrss.exe",
174 "?:\\Windows\\System32\\MRT.exe",
175 "?:\\Windows\\System32\\msiexec.exe",
176 "?:\\Windows\\System32\\taskhostw.exe",
177 "?:\\Windows\\System32\\RtkAudUService64.exe",
178 "?:\\Windows\\System32\\wbem\\WmiPrvSE.exe",
179 "?:\\Windows\\SysWOW64\\wbem\\WmiPrvSE.exe",
180 "?:\\Windows\\tenable_mw_scan_142a90001fb65e0beb1751cc8c63edd0.exe"
181 ) and not ?process.code_signature.trusted == false
182 )
183'''
184
185
186[[rule.threat]]
187framework = "MITRE ATT&CK"
188[[rule.threat.technique]]
189id = "T1003"
190name = "OS Credential Dumping"
191reference = "https://attack.mitre.org/techniques/T1003/"
192[[rule.threat.technique.subtechnique]]
193id = "T1003.001"
194name = "LSASS Memory"
195reference = "https://attack.mitre.org/techniques/T1003/001/"
196
197
198
199[rule.threat.tactic]
200id = "TA0006"
201name = "Credential Access"
202reference = "https://attack.mitre.org/tactics/TA0006/"
203[[rule.threat]]
204framework = "MITRE ATT&CK"
205[[rule.threat.technique]]
206id = "T1106"
207name = "Native API"
208reference = "https://attack.mitre.org/techniques/T1106/"
209
210
211[rule.threat.tactic]
212id = "TA0002"
213name = "Execution"
214reference = "https://attack.mitre.org/tactics/TA0002/"
Triage and analysis
Investigating LSASS Process Access via Windows API
The Local Security Authority Subsystem Service (LSASS) is a critical Windows component responsible for managing user authentication and security policies. Adversaries may attempt to access the LSASS handle to dump credentials from its memory, which can be used for lateral movement and privilege escalation.
This rule identifies attempts to access LSASS by monitoring for specific API calls (OpenProcess, OpenThread) targeting the "lsass.exe" process.
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 other alerts associated with the user/host during the past 48 hours.
- Investigate the process execution chain (parent process tree) of the process that accessed the LSASS handle.
- Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
- Determine the first time the process executable was seen in the environment and if this behavior happened in the past.
- Validate the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
- Investigate any abnormal behavior by the subject process, such as network connections, DLLs loaded, registry or file modifications, and any spawned child processes.
- Assess the access rights (
process.Ext.api.parameters.desired_access
field) requested by the process. This Microsoft documentation may be useful to help the interpretation. - If there are traces of LSASS memory being successfully dumped, investigate potentially compromised accounts. Analysts can do this by searching for login events (e.g., 4624) to the target host.
- Examine the host for derived artifacts that indicate suspicious activities:
- Analyze the executables of the processes 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 network events to determine domains and addresses contacted by the subject process by filtering by the process's
- 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
- Attempts to contact external domains and addresses.
- 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.
False positive analysis
- If this rule is noisy in your environment due to expected activity, consider adding exceptions — preferably with a combination of
process.executable
,process.code_signature.subject_name
andprocess.Ext.api.parameters.desired_access_numeric
conditions.
Related Rules
- Suspicious Lsass Process Access - 128468bf-cab1-4637-99ea-fdf3780a4609
- Potential Credential Access via DuplicateHandle in LSASS - 02a4576a-7480-4284-9327-548a806b5e48
- LSASS Memory Dump Handle Access - 208dbe77-01ed-4954-8d44-1e5751cb20de
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.
- Isolate the involved host 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.
- Reimage the host operating system or restore the compromised files to clean versions.
- 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
- Downloaded Shortcut Files
- Downloaded URL Files
- Execution of File Written or Modified by Microsoft Office
- Windows Registry File Creation in SMB Share
- Sensitive Registry Hive Access via RegBack