lazyrecon
lazyrecon copied to clipboard
httprobe, waybackurls, unfurl
I got the following errors:
./lazyrecon.sh: line 74: httprobe: command not found
./lazyrecon.sh: line 49: waybackurls: command not found
./lazyrecon.sh: line 50: unfurl: command not found
The other tools are working perfectly, so It seems to be a problem related to the go
installation.
Any hints?
Yes this is a go issue, did you use the install script? you can try to do it manually the following steps should solve your issue
wget https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz
sudo tar -xvf go1.12.7.linux-amd64.tar.gz
sudo mv go /usr/local
echo 'export GOROOT=/usr/local/go' >> ~/.bash_profile
echo 'export GOPATH=$HOME/go' >> ~/.bash_profile
echo 'export PATH=$GOPATH/bin:$GOROOT/bin:$PATH' >> ~/.bash_profile
It doesn't seem to work. I also tried to reinstall all in a fresh VM.
what os + version you have
I tried on the following distros:
- Kali Linux last version
- Fresh Linux Mint installation
first check if go is intalled and added to your path.
you can try sudo apt-get install golang-go
go version
then check go paths
go env
Make sur that GOROOT and GOPATH are properly configured
if that works intall the tools manually
go get -u github.com/tomnomnom/unfurl
go get github.com/tomnomnom/waybackurls
go get -u github.com/tomnomnom/httprobe
then check the tools are working
unfurl -h
I had this issue on a VPS, it was GO related and path and root was not configured correctly
i have install httpprobe usimh this command "go get -u github.com/tomnomnom/httprobe" but at the time of using i pass th command "cat /root/Desktop/domains.txt | httprobe" i got this error "bash: httprobe: command not found" so whats happen plz any help?
thanks sir its working .
[image: Mailtrack] https://mailtrack.io?utm_source=gmail&utm_medium=signature&utm_campaign=signaturevirality5& Sender notified by Mailtrack https://mailtrack.io?utm_source=gmail&utm_medium=signature&utm_campaign=signaturevirality5& 06/14/20, 12:31:49 PM
On Sat, Jun 13, 2020, 10:15 PM Blank <[email protected] wrote:
i have install httpprobe usimh this command "go get -u github.com/tomnomnom/httprobe" but at the time of using i pass th command "cat /root/Desktop/domains.txt | httprobe" i got this error "bash: httprobe: command not found" so whats happen plz any help?
enter the command "source ~/.bash_profile" (without the quotes) and it should work.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/nahamsec/lazyrecon/issues/21#issuecomment-643648113, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANVBJKYLV6CTTW4L5MGVCVDRWOUK3ANCNFSM4IJNZKBQ .
Any Fix
Fist go to $>cd go/bin
then you see there waybackurls then type following cmd.
$> cp waybackurls /usr/local/bin
And see your error is getting solve .
You are typing go git github.com/tomnomnom/waybackurls, Try to insert -u.
go get -u github.com/tomnomnom/waybackurls
Fist go to $>cd go/bin then you see there waybackurls then type following cmd. $> cp waybackurls /usr/local/bin
And see your error is getting solve .
This fixed my issue.Thanks a lot.
Fist go to $>cd go/bin then you see there waybackurls then type following cmd. $> cp waybackurls /usr/local/bin
And see your error is getting solve .
Fist go to $>cd go/bin then you see there waybackurls then type following cmd. $> cp waybackurls /usr/local/bin And see your error is getting solve .
This fixed my issue.Thanks a lot.
when i give go/bin its showing no such file or directory what to do , i tried it in both root and normal user in both it shows the same error message
Fist go to $>cd go/bin then you see there waybackurls then type following cmd. $> cp waybackurls /usr/local/bin And see your error is getting solve .
This fixed my issue.Thanks a lot.
i tried this but it is showing no such file or directory ? and i gone through the files system there is no such folder as go . have you installed go manually or?
Yes
On Sun, Jan 24, 2021 at 5:31 PM HariKishor3 [email protected] wrote:
Fist go to $>cd go/bin then you see there waybackurls then type following cmd. $> cp waybackurls /usr/local/bin And see your error is getting solve .
This fixed my issue.Thanks a lot.
i tried this but it is showing no such file or directory ? and i gone through the files system there is no such folder as go . have you installed go manually or?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/nahamsec/lazyrecon/issues/21#issuecomment-766336246, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMEGJROECBWHHGKTWAER7V3S3QDYRANCNFSM4IJNZKBQ .
--
Looks like no issue related to lazyrecon. I suggest to close it.
Fist go to $>cd go/bin then you see there waybackurls then type following cmd. $> cp waybackurls /usr/local/bin
And see your error is getting solve .
Thank you so much, It worked for me.....