15 lines
552 B
Bash
Executable file
15 lines
552 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
function log() {
|
|
echo -e "\033[33m$@\033[0m"
|
|
}
|
|
|
|
# Resolve the CNAME chain of all the known subdomains for later analysis
|
|
log "Compiling subdomain lists..."
|
|
pv subdomains/*.list | sort -u > temp/all_subdomains.list
|
|
# Sort by last character to utilize the DNS server caching mechanism
|
|
pv temp/all_subdomains.list | rev | sort | rev > temp/all_subdomains_reversort.list
|
|
./resolve_subdomains.py --input temp/all_subdomains_reversort.list --output temp/all_resolved.csv
|
|
sort -u temp/all_resolved.csv > temp/all_resolved_sorted.csv
|
|
|