Gobuster is a powerful tool used in penetration testing to discover hidden directories and files on web servers.
What is Enumeration?
Enumeration is the process of extracting useful information from a target system. In web security, this often means finding hidden endpoints.
Basic Usage
gobuster dir -u https://target.com -w /usr/share/wordlists/common.txt
Important Options
- -u → Target URL
- -w → Wordlist
- -x → File extensions
- -t → Threads
Why It Matters
Hidden directories may expose sensitive data such as APIs, admin panels, or backups.
Ethical use is critical — only test systems you have permission to assess.