Skip to content

Matty9191/dns-domain-expiration-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Checking DNS Domain Expiration

If you are here you may have had a domain expire and dealt with the annoyances that go with reclaiming it. It's no fun is it? To prevent yourself from dealing with this again you can install and run dns-domain-expiration-checker.py to monitor your domains. The script is easy to install and will send you an e-mail if your domain is set to expire in the near future. You can also use the script to view the registrars and expiration dates for your domains. Now to some examples.

To interactively view the expiration dates and registrars for a list of domains run the script with the "--interactive " option:

$ dns-domain-expiration-checker.py --interactive --domainfile domains
Domain Name                Registrar                       Expiration Date       Days Left
prefetch.net               DNC HOLDINGS, INC.              2020-06-23 00:00:00   1064
spotch.com                 GANDI SAS                       2017-12-03 00:00:00   131 
google.com                 MARKMONITOR INC.                2020-09-14 00:00:00   1147

To generate an e-mail when a domain is about to expire you can pass a domain and threshold to the script:

$ dns-domain-expiration-checker.py --domainname prefetch.net --email --expiredays 90

This will generate an e-mail if the domain prefetch.net is set to expire in the next 90-days. You can also add several domains and expiration intervals to a file and pass that as an argument:

$ cat domains
spotch.com 60
yahoo.com 60
prefetch.net 2000
google.com 80

$ dns-domain-expiration-checker.py --domainfile domains --email --smtpserver smtp.mydomain --smtpto "biff" --smtpfrom "Root"

Installation

The dns-domain-expiration-checker.py script relies on the dateutil PiPY pacakge to normalize dates. Here are the steps to get this script working:

  1. Create a virtualenv to run dns-domain-expiration-checker in:
$ mkproject dns-domain-expiration-checker
  1. Surf over to that new environment:
$ workon dns-domain-expiration-checker
  1. Pull down dateutils with pip:
$ pip install python-dateutil
  1. Clone this repo:
$ git clone https://github.com/Matty9191/dns-domain-expiration-checker.git
  1. Run the script against the domains you want to check (this assume you are in the root of your virtualenv):
$ dns-domain-expiration-checker/ns-domain-expiration-checker.py ....
  1. Automate the domain checking process.

About

Send notifications when DNS domains are about to expire.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages