CTF-Writeups/Active Directory/Domain Enumeration/Bloodhound.md
2021-12-09 17:11:17 +05:00

21 lines
612 B
Markdown

# Domain Enumeration - Bloodhound
Bloodhound is useful for gathering AD entities , relationships , it uses graph theory for providing the capability of mapping shortest path for interesting thing , it can find interesting things like `Domain Admins` , it has built-in queries.
https://github.com/BloodHoundAD/BloodHound
## Sharphound
https://github.com/BloodHoundAD/BloodHound/blob/master/Collectors/SharpHound.ps1
### Generate archive
```
Invoke-BloodHound -CollectionMethod All
```
### Avoiding detection form Advanced Threat Analytics (ATA)
```
Invoke-BloodHound -CollectionMethod All -ExcludeDC
```