Last active
March 4, 2021 17:15
-
-
Save Sicks3c/6e59ff66d69f0c79246ccfa1314e4976 to your computer and use it in GitHub Desktop.
This file contains 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 | |
echo "Installing amass" | |
export GO111MODULE=on; go get -v github.com/OWASP/Amass/v3/... | |
echo "anew" | |
bash -c 'go get -u github.com/tomnomnom/anew' | |
echo -e "Installing anti-burl" | |
bash -c 'go get -u github.com/tomnomnom/hacks' | |
echo -e "Installing aquatone" | |
bash -c 'go get -u github.com/michenriksen/aquatone' | |
echo -e 'Installing assetfinder' | |
bash -c 'go get -u github.com/tomnomnom/assetfinder' | |
echo -e 'Installing dalfox' | |
bash -c 'GO111MODULE=on go get -v github.com/hahwul/dalfox/v2' | |
echo -e 'Installing dnsprobe' | |
bash -c 'GO111MODULE=on go get -v github.com/projectdiscovery/dnsprobe' | |
echo -e 'Installing dnsvalidator' | |
bash -c 'git clone https://github.com/vortexau/dnsvalidator' | |
bash -c 'cd dnsvalidator' | |
bash -c 'python3 setup.py install' | |
bash -c 'cd ../' | |
echo 'Installing ffuf' | |
bash -c 'go get -u github.com/ffuf/ffuf' | |
echo 'Installing gau' | |
bash -c ' go get -u github.com/lc/gau' | |
echo 'Installing getjs' | |
bash -c 'go get github.com/003random/getJS' | |
echo 'Installing gf' | |
bash -c 'go get -u github.com/tomnomnom/gf' | |
echo -e 'Installing gobuster' | |
bash -c 'go get github.com/OJ/gobuster' | |
echo -e 'Installing Gowitness' | |
bash -c 'go get -u github.com/sensepost/gowitness' | |
echo -e 'github.com/hakluke/hakrawler' | |
bash -c 'go get -u github.com/hakluke/hakrawler' | |
echo -e 'Installing httprobe' | |
bash -c 'go get -u github.com/tomnomnom/httprobe' | |
echo -e 'Installing jq' | |
bash -c 'apt install jq' | |
echo -e 'Installing kxss' | |
bash -c 'go get github.com/Emoe/kxss' | |
echo -e 'Installing nmap' | |
bash -c 'apt install nmap' | |
echo -e 'Installing projectdiscovery chaos' | |
bash -c 'GO111MODULE=on go get -v github.com/projectdiscovery/chaos-client/cmd/chaos' | |
echo -e 'Installing projectdiscovery httpx' | |
bash -c 'GO111MODULE=on go get -v github.com/projectdiscovery/httpx/cmd/httpx' | |
echo -e 'Installing projectdiscovery nuclei' | |
bash -c 'GO111MODULE=on go get -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei' | |
echo -e 'Installing projectdiscovery shuffledns' | |
bash -c 'GO111MODULE=on go get -v github.com/projectdiscovery/shuffledns/cmd/shuffledns' | |
echo -e 'Installing SQLMap' | |
bash -c 'apt install sqlmap' | |
echo -e 'Installing Subgen' | |
bash -c 'go get -u github.com/pry0cc/subgen' | |
echo -e 'Installing subjack' | |
bash -c 'go get github.com/haccer/subjack' | |
echo -e 'Installing urlprobe' | |
bash -c 'go get -u github.com/1ndianl33t/urlprobe' | |
echo -e 'Installing waybackurls' | |
bash -c 'go get -u github.com/tomnomnom/waybackurls' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment