- Bloodhound (AD Security Auditing)
- https://github.com/BloodHoundAD/BloodHound
- Helps Red/Blue Teams identify any potential weankess in a given Active Directory environment
- Photon (Fast Web Crawler OSINT)
- Gnome-Boxes (VM-Host)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#How to activate the Python Virtual Environment | |
#MacOSX Mojave custom python from brew | |
virtualenv -p /usr/local/opt/python@2/bin/python venv | |
source venv/bin/activate | |
#Python 2.7+ | |
virtualenv venv | |
source venv/bin/activate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pre-requisites | |
# Ensure Git is installed | |
# | |
cd /opt | |
mkdir -p apps | |
cd apps | |
#Install SecLists to /opt/apps | |
git clone [email protected]:danielmiessler/SecLists.git |