This will test the target web application for supported HTTP methods.
: Displays help information about Gobuster and its usage. gobuster commands upd
gobuster vhost -u https://example.com -w vhosts.txt \ --domain example.com \ --tls-sni \ # NEW: force SNI --timeout 10s \ --append-domain \ # automatically append domain to word --exclude-length 0,94 # filter out false positives by response length This will test the target web application for
to pull the latest version from the Kali or Debian repositories. Go (Direct): If you prefer the latest build from source, use: go install github.com/OJ/gobuster/v3@latest macOS (Homebrew): brew upgrade gobuster Core Commands & Modes Gobuster operates in specific depending on your target. The general syntax is gobuster [mode] [options] Basic Command Example Find hidden files & directories gobuster dir -u http://site.com -w wordlist.txt Discover subdomains gobuster dns -d site.com -w subdomains.txt Discover virtual hosts gobuster vhost -u http://site.com -w vhosts.txt Find AWS S3 buckets gobuster s3 -w bucket-names.txt in URLs/headers gobuster fuzz -u http://site.com -w list.txt Essential Flags gobuster | Kali Linux Tools Go (Direct): If you prefer the latest build
Or for a specific mode:
gobuster fuzz -u "https://example.com/api/v1/user/FUZZ" \ -w ids.txt \ --method PUT \ --header "Content-Type: application/json" \ --data '"name": "FUZZ"' \ --fail-status-codes 500,502,503