Last active
August 9, 2020 12:04
-
-
Save danzee1/c879a06e84642053311cc03f36d65844 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 | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo add-apt-repository -y ppa:apt-fast/stable < /dev/null | |
sudo echo debconf apt-fast/maxdownloads string 16 | debconf-set-selections | |
sudo echo debconf apt-fast/dlflag boolean true | debconf-set-selections | |
sudo echo debconf apt-fast/aptmanager string apt-get | debconf-set-selections | |
sudo apt install -y apt-fast | |
sudo apt-fast install -y apt-transport-https | |
sudo apt-fast install -y libcurl4-openssl-dev | |
sudo apt-fast install -y libssl-dev | |
sudo apt-fast install -y jq | |
sudo apt-fast install -y ruby-full | |
sudo apt-fast install -y libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev build-essential libgmp-dev zlib1g-dev | |
sudo apt-fast install -y build-essential libssl-dev libffi-dev python-dev | |
sudo apt-fast install -y python-setuptools | |
sudo apt-fast install -y libldns-dev | |
sudo apt-fast install -y python3-pip | |
sudo apt-fast install -y python-dnspython | |
sudo apt-fast install -y git | |
sudo apt-fast install -y npm | |
sudo apt-fast install -y nmap phantomjs | |
sudo apt-fast install -y gem | |
sudo apt-fast install -y perl | |
sudo apt-fast install -y parallel | |
pip3 install jsbeautifier | |
echo "" | |
echo "" | |
sar 1 1 >/dev/null | |
#Setting shell functions/aliases | |
echo "${GREEN} [+] Setting bash_profile aliases ${RESET}" | |
curl https://raw.githubusercontent.com/unethicalnoob/aliases/master/bashprofile > ~/.bash_profile | |
echo "${BLUE} If it doesn't work, set it manually ${RESET}" | |
echo "" | |
echo "" | |
sar 1 1 >/dev/null | |
GO111MODULE=on go get -v github.com/projectdiscovery/subfinder/cmd/subfinder | |
GO111MODULE=on go get -u -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei | |
GO111MODULE=on go get -v github.com/projectdiscovery/naabu/cmd/naabu | |
GO111MODULE=on go get -u -v github.com/projectdiscovery/httpx/cmd/httpx | |
GO111MODULE=on go get -u -v github.com/projectdiscovery/shuffledns/cmd/shuffledns | |
GO111MODULE=on go get -u -v github.com/projectdiscovery/dnsprobe | |
go get github.com/ffuf/ffuf | |
GO111MODULE=on go get -v github.com/OWASP/Amass/v3/... | |
go get -u github.com/haccer/subjack | |
go get -u github.com/lc/subjs | |
go get -u github.com/lc/gau | |
go get -u github.com/tomnomnom/assetfinder | |
go get -u github.com/tomnomnom/waybackurls | |
go get -u github.com/tomnomnom/httprobe | |
wget https://gist.github.com/jhaddix/86a06c5dc309d08580a018c66354a056/archive/96f4e51d96b2203f19f6381c8c545b278eaa0837.zip && unzip 96f4e51d96b2203f19f6381c8c545b278eaa0837.zip > wordlist | |
rm -r *.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment