1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/bloodhound-python.md

25 lines
1 KiB
Markdown
Raw Normal View History

2025-01-25 01:17:36 -05:00
# bloodhound-python
> A Python ingestor for BloodHound, used to enumerate Active Directory relationships.
> More information: <https://github.com/dirkjanm/BloodHound.py>.
- Collect all data using default collection methods (includes groups, sessions, and trusts):
`bloodhound-python --username {{username}} --password {{password}} --domain {{domain}}`
- Collect data using Kerberos authentication without requiring a plaintext password:
`bloodhound-python --collectionmethod {{All}} --kerberos --domain {{domain}}`
- Authenticate using NTLM hashes instead of a password:
`bloodhound-python --collectionmethod {{All}} --username {{username}} --hashes {{LM:NTLM}} --domain {{domain}}`
- Specify a custom name server for DNS queries:
`bloodhound-python --collectionmethod {{All}} --username {{username}} --password {{password}} --domain {{domain}} --nameserver {{nameserver}}`
- Save the output files as a compressed ZIP archive:
`bloodhound-python --collectionmethod {{All}} --username {{username}} --password {{password}} --domain {{domain}} --zip`