Subdomain Handling ?>> Subdomain Enumeration > Website Probing
Validating Active Subdomain
DNS Record Collection
cat subdomains.txt | dnsx -recon -silent -json -o dns.json &>/dev/nullIP 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/nullPort Scanning
# Exclude virtual hosts and scan nmap Top 3000 port
nmap -iL ips.txt -vv -T4 --top-ports 3000 -n --open -oX nmap.xmlWebsite Probing
Screenshot
Fingerprint Website
最后更新于