Skip to content
Snippets Groups Projects
Commit 94908a45 authored by Nathan Rodet's avatar Nathan Rodet
Browse files

feat: added tools and lists

parent 8ed2b8b8
No related branches found
No related tags found
No related merge requests found
Pipeline #97125 failed
#!/bin/bash
# Curl lists into the /root/lists directory
mkdir -p /root/lists
git clone https://github.com/danielmiessler/SecLists /root/lists/SecLists
git clone https://github.com/berzerk0/Probable-Wordlists /root/lists/Probable-Wordlists
git clone https://github.com/swisskyrepo/PayloadsAllTheThings /root/lists/PayloadsAllTheThings
......@@ -11,6 +11,7 @@
# Gobuster
# Dirbuster
# Exegol
# Metasploit
# Make a directory to store the tools
mkdir /root/tools
......@@ -33,4 +34,12 @@ 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
\ No newline at end of file
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
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment