Last active
September 20, 2023 18:01
-
-
Save mrjamiebowman/20a75ae1ba26170d2fd098e93dcf229d to your computer and use it in GitHub Desktop.
ParrotOS Setup
This file contains hidden or 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 | |
# ufw firewall | |
sudo ufw enable | |
# secure delete & secure mem | |
sudo apt-get install secure-delete | |
sudo apt-get install smem | |
# tools | |
sudo apt-get install -y html2text | |
sudo apt-get install -y enum4linux | |
sudo apt-get install -y sshpass | |
sudo apt-get install -y steghide | |
sudo apt-get install -y nasm | |
# pips | |
pip install uncompyle6 | |
pip install shodan | |
pip install pyfiglet | |
pip install git-filter-repo | |
# git repos | |
cd /opt/ | |
sudo git clone https://github.com/swisskyrepo/PayloadsAllTheThings.git | |
sudo git clone https://github.com/Mebus/cupp.git | |
sudo git clone https://github.com/wireghoul/dotdotpwn.git | |
sudo git clone https://github.com/Tib3rius/AutoRecon.git | |
sudo git clone https://github.com/scipag/vulscan.git | |
sudo git clone https://github.com/1N3/Sn1per.git | |
sudo git clone https://github.com/int0x33/nc.exe.git | |
sudo git clone https://github.com/AonCyberLabs/Windows-Exploit-Suggester.git | |
# searchsploit | |
sudo git clone https://github.com/offensive-security/exploit-database.git | |
cd /opt/exploit-database/ | |
sudo apt update && apt -y install exploitdb | |
# sniper | |
#cd Sn1per | |
#chmod +x install.sh | |
#./install.sh | |
cd ~/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment