Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/gobuster Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
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>.
- Discover directories and files that match in the wordlist:
`gobuster dir --url {{https://example.com/}} --wordlist {{path/to/file}}`
- Discover subdomains:
`gobuster dns --domain {{example.com}} --wordlist {{path/to/file}}`
- Discover Amazon S3 buckets:
`gobuster s3 --wordlist {{path/to/file}}`
- Discover other virtual hosts on the server:
`gobuster vhost --url {{https://example.com/}} --wordlist {{path/to/file}}`
- Fuzz the value of a parameter:
`gobuster fuzz --url {{https://example.com/?parameter=FUZZ}} --wordlist {{path/to/file}}`
- Fuzz the name of a parameter:
`gobuster fuzz --url {{https://example.com/?FUZZ=value}} --wordlist {{path/to/file}}`