Skip to content

Instantly share code, notes, and snippets.

@alias454
Last active September 1, 2023 19:21
Show Gist options
  • Save alias454/412d25e1f03fc3c3d8c38b370563b4e8 to your computer and use it in GitHub Desktop.
Save alias454/412d25e1f03fc3c3d8c38b370563b4e8 to your computer and use it in GitHub Desktop.
Modified Bug Bounty Hunting Tools install script for Fedora
#!/usr/bin/env bash
# Modified Bug Bounty Hunting Tools install script for Fedora
# Create this file in ~/scripts and then run
# sudo su <username> -c "~/scripts/install_sectools.sh"
#create a tools folder in ~/
mkdir ~/tools
cd ~/tools/
echo "installing redhat-rpm-config"
sudo dnf install git python3-pip jq python2-dns python3-dns redhat-rpm-config -y
echo "done"
echo "installing JSParser"
git clone https://github.com/nahamsec/JSParser.git
cd JSParser*
sudo python setup.py install
cd ~/tools/
echo "done"
echo "installing Sublist3r"
git clone https://github.com/aboul3la/Sublist3r.git
cd Sublist3r*
pip install -r requirements.txt
cd ~/tools/
echo "done"
echo "installing dirsearch"
git clone https://github.com/maurosoria/dirsearch.git
cd ~/tools/
echo "done"
echo "installing web screenshot"
git clone https://github.com/maaaaz/webscreenshot.git
cd ~/tools/
echo "done"
echo "installing sqlmap"
git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git
cd ~/tools/
echo "done"
echo "installing knock.py"
sudo apt-get install python-dnspython
git clone https://github.com/guelfoweb/knock.git
cd ~/tools/
echo "done"
echo "installing lazyrecon"
git clone https://github.com/nahamsec/lazyrecon.git
cd ~/tools/
echo "done"
echo "installing nmap"
sudo dnf install nmap
echo "done"
echo -e "\n\n\n\n\n\n\nDone! All tools are set up in ~/tools"
ls -la
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment