Last active
March 27, 2024 18:08
-
-
Save hoodoer/665fe8211de851715f7b0e7cb774e78e to your computer and use it in GitHub Desktop.
Gobuster command line examples, with and without proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi, thanks for this.