Gobuster, Go ile yazılmış, directory / file brute force, DNS subdomain discovery ve VHost keşfi için kullanılan hızlı bir içerik keşif aracıdır. Pentest ve bug bounty süreçlerinde en yaygın kullanılan discovery araçlarından biridir.
# Daha detaylı incelemek isterseniz Turkhacks Resmi Github reposundan bakabilirsiniz.
Markdown (GitHub flavored):
### Turkhacks.com | Bug Researchers Team
GitHub: https://github.com/turkhacks-com
Gobuster GitHub: https://github.com/OJ/gobuster
# DIRECTORY / CONTENT DISCOVERY
## Temel dizin taraması
gobuster dir -u http://target.com -w /path/to/wordlist.txt
## HTTP protokolü ile dizin taraması (thread artırılmış)
gobuster dir -u http://target.com -w /path/to/wordlist.txt -t 50
## HTTPS üzerinden dizin taraması
gobuster dir -u https://target.com -w /path/to/wordlist.txt
## URL listesi ile dizin taraması
gobuster dir -u http://target.com -w urls.txt
---
# SUBDOMAIN / DNS DISCOVERY
## Subdomain taraması
gobuster dns -d target.com -w /path/to/subdomain_wordlist.txt
## DNS resolver belirleyerek hızlı subdomain taraması
gobuster dns -d target.com -w /path/to/subdomain_wordlist.txt -t 50 --dns-resolver 8.8.8.8
---
# OUTPUT / EXTENSION
## Dosya uzantıları ve çıktı kaydı
gobuster dir -u http://target.com \
-w /path/to/wordlist.txt \
-x .php,.html \
-o output.txt
---
#İpuçları
.bak, .old, .zip uzantıları mutlaka eklenmelidir
DNS modunda resolver belirtmek hız ve doğruluk sağlar
Çıktıları Nuclei / ffuf / httpx zincirinde kullanın
Büyük hedeflerde -t 50+ ciddi hız kazandırır



