Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support for subfinder and few enhancements #36

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Bug Bounty Hunting Tools is a script to install the most popular tools used whil
- Waybackurls
- Httprobe
- Seclists collection
- Subfinder

This script also grabs the aliases created and published here:
https://github.com/nahamsec/recon_profile
Expand Down
13 changes: 10 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sudo apt-get install -y xargs
echo "installing bash_profile aliases from recon_profile"
git clone https://github.com/nahamsec/recon_profile.git
cd recon_profile
cat bash_profile >> ~/.bash_profile
cat .bash_profile >> ~/.bash_profile
source ~/.bash_profile
cd ~/tools/
echo "done"
Expand All @@ -38,8 +38,9 @@ select choice in "${choices[@]}"; do
yes)

echo "Installing Golang"
wget https://dl.google.com/go/go1.13.4.linux-amd64.tar.gz
sudo tar -xvf go1.13.4.linux-amd64.tar.gz
LATEST_GO=$(wget -qO- https://golang.org/dl/ | grep -oP 'go([0-9\.]+)\.linux-amd64\.tar\.gz' | head -n 1 | grep -oP 'go[0-9\.]+' | grep -oP '[0-9\.]+' | head -c -2)
wget https://dl.google.com/go/go$LATEST_GO.linux-amd64.tar.gz
sudo tar -xvf go$LATEST_GO.linux-amd64.tar.gz
sudo mv go /usr/local
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
Expand Down Expand Up @@ -72,6 +73,12 @@ echo "Don't forget to set up AWS credentials!"
mkdir ~/tools
cd ~/tools/

#install subfinder
echo "Installing subfinder"
go get -v github.com/projectdiscovery/subfinder/cmd/subfinder
echo -e "[+] Set up API keys for subfinder...if you wish to!"
echo "done"

#install aquatone
echo "Installing Aquatone"
go get github.com/michenriksen/aquatone
Expand Down