Skip to content

Instantly share code, notes, and snippets.

@hoodoer
Last active March 27, 2024 18:08
Show Gist options
  • Save hoodoer/665fe8211de851715f7b0e7cb774e78e to your computer and use it in GitHub Desktop.
Save hoodoer/665fe8211de851715f7b0e7cb774e78e to your computer and use it in GitHub Desktop.
Gobuster command line examples, with and without proxy
Using the proxy (burp) can result in rediculously huge project files. You've been warned.
gobuster dir -u https://SOMEURL.com -w /some/word/list.txt -p http://localhost:8080 -k -l
gobuster dir -u https://SOMEURL.com -w /some/word/list.txt -k -l
If you can use --wildcard if it's choking on responses, however if it's sending back 302's for nonexistant,
just change up the accepted status codes:
gobuster dir -u https://SOMNEURL.com -w /som/word/list.txt -k -l -s 200,204,301,307,401,403
Change the timeout like so:
--timeout 3s
@bhayestech
Copy link

hi, thanks for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment