From 0a3af1b1525cf6d5078a1678fa7110b74db1ae67 Mon Sep 17 00:00:00 2001 From: sawshep <60883209+sawshep@users.noreply.github.com> Date: Sat, 30 Jan 2021 19:45:12 +0000 Subject: [PATCH] gobuster: add page (#5188) --- pages/common/gobuster.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/gobuster.md diff --git a/pages/common/gobuster.md b/pages/common/gobuster.md new file mode 100644 index 000000000..e68aa317f --- /dev/null +++ b/pages/common/gobuster.md @@ -0,0 +1,28 @@ +# gobuster + +> Brute-forces hidden paths on web servers and more. +> More information: . + +- 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}}`