2023-12-21 21:04:18 +01:00
title : Potential Credential Dumping Activity Via LSASS
2020-06-10 16:32:30 +02:00
id : 5ef9853e-4d0e-4a70-846f-a9ca37d876da
2025-01-06 15:36:19 +01:00
status : test
2023-12-04 01:14:15 +01:00
description : |
Detects process access requests to the LSASS process with specific call trace calls and access masks.
This behaviour is expressed by many credential dumping tools such as Mimikatz, NanoDump, Invoke-Mimikatz, Procdump and even the Taskmgr dumping feature.
2020-06-10 16:32:30 +02:00
references :
2024-07-31 17:16:56 +09:00
- https://web.archive.org/web/20230329170326/https://blog.menasec.net/2019/02/threat-hunting-21-procdump-or-taskmgr.html
2023-06-26 05:10:04 -04:00
- https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html
2022-07-11 14:11:53 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1003.001/T1003.001.md
2022-01-26 08:12:49 -07:00
- https://research.splunk.com/endpoint/windows_possible_credential_dumping/
2022-10-26 09:42:26 +02:00
author : Samir Bousseaden, Michael Haag
2024-08-12 12:02:50 +02:00
date : 2019-04-03
modified : 2024-03-02
2020-06-10 16:32:30 +02:00
tags :
2024-08-12 12:02:50 +02:00
- attack.credential-access
2020-08-23 02:03:06 +00:00
- attack.t1003.001
- attack.s0002
2020-06-10 16:32:30 +02:00
logsource :
category : process_access
product : windows
detection :
selection :
2021-06-21 21:19:04 +02:00
TargetImage|endswith : '\lsass.exe'
2022-06-20 16:15:05 +02:00
GrantedAccess|contains :
2022-02-12 00:40:10 +01:00
- '0x1038'
2023-12-04 01:14:15 +01:00
- '0x1438'
2023-12-21 21:04:18 +01:00
- '0x143a'
2023-12-04 01:14:15 +01:00
- '0x1fffff' # Too many false positives
2023-12-21 21:04:18 +01:00
# - '0x01000' # Too many false positives
# - '0x1010' # Too many false positives
# - '0x1400' # Too many false positives
# - '0x1410' # Too many false positives
# - '0x40' # Too many false positives
2020-10-15 17:17:57 -03:00
CallTrace|contains :
2022-02-12 00:40:10 +01:00
- 'dbgcore.dll'
2023-12-04 01:14:15 +01:00
- 'dbghelp.dll'
- 'kernel32.dll'
- 'kernelbase.dll'
2022-02-12 00:40:10 +01:00
- 'ntdll.dll'
2023-12-04 01:14:15 +01:00
filter_main_system_user :
SourceUser|contains : # Covers many language settings
- 'AUTHORI'
- 'AUTORI'
filter_optional_thor :
2022-06-20 16:15:05 +02:00
CallTrace|contains|all :
2023-12-04 01:14:15 +01:00
- ':\Windows\Temp\asgard2-agent\'
2022-06-20 16:15:05 +02:00
- ' \thor\thor64.exe+'
- '|UNKNOWN('
GrantedAccess : '0x103800'
2023-12-04 01:14:15 +01:00
filter_optional_sysmon :
SourceImage|endswith : ':\Windows\Sysmon64.exe'
condition : selection and not 1 of filter_main_* and not 1 of filter_optional_*
2020-06-10 16:32:30 +02:00
falsepositives :
2023-12-04 01:14:15 +01:00
- Unknown
2023-12-21 21:04:18 +01:00
level : medium