HackTool - Rubeus Execution - ScriptBlock

Detects the execution of the hacktool Rubeus using specific command line flags

Sigma rule (View on GitHub)

 1title: HackTool - Rubeus Execution - ScriptBlock
 2id: 3245cd30-e015-40ff-a31d-5cadd5f377ec
 3related:
 4    - id: 7ec2c172-dceb-4c10-92c9-87c1881b7e18
 5      type: similar
 6status: test
 7description: Detects the execution of the hacktool Rubeus using specific command line flags
 8references:
 9    - https://blog.harmj0y.net/redteaming/from-kekeo-to-rubeus
10    - https://m0chan.github.io/2019/07/31/How-To-Attack-Kerberos-101.html
11    - https://github.com/GhostPack/Rubeus
12author: Christian Burkard (Nextron Systems), Florian Roth (Nextron Systems)
13date: 2023-04-27
14tags:
15    - attack.defense-evasion
16    - attack.credential-access
17    - attack.t1003
18    - attack.t1558.003
19    - attack.lateral-movement
20    - attack.t1550.003
21logsource:
22    product: windows
23    category: ps_script
24    definition: 'Requirements: Script Block Logging must be enabled'
25detection:
26    selection:
27        ScriptBlockText|contains:
28            - 'asreproast '
29            - 'dump /service:krbtgt '
30            - 'dump /luid:0x'
31            - 'kerberoast '
32            - 'createnetonly /program:'
33            - 'ptt /ticket:'
34            - '/impersonateuser:'
35            - 'renew /ticket:'
36            - 'asktgt /user:'
37            - 'harvest /interval:'
38            - 's4u /user:'
39            - 's4u /ticket:'
40            - 'hash /password:'
41            - 'golden /aes256:'
42            - 'silver /user:'
43    condition: selection
44falsepositives:
45    - Unlikely
46level: high

References

Related rules

to-top