github编辑

Subdomain Handling ?>> Subdomain Enumeration > Website Probing

Contents > Based on Domain > Subdomain Handling

Validating Active Subdomain

DNS Record Collection

cat subdomains.txt | dnsx -recon -silent -json -o dns.json &>/dev/null

IP Address Extraction

# Exclude CDN and internal IP
jq -r '. | select(.has_internal_ips|not) | try .a[]' dns.json | sort -u | 
    cdncheck -silent -exclude -o ips.txt &>/dev/null

Port Scanning

# Exclude virtual hosts and scan nmap Top 3000 port
nmap -iL ips.txt -vv -T4 --top-ports 3000 -n --open -oX nmap.xml

Website Probing

Screenshot

Fingerprint Website

最后更新于