Last active
January 15, 2021 17:43
-
-
Save mrjamiebowman/a4a36847fb67cec5bcc91b8f1fe236f0 to your computer and use it in GitHub Desktop.
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 | |
# add sbin to path | |
export PATH=$PATH:/usr/sbin/ | |
echo $PATH | |
sudo apt update && sudo apt full-upgrade -y | |
cd /tmp | |
wget https://bootstrap.pypa.io/get-pip.py | |
python get-pip.py | |
# aliases | |
echo "alias gt='git log --graph --abbrev-commit --decorate --oneline --all'" >> ~/.bashrc | |
# 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 | |
sudo git clone https://github.com/rasta-mouse/Sherlock/blob/master/Sherlock.ps1 | |
sudo git clone https://github.com/abatchy17/WindowsExploits |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment