Teknik Web Security Reconnaissance untuk Bug Hunter 2026
Back to Blog
Cybersecurity June 28, 2026 2 min read

Teknik Web Security Reconnaissance untuk Bug Hunter 2026

Panduan lengkap web security reconnaissance — dari passive reconnaissance, subdomain enumeration, technology fingerprinting, hingga automated scanning tools terbaru.

Pendahuluan

Web security reconnaissance adalah fase paling krusial dalam bug hunting dan penetration testing. Di tahun 2026, tools dan teknik terus berevolusi seiring kompleksitas aplikasi web modern.

Passive Reconnaissance

Certificate Transparency Logs

BASH
curl -s "https://crt.sh/?q=%25.target.com&output=json" | jq '.[].name_value' | sort -u

DNS Enumeration

BASH
subfinder -d target.com -all -silent
amass enum -passive -d target.com

Technology Fingerprinting

BASH
wappalyzer https://target.com
whatweb https://target.com

Active Reconnaissance

Directory Bruteforce

BASH
ffuf -u https://target.com/FUZZ \
  -w directory-list-2.3-medium.txt \
  -fc 404,403 -t 100

Parameter Fuzzing

BASH
ffuf -u 'https://target.com/api/v1/users?FUZZ=test' \
  -w params.txt -fc 400

CORS Testing

BASH
curl -sI "https://api.target.com/" \
  -H "Origin: https://evil.com" | grep -i "access-control"

Tools Wajib 2026

ToolFungsi
SubfinderPassive subdomain enum
ffufFast web fuzzer
nucleiVulnerability scanner
httpxHTTP probe + technology detect
katanaWeb crawler
gau/waybackurlArchive URL gathering

Pipeline Automation

BASH
subfinder -d target.com | httpx | nuclei -t cves/ -o vulns.txt

Kesimpulan

Recon adalah kunci sukses bug hunting. Kombinasi passive + active reconnaissance dengan pipeline automation akan mengungkap permukaan serangan yang lebih luas.