mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-08 10:13:57 +00:00
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
---
|
|
action: global
|
|
title: Rubeus Hack Tool
|
|
description: Detects command line parameters used by Rubeus hack tool
|
|
author: Florian Roth
|
|
references:
|
|
- https://www.harmj0y.net/blog/redteaming/from-kekeo-to-rubeus/
|
|
date: 2018/12/19
|
|
tags:
|
|
- attack.credential_access
|
|
- attack.t1003
|
|
- attack.s0005
|
|
detection:
|
|
condition: selection
|
|
falsepositives:
|
|
- unlikely
|
|
level: critical
|
|
---
|
|
logsource:
|
|
product: windows
|
|
service: sysmon
|
|
detection:
|
|
selection:
|
|
EventID: 1
|
|
CommandLine:
|
|
- '* asreproast *'
|
|
- '* dump /service:krbtgt *'
|
|
- '* kerberoast *'
|
|
- '* createnetonly /program:*'
|
|
- '* ptt /ticket:*'
|
|
- '* /impersonateuser:*'
|
|
- '* renew /ticket:*'
|
|
- '* asktgt /user:*'
|
|
- '* harvest /interval:*'
|
|
---
|
|
logsource:
|
|
product: windows
|
|
service: security
|
|
definition: 'Requirements: Audit Policy : Detailed Tracking > Audit Process creation, Group Policy : Administrative Templates\System\Audit Process Creation'
|
|
detection:
|
|
selection:
|
|
EventID: 4688
|
|
ProcessCommandLine:
|
|
- '* asreproast *'
|
|
- '* dump /service:krbtgt *'
|
|
- '* kerberoast *'
|
|
- '* createnetonly /program:*'
|
|
- '* ptt /ticket:*'
|
|
- '* /impersonateuser:*'
|
|
- '* renew /ticket:*'
|
|
- '* asktgt /user:*'
|
|
- '* harvest /interval:*' |