-
-
Save hsmiranda/b58d95d0bb6d770e00a6157b2596d5fb to your computer and use it in GitHub Desktop.
Installs pentesting tools, then symlinks them to be ran seamlessly.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
git clone https://github.com/danielmiessler/SecLists.git /opt/seclists | |
git clone https://github.com/s0md3v/XSStrike.git /opt/xsstrike | |
sudo ln -s /opt/xsstrike/xsstrike.py /usr/local/bin/xsstrike | |
chmod +x /opt/xsstrike/xsstrike.py | |
git clone https://github.com/s0md3v/Arjun.git /opt/arjun | |
sudo ln -s /opt/arjun/arjun.py /usr/local/bin/arjun | |
chmod +x /opt/arjun/arjun.py | |
git clone https://github.com/OffXec/EyeWitness.git /opt/eyewitness | |
sudo ln -s /opt/eyewitness/eyewitness.py /usr/local/bin/eyewitness | |
chmod +x /opt/eyewitness/eyewitness.py | |
git clone https://github.com/OffXec/parameth.git /opt/parameth | |
sudo ln -s /opt/parameth/parameth.py /usr/local/bin/parameth | |
chmod +x /opt/parameth/parameth.py | |
git clone https://github.com/OffXec/changeme.git /opt/changeme | |
sudo ln -s /opt/changeme/changeme.py /usr/local/bin/changeme | |
chmod +x /opt/changeme/changeme.py | |
git clone https://github.com/OffXec/eternal_scanner.git /opt/escan | |
sudo ln -s /opt/escan/escan /usr/local/bin/escan | |
chmod +x /opt/escan/escan | |
git clone https://github.com/OffXec/WAScan.git /opt/wascan | |
sudo ln -s /opt/wascan/wascan.py /usr/local/bin/wascan | |
chmod +x /opt/wascan/wascan.py | |
git clone https://github.com/OffXec/skiptracer.git /opt/skiptracer | |
sudo ln -s /opt/skiptracer/skiptracer.py /usr/local/bin/skiptracer | |
chmod +x /opt/skiptracer/skiptracer.py | |
git clone https://github.com/OffXec/AutoNSE.git /opt/autonse | |
sudo ln -s /opt/autonse/autonse.sh /usr/local/bin/autonse | |
chmod +x /opt/autonse/autonse.sh | |
git clone https://github.com/OffXec/BlackWidow.git /opt/blackwidow | |
sudo ln -s /opt/blackwidow/blackwidow.py /usr/local/bin/blackwidow | |
chmod +x /opt/blackwidow/blackwidow.py | |
git clone https://github.com/OffXec/BinGoo.git /opt/bingoo | |
sudo ln -s /opt/bingoo/bingoo /usr/local/bin/bingoo | |
chmod +x /opt/bingoo/bingoo | |
git clone https://github.com/OffXec/jexboss.git /opt/jexboss | |
sudo ln -s /opt/jexboss/jexboss.py /usr/local/bin/jexboss | |
chmod +x /opt/jexboss/jexboss.py | |
git clone https://github.com/OffXec/XssPy.git /opt/xsspy | |
sudo ln -s /opt/xsspy/XssPy.py /usr/local/bin/xsspy | |
chmod +x /opt/xsspy/XssPy.py | |
git clone https://github.com/hatRiot/clusterd.git /opt/clusterd | |
sudo ln -s /opt/clusterd/clusterd.py /usr/local/bin/clusterd | |
chmod +x /opt/clusterd/clusterd.py | |
git clone https://github.com/OffXec/drupscan.git /opt/drupscan | |
sudo ln -s /opt/drupscan/drupscan.py /usr/local/bin/drupscan | |
chmod +x /opt/drupscan/drupscan.py | |
git clone https://github.com/vulnersCom/nmap-vulners.git /opt/vulners | |
git clone https://github.com/1N3/Sn1per.git /opt/sniper | |
# Other installs | |
mv /opt/vulners/vulners.nse /usr/share/nmap/scripts | |
pip install -r /opt/clusterd/requirements.txt | |
pip install -r /opt/jexboss/requires.txt | |
pip install -r /opt/blackwidow/requirements.txt | |
pip install -r /opt/skiptracer/requirements.txt | |
pip install -r /opt/wpseku/requirements.txt | |
pip install -r /opt/xsstrike/requirements.txt | |
pip install -r /opt/parameth/requirements.txt | |
pip install -r /opt/changeme/requirements.txt | |
bash /opt/sniper/install.sh | |
pip3 install dirhunt | |
gem install aquatone | |
pip install crypto | |
pip install impacket | |
pip install pyasn1-modules | |
go get github.com/haccer/subjack | |
go get github.com/Ice3man543/SubOver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment