mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-01 06:54:16 +00:00
Update cheatsheets
This commit is contained in:
@@ -6,28 +6,28 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# gobuster
|
||||
|
||||
> Brute-forces hidden paths on web servers and more.
|
||||
> More information: <https://github.com/OJ/gobuster>.
|
||||
> More information: <https://github.com/OJ/gobuster#modes>.
|
||||
|
||||
- Discover directories and files that match in the wordlist:
|
||||
|
||||
`gobuster dir --url {{https://example.com/}} --wordlist {{path/to/file}}`
|
||||
`gobuster dir {{[-u|--url]}} {{https://example.com/}} {{[-w|--wordlist]}} {{path/to/file}}`
|
||||
|
||||
- Discover subdomains:
|
||||
|
||||
`gobuster dns --domain {{example.com}} --wordlist {{path/to/file}}`
|
||||
`gobuster dns {{[-d|--domain]}} {{example.com}} {{[-w|--wordlist]}} {{path/to/file}}`
|
||||
|
||||
- Discover Amazon S3 buckets:
|
||||
|
||||
`gobuster s3 --wordlist {{path/to/file}}`
|
||||
`gobuster s3 {{[-w|--wordlist]}} {{path/to/file}}`
|
||||
|
||||
- Discover other virtual hosts on the server:
|
||||
|
||||
`gobuster vhost --url {{https://example.com/}} --wordlist {{path/to/file}}`
|
||||
`gobuster vhost {{[-u|--url]}} {{https://example.com/}} {{[-w|--wordlist]}} {{path/to/file}}`
|
||||
|
||||
- Fuzz the value of a parameter:
|
||||
|
||||
`gobuster fuzz --url {{https://example.com/?parameter=FUZZ}} --wordlist {{path/to/file}}`
|
||||
`gobuster fuzz {{[-u|--url]}} {{https://example.com/?parameter=FUZZ}} {{[-w|--wordlist]}} {{path/to/file}}`
|
||||
|
||||
- Fuzz the name of a parameter:
|
||||
|
||||
`gobuster fuzz --url {{https://example.com/?FUZZ=value}} --wordlist {{path/to/file}}`
|
||||
`gobuster fuzz {{[-u|--url]}} {{https://example.com/?FUZZ=value}} {{[-w|--wordlist]}} {{path/to/file}}`
|
||||
|
||||
Reference in New Issue
Block a user