💻Intro
Quick disclaimer
Huge shoutout to HackTricks at https://book.hacktricks.xyz/welcome/readme and TCM Security at https://tcm-sec.com/.
Many of the resources/techniques/etc listed in the following are from them, they are both objectively better resources then this.
Other quick notes
Many of these tools are written in python and the dependencies get messy quickly. I highly recommend setting up virtualenvs for each tool before installing the requirements.
## Installing virtualenv on Deb-Based systems
sudo apt update
sudo apt install virtualenv
## Installing virtualenv on Arch based systems
sudo pacman -Syu virtualenv
## Usage
## I normally will do this in the folder/repo that the project was installed in.
## BE CAREFUL DOING THIS AS A ROOT USER, running pip as root can cause permissions issues later down the line
cd <repo>
virtualenv <virtualenvName>
source <virtualenvName>/bin/activate
pip install -r <requirements>
Last updated
