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:

  1. Enter the command: sudo apt update
  2. Enter the command: sudo apt upgrade
  3. Select 'Y' that you want to upgrade.
  4. Reboot when completed.

Install Go

  1. Download install package from https://go.dev/doc/install
  2. Save to /home/<user>/Downloads
  3. Start a terminal
  4. Enter the command: cd Downloads
  5. Enter the command: sudo mkdir /usr/local && tar -C /usr/local -xzf go<version>.linux-amd64.tar.gz
  6. Enter the command: export PATH=$PATH:/usr/local/go/bin
  7. Enter the command: go version
    • You will see the version of Go installed

Install Project Discovery Tool Manager

  1. Enter the command: go install -v github.com/projectdiscovery/pdtm/cmd/pdtm@latest

Install masscan

  1. Enter the commnd: sudo apt install masscan

Install Virtualbox

  1. Download the installer from here - https://www.virtualbox.org/wiki/Linux_Downloads
  2. Select the latest Ubuntu version
  3. Save to /home/<user>/Downloads
  4. Double click the .deb file

Install TOR

  1. 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

  1. Enter the command: sudo apt install gnome-terminal

Add Docker's official GPG key:

  1. Enter the command:sudo apt-get update
  2. Enter the command: sudo apt-get install ca-certificates curl
  3. Enter the command: sudo install -m 0755 -d /etc/apt/keyrings
  4. Enter the command: sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
  5. Enter the command: sudo chmod a+r /etc/apt/keyrings/docker.asc

Add the repository to Apt sources:

  1. 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

  1. Enter the command: sudo nano /etc/os-release
  2. Change the entry in VERSION CODENAME to noble
  3. Save the changes
  4. Enter the command: sudo nano /etc/apt/sources.list.d/docker.list
  5. Change wilma to noble
  6. Save the changes

Install Docker

  1. Enter the command: sudo apt update
  2. 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
  3. Enter the command: sudo docker run hello-world
    • should see "Hello from Docker!"

Running Docker Without Sudo

  1. Enter the command: sudo groupadd docker
  2. Enter the command: sudo usermod -aG docker ${USER}
  3. Log out and back in
  4. Enter the command: docker run

Configuring Docker to Start on Boot

  1. Enter the command: sudo systemctl start docker
  2. Enter the command: sudo systemctl enable docker
  3. Enter the command: sudo systemctl status docker

Install OWASP Amass

  1. Enter the command: sudo docker build -t amass https://github.com/OWASP/Amass.git
  2. 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
Edit
Pub: 30 Sep 2024 19:19 UTC
Edit: 30 Sep 2024 19:27 UTC
Views: 198