mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-08 02:08:54 +00:00
39 lines
1014 B
YAML
39 lines
1014 B
YAML
title: Mimikatz In-Memory
|
|
status: experimental
|
|
description: Detects certain DLL loads when Mimikatz gets executed
|
|
references:
|
|
- https://securityriskadvisors.com/blog/post/detecting-in-memory-mimikatz/
|
|
tags:
|
|
- attack.s0002
|
|
- attack.t1003
|
|
- attack.lateral_movement
|
|
- attack.credential_access
|
|
logsource:
|
|
product: windows
|
|
service: sysmon
|
|
detection:
|
|
selector:
|
|
EventID: 7
|
|
Image: 'C:\Windows\System32\rundll32.exe'
|
|
dllload1:
|
|
ImageLoaded: '*\vaultcli.dll'
|
|
dllload2:
|
|
ImageLoaded: '*\wlanapi.dll'
|
|
exclusion:
|
|
ImageLoaded:
|
|
- 'ntdsapi.dll'
|
|
- 'netapi32.dll'
|
|
- 'imm32.dll'
|
|
- 'samlib.dll'
|
|
- 'combase.dll'
|
|
- 'srvcli.dll'
|
|
- 'shcore.dll'
|
|
- 'ntasn1.dll'
|
|
- 'cryptdll.dll'
|
|
- 'logoncli.dll'
|
|
timeframe: 30s
|
|
condition: selector | near dllload1 and dllload2 and not exclusion
|
|
falsepositives:
|
|
- unknown
|
|
level: medium
|