Tools & Utility

Gobuster

A fast directory and DNS subdomain brute-forcing tool written in Go.

#fuzzing#directory#bruteforce#go

Gobuster: Directory and DNS Subdomain Bruteforcer

Gobuster is an open-source, fast directory and DNS subdomain brute-forcing tool written in Go.

Why Use Gobuster?

  • Fast: Written in Go, optimized for performance
  • Flexible: Supports both directory and DNS brute-forcing
  • Easy to use: Simple CLI with various options
  • Multi-threaded: Accelerated brute-force attacks

Installation

bash
sudo apt update && sudo apt install gobuster -y

Usage

bash
# Directory Brute Forcing
gobuster dir -u https://example.com -w /path/to/wordlist.txt

DNS Subdomain Brute Forcing

gobuster dns -d example.com -w /path/to/subdomain_wordlist.txt

Multi-threaded

gobuster dir -u https://example.com -w /path/to/wordlist.txt -t 50

Filter by status code

gobuster dir -u https://example.com -w /path/to/wordlist.txt -s "200,301" -l

Recursive

gobuster dir -u https://example.com -w /path/to/wordlist.txt -r

JSON Output

gobuster dir -u https://example.com -w /path/to/wordlist.txt -o results.json