mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-12 22:47:54 +00:00
Update cheatsheets
This commit is contained in:
29
tldr/bloodhound-python
Normal file
29
tldr/bloodhound-python
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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`
|
||||
Reference in New Issue
Block a user