gobuster
gobuster copied to clipboard
Gobuster 2.0.1-1 - 2 errors occured (-w and -u must be specified)
I have the latest version of both Go and Gobuster but i cant install gobuster with "go install ..." neither from source by cloning the repo and building it. Therefore the only way I can install it is through "sudo apt install gobuster" which installs version 2.0.1-1.
Although, whenever I try to run any command it gives me the following message:
[!] 2 errors occurred:
* WordList (-w): Must be specified (use -w -
for stdin)
* Url/Domain (-u): Must be specified
Even if I use this flags I get the same error and cant figure out why.
Same issue here before solving it. At first I had installed gobuster with the apt tool and when this issue revealed to me, I then removed gobuster by the following command:
sudo apt remove gobuster
Then I have reinstalled it through go:
go install github.com/OJ/gobuster/v3@latest
Now it works fine.