Files
blue-team-tools/rules/windows/sysmon/sysmon_mimikatz_inmemory_detection.yml
T

41 lines
1.1 KiB
YAML
Raw Normal View History

2018-01-27 10:57:30 +01:00
title: Mimikatz In-Memory
2019-11-12 23:12:27 +01:00
id: c0478ead-5336-46c2-bd5e-b4c84bc3a36e
2017-02-10 19:17:02 +01:00
status: experimental
description: Detects certain DLL loads when Mimikatz gets executed
references:
- https://securityriskadvisors.com/blog/post/detecting-in-memory-mimikatz/
tags:
- attack.s0002
2019-03-06 05:25:12 +01:00
- attack.t1003
- attack.lateral_movement
- attack.credential_access
2019-06-13 23:15:38 -05:00
- car.2019-04-004
2017-02-19 00:31:59 +01:00
logsource:
2017-03-13 09:23:08 +01:00
product: windows
service: sysmon
2017-02-10 19:17:02 +01:00
detection:
selector:
2017-02-15 23:53:08 +01:00
EventID: 7
Image: 'C:\Windows\System32\rundll32.exe'
dllload1:
2017-02-15 23:53:08 +01:00
ImageLoaded: '*\vaultcli.dll'
2017-02-10 19:17:02 +01:00
dllload2:
2017-02-15 23:53:08 +01:00
ImageLoaded: '*\wlanapi.dll'
2017-02-10 19:17:02 +01:00
exclusion:
2017-02-15 23:53:08 +01:00
ImageLoaded:
2017-02-10 19:17:02 +01:00
- 'ntdsapi.dll'
- 'netapi32.dll'
- 'imm32.dll'
- 'samlib.dll'
- 'combase.dll'
- 'srvcli.dll'
- 'shcore.dll'
- 'ntasn1.dll'
- 'cryptdll.dll'
- 'logoncli.dll'
2017-08-05 00:32:24 +02:00
timeframe: 30s
2017-10-30 00:25:56 +01:00
condition: selector | near dllload1 and dllload2 and not exclusion
2017-02-10 19:17:02 +01:00
falsepositives:
- unknown
level: medium