From 634d8a3f1a8fb211107797b48d20f70a34c49392 Mon Sep 17 00:00:00 2001 From: Coontzy1 <48108269+Coontzy1@users.noreply.github.com> Date: Sat, 25 Jan 2025 01:17:36 -0500 Subject: [PATCH] bloodhound-python: add page (#15553) --- pages/common/bloodhound-python.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/bloodhound-python.md diff --git a/pages/common/bloodhound-python.md b/pages/common/bloodhound-python.md new file mode 100644 index 0000000000..926036375c --- /dev/null +++ b/pages/common/bloodhound-python.md @@ -0,0 +1,24 @@ +# bloodhound-python + +> A Python ingestor for BloodHound, used to enumerate Active Directory relationships. +> More information: . + +- 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`