Grunt's personal blog

this is my personal blog for my hacking stuff, my degree stuff, etc

View on GitHub

BloodHound

Initialize

BloodHound Python

Executing BloodHound.py

Simple bash script to do this

#!/bin/bash
# bloodhound-python -d <domain> -u <username> -p <password> -gc <domain> -c all -ns <ip of domain> 

echo "Domain: "
read domain 

echo "Username: "
read username

echo "Password: "
read password

echo "IP of Domain: " 
read ip_address

bloodhound-python -d $domain -u $username -p $password -gc $domain -c all -ns $ip_address

Sharphound