hakluke / hakrawler

Simple, fast web crawler designed for easy, quick discovery of endpoints and assets within a web application
https://hakluke.com
GNU General Public License v3.0
4.41k stars 483 forks source link

run issue #112

Closed alewv closed 2 years ago

alewv commented 2 years ago

hi, when i run ~/go/bin/hakrawler i get following: No urls detected. Hint: cat urls.txt | hakrawler

i don't know what do i wrong. i tried to run it as root/sudo and i still get the same output. i would appreciate if someone can help. thanks.

hakluke commented 2 years ago

Hey!

Check out the hint:

cat urls.txt | hakrawler

You need to pipe the seed URLs into the tool, for example:

echo https://www.google.com | hakrawler
alewv commented 2 years ago

I pipe the seed urls into the tool like on the example but somehow I am getting these: hakrawler: command not found my go version is: go1.17.3 linux/amd64

hakluke commented 2 years ago

Unless you add hakrawler to your $PATH, you will need to specify the full directory. i.e. ~/go/bin/hakrawler

alewv commented 2 years ago

got it! thank you so much for your patience and help.