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