Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_hack_bloodhound.yml
T

46 lines
1.1 KiB
YAML
Raw Normal View History

2019-12-21 21:22:13 +01:00
title: Bloodhound and Sharphound Hack Tool
2019-12-20 14:59:36 +01:00
id: f376c8a7-a2d0-4ddc-aa0c-16c17236d962
2021-11-27 11:33:14 +01:00
status: test
2019-12-21 21:22:13 +01:00
description: Detects command line parameters used by Bloodhound and Sharphound hack tools
2019-12-20 14:59:36 +01:00
author: Florian Roth
references:
2021-11-27 11:33:14 +01:00
- https://github.com/BloodHoundAD/BloodHound
- https://github.com/BloodHoundAD/SharpHound
2019-12-20 14:59:36 +01:00
date: 2019/12/20
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
2019-12-20 14:59:36 +01:00
logsource:
2021-11-27 11:33:14 +01:00
category: process_creation
product: windows
2019-12-20 14:59:36 +01:00
detection:
2021-11-27 11:33:14 +01:00
selection1:
Image|contains:
- '\Bloodhound.exe'
- '\SharpHound.exe'
selection2:
CommandLine|contains:
- ' -CollectionMethod All '
- '.exe -c All -d '
- 'Invoke-Bloodhound'
- 'Get-BloodHoundData'
selection3:
CommandLine|contains|all:
- ' -JsonFolder '
- ' -ZipFileName '
selection4:
CommandLine|contains|all:
- ' DCOnly '
- ' --NoSaveCache '
2022-01-11 10:59:57 +01:00
condition: 1 of selection*
2019-12-20 14:59:36 +01:00
falsepositives:
2021-11-27 11:33:14 +01:00
- Other programs that use these command line option and accepts an 'All' parameter
2019-12-20 15:37:58 +01:00
level: high
2021-11-27 11:33:14 +01:00
tags:
- attack.discovery
- attack.t1087.001
- attack.t1087.002
- attack.t1482
- attack.t1069.001
- attack.t1069.002
- attack.execution
- attack.t1059.001