From 4a5227139fa8c638cf547733b57d1fcab4ea6541 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 16 Dec 2021 18:58:10 -0500 Subject: [PATCH] Period/dot sign was missing in the code thats why .recon_profile was not getting ready. Also GO tools where not working in go1.17.5 so had make some edit in go tools setup module --- install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 install.sh diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index e203de7..0824747 --- a/install.sh +++ b/install.sh @@ -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" @@ -74,7 +74,7 @@ cd ~/tools/ #install aquatone echo "Installing Aquatone" -go get github.com/michenriksen/aquatone +go install github.com/michenriksen/aquatone@latest echo "done" #install chromium @@ -161,15 +161,15 @@ cd ~/tools/ echo "done" echo "installing httprobe" -go get -u github.com/tomnomnom/httprobe +go install github.com/tomnomnom/httprobe@latest echo "done" echo "installing unfurl" -go get -u github.com/tomnomnom/unfurl +go install github.com/tomnomnom/unfurl@latest echo "done" echo "installing waybackurls" -go get github.com/tomnomnom/waybackurls +go install github.com/tomnomnom/waybackurls@latest echo "done" echo "installing crtndstry"