blechschmidt / massdns

A high-performance DNS stub resolver for bulk lookups and reconnaissance (subdomain enumeration)
GNU General Public License v3.0
3.05k stars 456 forks source link

Make ct.py and subbrute.py take a list of domains #113

Closed gprime31 closed 2 years ago

gprime31 commented 3 years ago

Make ct.py and subbrute.py take a list of domains instead of a single domain.

mzpqnxow commented 2 years ago

Why not use a simple loop in the shell?

for domain in $(cat domains.lst); do
  ct.py $domain
done
blechschmidt commented 2 years ago

Multiple domains could already be supplied via the command line. However, f240c1841b2633853dc5fa1f43c659c854693a0c adds the functionality to also supply a file with domains (-d).