Files
hayabusa/rules/sigma/process_creation/win_uac_bypass_wsreset.yml
itiB 83d891b2fa Feature/rm submodule (#312)
* rm: submodule

* Add: rules

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

33 lines
814 B
YAML

title: UAC Bypass WSReset
ruletype: Sigma
author: Christian Burkard
date: 2021/08/23
description: Detects the pattern of UAC Bypass via WSReset usable by default sysmon-config
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
Image: '*\wsreset.exe'
SELECTION_3:
IntegrityLevel:
- High
- System
condition: (SELECTION_1 and SELECTION_2 and SELECTION_3)
falsepositives:
- Unknown
id: 89a9a0e0-f61a-42e5-8957-b1479565a658
level: high
logsource:
category: process_creation
product: windows
references:
- https://lolbas-project.github.io/lolbas/Binaries/Wsreset/
- https://github.com/hfiref0x/UACME
- https://medium.com/falconforce/falconfriday-detecting-uac-bypasses-0xff16-86c2a9107abf
status: experimental
tags:
- attack.defense_evasion
- attack.privilege_escalation
- attack.t1548.002