Skip to content
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# UPDATE BY MR.DOEL 22/12/2019

- Golang Version
- Amass
- Subfinder
- Github-subdomain
- gobuster

# BBHT

Bug Bounty Hunting Tools is a script to install the most popular tools used while looking for vulnerabilities for a bug bounty program.
Expand Down
26 changes: 23 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ 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
wget https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz
sudo tar -xvf go1.13.5.linux-amd64.tar.gz
sudo mv go /usr/local
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
Expand Down Expand Up @@ -72,6 +72,8 @@ echo "Don't forget to set up AWS credentials!"
mkdir ~/tools
cd ~/tools/



#install aquatone
echo "Installing Aquatone"
go get github.com/michenriksen/aquatone
Expand Down Expand Up @@ -116,6 +118,7 @@ cd ~/tools/
echo "done"



echo "installing lazys3"
git clone https://github.com/nahamsec/lazys3.git
cd ~/tools/
Expand Down Expand Up @@ -160,6 +163,11 @@ pip install -r requirements.txt
cd ~/tools/
echo "done"

echo "installing github subdomain"
wget https://raw.githubusercontent.com/gwen001/github-search/master/github-subdomains.py
cd ~/tools/
echo "done"

echo "installing httprobe"
go get -u github.com/tomnomnom/httprobe
echo "done"
Expand All @@ -172,6 +180,19 @@ echo "installing waybackurls"
go get github.com/tomnomnom/waybackurls
echo "done"

echo "installing gobuster"
go get github.com/OJ/gobuster
echo "done"

echo "installing subfinder"
go get -v github.com/projectdiscovery/subfinder/cmd/subfinder
echo "done"

echo "installing amass"
export GO111MODULE=on
go get -v -u github.com/OWASP/Amass/v3/...
echo "done"

echo "installing crtndstry"
git clone https://github.com/nahamsec/crtndstry.git
echo "done"
Expand All @@ -186,7 +207,6 @@ cd ~/tools/
echo "done"



echo -e "\n\n\n\n\n\n\n\n\n\n\nDone! All tools are set up in ~/tools"
ls -la
echo "One last time: don't forget to set up AWS credentials in ~/.aws/!"