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

Feature Request - Ability to determine the creation time of each listed domain #199

Closed victoriadolor closed 11 months ago

victoriadolor commented 1 year ago

Would you be able to develop a new feature to view the timestamp of when the domain was created? It would be highly beneficial to have such a feature. Thank you.

Otto-AA commented 1 year ago

You can use the --whois option (eg dnstwist --whois --registered example.com). This will add the information if available. It essentially does following:

import whois
result = whois.query(domain)
# copy result.creation_date and result.registrar if available