Files
hayabusa/rules/sigma/file_event/sysmon_detect_powerup_dllhijacking.yml
T
itiB 83d891b2fa Feature/rm submodule (#312)
* rm: submodule

* Add: rules

* Fix: hayabusa-rules to c9c10a
2021-12-20 21:14:32 +09:00

34 lines
957 B
YAML

title: Powerup Write Hijack DLL
ruletype: Sigma
author: Subhash Popuri (@pbssubhash)
date: 2021/08/21
description: Powerup tool's Write Hijack DLL exploits DLL hijacking for privilege
escalation. In it's default mode, it builds a self deleting .bat file which executes
malicious command. The detection rule relies on creation of the malicious bat file
(debug.bat by default).
detection:
SELECTION_1:
EventID: 11
SELECTION_2:
Image: '*\powershell.exe'
SELECTION_3:
TargetFilename: '*.bat'
condition: (SELECTION_1 and SELECTION_2 and SELECTION_3)
falsepositives:
- Pentest
- Any powershell script that creates bat files
id: 602a1f13-c640-4d73-b053-be9a2fa58b96
level: high
logsource:
category: file_event
product: windows
references:
- https://powersploit.readthedocs.io/en/latest/Privesc/Write-HijackDll/
status: experimental
tags:
- attack.persistence
- attack.privilege_escalation
- attack.defense_evasion
- attack.t1574.001