gobuster

Installation
SKILL.md
Contains Shell Commands

This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.

Gobuster Directory Scanner

Discover hidden directories and enumerate subdomains using gobuster.

Tool Status

  • Tool installed: !command -v gobuster > /dev/null 2>&1 && echo "YES -- $(gobuster version 2>/dev/null | head -1)" || echo "NO -- Install: brew install gobuster (macOS) | go install github.com/OJ/gobuster/v3@latest"
  • Wrapper scripts available: !test -f scripts/gobuster/discover-directories.sh && echo "YES -- use wrapper scripts for structured JSON output" || echo "NO -- using standalone mode with direct commands"

Mode: Wrapper Scripts Available

If wrapper scripts are available (shown as YES above), prefer these commands. They provide structured JSON output and educational context.

Directory Discovery

  • bash scripts/gobuster/discover-directories.sh <target> <wordlist> -j -x -- Discover hidden directories and files on web servers

Subdomain Enumeration

  • bash scripts/gobuster/enumerate-subdomains.sh <domain> <wordlist> -j -x -- Enumerate subdomains using DNS brute-forcing
Installs
1
GitHub Stars
1
First Seen
Mar 7, 2026
gobuster — patrykquantumnomad/networking-tools