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

40 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
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:
- https://github.com/BloodHoundAD/BloodHound
2019-12-21 21:22:13 +01:00
- https://github.com/BloodHoundAD/SharpHound
2019-12-20 14:59:36 +01:00
date: 2019/12/20
2019-12-21 21:22:13 +01:00
modified: 2019/12/21
2019-12-20 14:59:36 +01:00
tags:
- attack.discovery
- attack.t1087
logsource:
category: process_creation
product: windows
detection:
2019-12-20 16:08:26 +01:00
selection1:
Image|contains:
- '\Bloodhound.exe'
- '\SharpHound.exe'
selection2:
CommandLine|contains:
- ' -CollectionMethod All '
2019-12-20 17:23:40 +01:00
- '.exe -c All -d '
2019-12-20 16:08:26 +01:00
- 'Invoke-Bloodhound'
- 'Get-BloodHoundData'
selection3:
CommandLine|contains|all:
- ' -JsonFolder '
- ' -ZipFileName '
2019-12-21 21:22:13 +01:00
selection4:
CommandLine|contains|all:
- ' DCOnly '
- ' --NoSaveCache '
2019-12-20 16:11:39 +01:00
condition: 1 of them
2019-12-20 14:59:36 +01:00
falsepositives:
- Other programs that use these command line option and accepts an 'All' parameter
2019-12-20 15:37:58 +01:00
level: high
2019-12-20 16:08:26 +01:00