mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-22 23:55:30 +02:00
bloodhound-python: add page (#15553)
This commit is contained in:
parent
51471c7d4c
commit
634d8a3f1a
1 changed files with 24 additions and 0 deletions
24
pages/common/bloodhound-python.md
Normal file
24
pages/common/bloodhound-python.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue