gobuster
go install github.com/OJ/gobuster/v3@latestDirectory Mode (dir)
# Basic directory scan
gobuster dir -u http://TARGET -w /usr/share/seclists/Discovery/Web-Content/common.txt
# With extensions
gobuster dir -u http://TARGET -w wordlist.txt -x php,html,txt,bak
# More threads
gobuster dir -u http://TARGET -w wordlist.txt -t 50Filtering
# Exclude status codes (blacklist)
gobuster dir -u http://TARGET -w wordlist.txt -b 302,404
# Include only specific codes
gobuster dir -u http://TARGET -w wordlist.txt -s 200,301
# Exclude response size
gobuster dir -u http://TARGET -w wordlist.txt --exclude-length 0,404Wildcard / dynamic 301 responses
Options
Flag
Description
VHost Mode (vhost)
DNS Mode (dns)
Authentication
Common Wordlists
Quick Reference
Last updated