Bloodhound
Docker Install (easiest)
Installing bloodhound on kali:
apt-get install bloodhound
Configure Bloodhound
we need to configure neo4j - mainly just change default passwords, so let's run:
neo4j console
#ensure you are the root user, or it will fail

Nav to
http://localhost:7474
Config a DB user account by changing default passwords from
neo4j:neo4j
to something else
Fixing Multiple Java version
If you run into an issue in which your system informs you that your java version is wrong and you have more than one openjdk installed you can switch which one is used by default.
sudo update-alternatives --config java
There are 2 choices for the alternative java (providing /usr/bin/java).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/lib/jvm/java-17-openjdk-amd64/bin/java 1711 auto mode
1 /usr/lib/jvm/java-11-openjdk-amd64/bin/java 1111 manual mode
2 /usr/lib/jvm/java-17-openjdk-amd64/bin/java 1711 manual mode
Press <enter> to keep the current choice[*], or type selection number: 1
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/java to provide /usr/bin/java (java) in manual mode
┌──(root㉿savannah)-[/home/kali]
└─# neo4j console
--works--
Running Bloodhound
Run bloodhound with:
bloodhound
#ensure you are the root user
Now log into the DB with the user and password you just set up

Data Injection and Enumeration
In order for BloodHound to do its magic, we need to enumerate a victim domain. The enumeration process produces a JSON file that describes various relationships and permissions between AD objects as mentioned earlier, which can then be imported to BloodHound. Once the resulting JSON file is ingested/imported to BloodHound, it will allow us to visually see the ways (if any) how Active Directory and its various objects can be (ab)used to elevate privileges, ideally to Domain Admin.
Above paragraph taken from this great guide:
https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/abusing-active-directory-with-bloodhound-on-kali-linux
SharpHound
The tool that does the AD enumeration is SharpHound.
It can be downloaded in release form here
It comes in a .exe or .ps1 file
AD Enumeration with SharpHound
If you are on a machine that is a member of a domain but are authenticated as just a local use (not a domain user) you will get an error that states:
Unable to contact domain. Try from a domain context!
If you have creds to a domain user use the
runas
utility:
runas /user:[email protected] powershell
#if machine is not a domain member
runas /netonly /user:[email protected] powershell
Once that is done or you have a domain compromised account we can proceed:
Powershell Version:
. .\SharpHound.ps1
Invoke-BloodHound -CollectionMethod All -JSONFolder "c:\Users\svc-alfresko\Desktop"
C# method
./SharpHound.exe
Both of these will produce a .zip, exfil that file back to bloodhound and simply drag and drop it into the GUI

Execution
Once the data is ingested, as mentioned, we can play around with the built in queries to find things like All Domain Admins, Shortest Path to Domain Admins and similar, that may help us as an attacker to escalate privileges and compromise the entire domains/forest.
Mark the user account you have compromised as
"Owned"
--> Find user you own --> right click --> Mark User as Owned

Now from the
Analysis
tab a great query isShortest Path from Owned Principles

If you over over the lines and --> right click --> help it will give you information along with commands to take advantage of vulns

Bloodhound Automation
BloodHoundLoader
We often find ourselves wanting to set the values of attributes in BloodHound in bulk. The BloodHoundLoader tool was written for this purpose. It allows marking a list of computers as owned or a list of users as high value for instance.
We use this feature for example to mark a list of accounts with their password found on a share as owned, or following a discussion with a customer to set a list of especially interesting targets as high value.
The following command sets all the hosts in “high_value.txt” to high value targets:
python BloodHoundLoader.py --dburi bolt://localhost:7687 --dbuser neo4j --dbpassword BloodHound --mode h high_value.txt
The names of users and computers in the text file should match the name shown on the GUI for the node:
DC.ACME.COM
COMPUTER.ACME.COM
[email protected]
Last updated