Files
blue-team-tools/rules/windows/image_load/image_load_susp_image_load.yml
T

27 lines
717 B
YAML
Raw Normal View History

2020-06-10 16:32:30 +02:00
title: Possible Process Hollowing Image Loading
id: e32ce4f5-46c6-4c47-ba69-5de3c9193cd7
2021-11-27 11:33:14 +01:00
status: test
2020-06-10 16:32:30 +02:00
description: Detects Loading of samlib.dll, WinSCard.dll from untypical process e.g. through process hollowing by Mimikatz
author: Markus Neis
2021-11-27 11:33:14 +01:00
references:
- https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for.html
2020-06-10 16:32:30 +02:00
date: 2018/01/07
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
2020-06-10 16:32:30 +02:00
logsource:
2021-11-27 11:33:14 +01:00
category: image_load
product: windows
2020-06-10 16:32:30 +02:00
detection:
2021-11-27 11:33:14 +01:00
selection:
Image|endswith:
- '\notepad.exe'
ImageLoaded|endswith:
- '\samlib.dll'
- '\WinSCard.dll'
condition: selection
2020-06-10 16:32:30 +02:00
falsepositives:
2021-11-27 11:33:14 +01:00
- Very likely, needs more tuning
2020-06-10 16:32:30 +02:00
level: high
2021-11-27 11:33:14 +01:00
tags:
- attack.defense_evasion
- attack.t1574.002