Improved DNS resolving performances
Also various fixes. Also some debug stuff, make sure to remove that later.
This commit is contained in:
parent
c609b90390
commit
0159c6037c
5 changed files with 34 additions and 10 deletions
|
|
@ -1,7 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Resolve the CNAME chain of all the known subdomains for later analysis
|
||||
echo "Compiling subdomain lists..." > /dev/stderr
|
||||
cat subdomains/*.list | sort -u > temp/all_subdomains.list
|
||||
./resolve_subdomains.py --input temp/all_subdomains.list --output temp/all_resolved.csv
|
||||
# Sort by last character to utilize the DNS server caching mechanism
|
||||
rev temp/all_subdomains.list | 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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue