Files
blue-team-tools/rules/windows/process_access/proc_access_win_lsass_memdump.yml
T

49 lines
1.9 KiB
YAML
Raw Normal View History

2020-06-10 16:32:30 +02:00
title: LSASS Memory Dump
id: 5ef9853e-4d0e-4a70-846f-a9ca37d876da
status: experimental
2022-01-26 08:12:49 -07:00
description: Detects process LSASS memory dump using Mimikatz, NanoDump, Invoke-Mimikatz, Procdump or Taskmgr based on the CallTrace pointing to ntdll.dll, dbghelp.dll or dbgcore.dll for win10, server2016 and up.
2020-06-10 16:32:30 +02:00
references:
- https://blog.menasec.net/2019/02/threat-hunting-21-procdump-or-taskmgr.html
2022-01-26 08:12:49 -07:00
- 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
date: 2019/04/03
modified: 2022/09/29
2020-06-10 16:32:30 +02:00
tags:
- attack.credential_access
- 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
#- '0x1fffff' # Too many false positives
#- '0x01000' # Too many false positives
#- '0x1010' # Too many false positives
- '0x1038'
2022-03-20 16:18:18 +01:00
# - '0x40' # Too many false positives
2022-02-12 00:40:10 +01:00
#- '0x1400' # Too many false positives
2022-06-20 16:15:05 +02:00
# - '0x1410' # Too many false positives
2022-02-12 00:40:10 +01:00
- '0x1438'
- '0x143a'
2020-10-15 17:17:57 -03:00
CallTrace|contains:
2022-02-12 00:40:10 +01:00
- 'dbghelp.dll'
- 'dbgcore.dll'
- 'ntdll.dll'
2022-06-20 16:15:05 +02:00
filter_thor:
CallTrace|contains|all:
- '|C:\Windows\Temp\asgard2-agent\'
- '\thor\thor64.exe+'
- '|UNKNOWN('
GrantedAccess: '0x103800'
2022-09-29 13:51:09 +02:00
filter_sysmon:
SourceImage: 'C:\Windows\Sysmon64.exe'
2022-06-20 16:15:05 +02:00
condition: selection and not 1 of filter*
2020-06-10 16:32:30 +02:00
falsepositives:
2022-01-26 08:12:49 -07:00
- False positives are present when looking for 0x1410. Exclusions may be required.
2022-07-11 14:11:53 +01:00
level: high