1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 02:26:00 +02:00
tldr/pages/common/gobuster.md

29 lines
897 B
Markdown
Raw Normal View History

2021-01-30 19:45:12 +00:00
# gobuster
> Brute-forces hidden paths on web servers and more.
> More information: <https://github.com/OJ/gobuster#modes>.
2021-01-30 19:45:12 +00:00
- Discover directories and files that match in the wordlist:
`gobuster dir {{[-u|--url]}} {{https://example.com/}} {{[-w|--wordlist]}} {{path/to/file}}`
2021-01-30 19:45:12 +00:00
- Discover subdomains:
`gobuster dns {{[-d|--domain]}} {{example.com}} {{[-w|--wordlist]}} {{path/to/file}}`
2021-01-30 19:45:12 +00:00
- Discover Amazon S3 buckets:
`gobuster s3 {{[-w|--wordlist]}} {{path/to/file}}`
2021-01-30 19:45:12 +00:00
- Discover other virtual hosts on the server:
`gobuster vhost {{[-u|--url]}} {{https://example.com/}} {{[-w|--wordlist]}} {{path/to/file}}`
2021-01-30 19:45:12 +00:00
- Fuzz the value of a parameter:
`gobuster fuzz {{[-u|--url]}} {{https://example.com/?parameter=FUZZ}} {{[-w|--wordlist]}} {{path/to/file}}`
2021-01-30 19:45:12 +00:00
- Fuzz the name of a parameter:
`gobuster fuzz {{[-u|--url]}} {{https://example.com/?FUZZ=value}} {{[-w|--wordlist]}} {{path/to/file}}`