Newer
Older
#!/bin/bash
# Nmap
# John
# Nikto
# Dirb
# XSStrike
# SQLMap
# Wfuzz
# Fuff
# Gobuster
# Dirbuster
# Exegol
# Make a directory to store the tools
mkdir /root/tools
# Clone the XSStrike repository
git clone https://github.com/s0md3v/XSStrike.git
mv /XSStrike /root/tools
# Pip install Wfuzz
pip3 install wfuzz
# Python3 pip install Exegol
python3 -m pip install exegol
# Make a directory to store the tools
mkdir -p /root/tools
# Clone the XSStrike repository
git clone https://github.com/s0md3v/XSStrike.git /root/tools/XSStrike
# Create a symbolic link to xsstrike.py and make it executable
ln -s /root/tools/XSStrike/xsstrike.py /usr/local/bin/xsstrike
chmod +x /usr/local/bin/xsstrike
# Clone the metasploit repository
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
# Make the msfinstall script executable and install metasploit then clean up
chmod 755 msfinstall
./msfinstall
rm msfinstall