elceef / dnstwist

Domain name permutation engine for detecting homograph phishing attacks, typo squatting, and brand impersonation
https://dnstwist.it
Apache License 2.0
4.85k stars 767 forks source link

running dnstwist with a list of domains #124

Closed TheRealSuser closed 3 years ago

TheRealSuser commented 3 years ago

I'm not seeing it in the documentation however it would be very useful to give the script a domain list to execute over. is that currently possible?

rfdevere commented 3 years ago

xargs will handle this happily.

xargs -P 8 -L 1 list-to-scan.txt ./dnstwist.py

Xargs will pass from the list one by one using -L 1.