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

* Add: rules

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

30 lines
748 B
YAML

title: ADCSPwn Hack Tool
ruletype: Sigma
author: Florian Roth
date: 2021/07/31
description: Detects command line parameters used by ADCSPwn, a tool to escalate privileges
in an active directory network by coercing authenticate from machine accounts and
relaying to the certificate service
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
CommandLine: '* --adcs *'
SELECTION_3:
CommandLine: '* --port *'
condition: (SELECTION_1 and SELECTION_2 and SELECTION_3)
falsepositives:
- unlikely
id: cd8c163e-a19b-402e-bdd5-419ff5859f12
level: critical
logsource:
category: process_creation
product: windows
references:
- https://github.com/bats3c/ADCSPwn
status: experimental
tags:
- attack.credential_access
- attack.t1557.001