Building a RHEL like environment to cybersec: Difference between revisions

From PedrosBrainDump
No edit summary
No edit summary
Line 3: Line 3:
  snap install seclists sqlmap hash-id
  snap install seclists sqlmap hash-id
  cd /tmp
  cd /tmp
  git clone https://github.com/tomnomnom/hacks.git
  git clone <nowiki>https://github.com/tomnomnom/hacks.git</nowiki>
  cd hacks/html-tool
  cd hacks/html-tool
  go build -o html-tool main.go
  go build -o html-tool main.go
  sudo cp html-tool /usr/local/bin
  sudo cp html-tool /usr/local/bin
  cd /tmp
  cd /tmp
  git clone https://github.com/003random/getJS.git
  git clone <nowiki>https://github.com/003random/getJS.git</nowiki>
  cd getJS
  cd getJS
  go build -o getJS main.go
  go build -o getJS main.go
  sudo cp getJS /usr/local/bin
  sudo cp getJS /usr/local/bin
  wget https://files.pedromussato.com/programs/burpsuite_community_linux_v2024_8_2.sh
  wget <nowiki>https://portswigger-cdn.net/burp/releases/download?product=community&version=2024.8.4&type=Linux</nowiki>
  chmod +x burpsuite_community_linux_v2024_8_2.sh
  chmod +x burpsuite_community_linux_v2024_8_2.sh
  ./burpsuite_community_linux_v2024_8_2.sh
  ./burpsuite_community_linux_v2024_8_2.sh

Revision as of 23:01, 8 October 2024

sudo dnf update -y
sudo dnf install hydra gobuster wafw00f whatweb golang git wfuzz snapd -y
snap install seclists sqlmap hash-id
cd /tmp
git clone https://github.com/tomnomnom/hacks.git
cd hacks/html-tool
go build -o html-tool main.go
sudo cp html-tool /usr/local/bin
cd /tmp
git clone https://github.com/003random/getJS.git
cd getJS
go build -o getJS main.go
sudo cp getJS /usr/local/bin
wget https://portswigger-cdn.net/burp/releases/download?product=community&version=2024.8.4&type=Linux
chmod +x burpsuite_community_linux_v2024_8_2.sh
./burpsuite_community_linux_v2024_8_2.sh