8 lines
303 B
Bash
8 lines
303 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Resolve the CNAME chain of all the known subdomains for later analysis
|
||
|
cat subdomains/*.list | sort -u > temp/all_subdomains.list
|
||
|
./resolve_subdomains.py --input temp/all_subdomains.list --output temp/all_resolved.csv
|
||
|
sort -u temp/all_resolved.csv > temp/all_resolved_sorted.csv
|
||
|
|