Skip to content
Open
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
14 changes: 13 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ cd ~/tools/
#install aquatone
echo "Installing Aquatone"
go get github.com/michenriksen/aquatone
cd ~/go/bin/

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why the extra cd?
you can move files from a directory to a directory

sudo mv aquatone /usr/local/bin
cd ~/tools/
echo "done"

#install chromium
Expand Down Expand Up @@ -162,14 +165,23 @@ echo "done"

echo "installing httprobe"
go get -u github.com/tomnomnom/httprobe
cd ~/go/bin/
sudo mv httprobe /usr/local/bin
cd ~/tools/
echo "done"

echo "installing unfurl"
go get -u github.com/tomnomnom/unfurl
go get -u github.com/tomnomnom/unfurl
cd ~/go/bin/
sudo mv unfurl /usr/local/bin
cd ~/tools/
echo "done"

echo "installing waybackurls"
go get github.com/tomnomnom/waybackurls
cd ~/go/bin/
sudo mv waybackurls /usr/local/bin
cd ~/tools/
echo "done"

echo "downloading Seclists"
Expand Down