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

32 lines
877 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
status: experimental
2020-09-02 02:34:34 +02:00
description: Detects PowerShell Strings applied to rundll as seen in PowerShdll.dll
references:
2019-03-02 00:14:20 +01:00
- https://github.com/p3nt4/PowerShdll/blob/master/README.md
tags:
2020-09-02 02:34:34 +02:00
- attack.defense_evasion
- attack.t1085 # an old one
- attack.t1218.011
author: Markus Neis
date: 2018/08/25
2020-09-02 02:34:34 +02:00
modified: 2020/09/01
logsource:
2019-03-02 00:14:20 +01:00
category: process_creation
product: windows
detection:
2019-03-02 00:14:20 +01:00
selection1:
2020-10-15 20:38:55 -03:00
Image|endswith:
2020-10-15 18:21:05 -03:00
- '\rundll32.exe'
2019-03-02 00:14:20 +01:00
selection2:
2020-10-15 18:21:05 -03:00
Description|contains:
- 'Windows-Hostprozess (Rundll32)'
2019-03-02 00:14:20 +01:00
selection3:
2020-10-15 18:21:05 -03:00
CommandLine|contains:
- 'Default.GetString'
- 'FromBase64String'
2019-03-02 00:14:20 +01:00
condition: (selection1 or selection2) and selection3
falsepositives:
2019-03-02 00:14:20 +01:00
- Unknown
level: high