Files
blue-team-tools/rules/windows/process_creation/win_powershell_dll_execution.yml
T

32 lines
813 B
YAML
Raw Normal View History

title: Detection of PowerShell Execution via DLL
2019-11-12 23:12:27 +01:00
id: 6812a10b-60ea-420c-832f-dfcc33b646ba
2021-11-27 11:33:14 +01:00
status: test
2020-09-02 02:34:34 +02:00
description: Detects PowerShell Strings applied to rundll as seen in PowerShdll.dll
author: Markus Neis
2021-11-27 11:33:14 +01:00
references:
- https://github.com/p3nt4/PowerShdll/blob/master/README.md
date: 2018/08/25
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
logsource:
2021-11-27 11:33:14 +01:00
category: process_creation
product: windows
detection:
2021-11-27 11:33:14 +01:00
selection1:
Image|endswith:
- '\rundll32.exe'
selection2:
Description|contains:
- 'Windows-Hostprozess (Rundll32)'
selection3:
CommandLine|contains:
- 'Default.GetString'
- 'FromBase64String'
condition: (selection1 or selection2) and selection3
falsepositives:
2021-11-27 11:33:14 +01:00
- Unknown
level: high
2021-11-27 11:33:14 +01:00
tags:
- attack.defense_evasion
- attack.t1085 # an old one
- attack.t1218.011