Skidmark Tools Setup
To install the needed applications, start up the terminal.
/home/<user>/Downloads is your user
When you see "Enter the command:", everything after the : should be typed/copied into the terminal, then press enter
Update the system:
- Enter the command:
sudo apt update
- Enter the command:
sudo apt upgrade
- Select 'Y' that you want to upgrade.
- Reboot when completed.
Install Go
- Download install package from https://go.dev/doc/install
- Save to /home/<user>/Downloads
- Start a terminal
- Enter the command:
cd Downloads
- Enter the command:
sudo mkdir /usr/local && tar -C /usr/local -xzf go<version>.linux-amd64.tar.gz
- Enter the command:
export PATH=$PATH:/usr/local/go/bin
- Enter the command:
go version
- You will see the version of Go installed
Install Project Discovery Tool Manager
- Enter the command:
go install -v github.com/projectdiscovery/pdtm/cmd/pdtm@latest
Install masscan
- Enter the commnd:
sudo apt install masscan
Install Virtualbox
- Download the installer from here - https://www.virtualbox.org/wiki/Linux_Downloads
- Select the latest Ubuntu version
- Save to /home/<user>/Downloads
- Double click the .deb file
Install TOR
- Enter the command:
sudo apt install tor torbrowser-launcher
Install Docker
Reference: https://marykwauffman.medium.com/install-docker-on-ubuntu-22-04-step-by-step-guide-69a27d4f43e3
- Enter the command:
sudo apt install gnome-terminal
Add Docker's official GPG key:
- Enter the command:
sudo apt-get update
- Enter the command:
sudo apt-get install ca-certificates curl
- Enter the command:
sudo install -m 0755 -d /etc/apt/keyrings
- Enter the command:
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
- Enter the command:
sudo chmod a+r /etc/apt/keyrings/docker.asc
Add the repository to Apt sources:
- Enter the command:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Fix the installer version issue
- Enter the command:
sudo nano /etc/os-release
- Change the entry in VERSION CODENAME to noble
- Save the changes
- Enter the command:
sudo nano /etc/apt/sources.list.d/docker.list
- Change wilma to noble
- Save the changes
Install Docker
- Enter the command:
sudo apt update
- Enter the command:
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
3.Enter the command:sudo docker version
- Enter the command:
sudo docker run hello-world
- should see "Hello from Docker!"
Running Docker Without Sudo
- Enter the command:
sudo groupadd docker
- Enter the command:
sudo usermod -aG docker ${USER}
- Log out and back in
- Enter the command:
docker run
Configuring Docker to Start on Boot
- Enter the command:
sudo systemctl start docker
- Enter the command:
sudo systemctl enable docker
- Enter the command:
sudo systemctl status docker
Install OWASP Amass
- Enter the command:
sudo docker build -t amass https://github.com/OWASP/Amass.git
- Enter the command:
sudo docker run -v /home/<user>/Amass_output:/.config/amass/ amass enum --list
- change <user> to your username BEFORE running the above command