Building a RHEL like environment to cybersec: Difference between revisions

From PedrosBrainDump
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
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
  curl -L -o burp_community_2024.8.4_linux.sh "<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 burp_community_2024.8.4_linux.sh
  ./burpsuite_community_linux_v2024_8_2.sh
  ./burp_community_2024.8.4_linux.sh

Latest revision as of 23:26, 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
curl -L -o burp_community_2024.8.4_linux.sh "https://portswigger-cdn.net/burp/releases/download?product=community&version=2024.8.4&type=Linux"
chmod +x burp_community_2024.8.4_linux.sh
./burp_community_2024.8.4_linux.sh