nahamsec / lazyrecon

This script is intended to automate your reconnaissance process in an organized fashion
1.88k stars 569 forks source link

httprobe, waybackurls, unfurl #21

Open 0blio opened 4 years ago

0blio commented 4 years ago

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?

plenumlab commented 4 years ago

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 
0blio commented 4 years ago

It doesn't seem to work. I also tried to reinstall all in a fresh VM.

plenumlab commented 4 years ago

what os + version you have

0blio commented 4 years ago

I tried on the following distros:

plenumlab commented 4 years ago

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

d0xo commented 4 years ago

I had this issue on a VPS, it was GO related and path and root was not configured correctly

sushantdhopat commented 4 years ago

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?

sushantdhopat commented 4 years ago

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 <notifications@github.com 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 .

iamayushag commented 3 years ago

Capture Any Fix

sushantdhopat commented 3 years ago

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 .

hetmehtaa commented 3 years ago

You are typing go git github.com/tomnomnom/waybackurls, Try to insert -u.

go get -u github.com/tomnomnom/waybackurls****

kabilan1290 commented 3 years ago

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.

HariKishor3 commented 3 years ago

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

HariKishor3 commented 3 years ago

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?

iamayushag commented 3 years ago

Yes

On Sun, Jan 24, 2021 at 5:31 PM HariKishor3 notifications@github.com 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 .

--

storenth commented 3 years ago

Looks like no issue related to lazyrecon. I suggest to close it.

KIRANNAIR1 commented 3 years ago

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.....