check_extended_dns/check_extended_dns.py

49 lines
1.7 KiB
Python
Executable File

#!/usr/bin/env python
"""Active Nagios chheck for whois database for matching DNS servers."""
import pythonwhois
import argparse
import sys
import itertools
parser = argparse.ArgumentParser(description='Check whois and dns information.')
parser.add_argument('--domain', nargs=1, required=True, help='the domain name')
parser.add_argument('--nameserver', nargs='+', help='a space delimited list of nameservers')
args = parser.parse_args()
nsargs = args.nameserver
# how many ns servers should we expect?
nsargscount = len(nsargs)
# whoiscount = []
try:
whois = pythonwhois.get_whois(args.domain[0])
whoiscount = []
for key, value in whois.iteritems():
if key == "nameservers":
whoiscount.append(value)
# I know this is bad W0702; used as a catch-all
# Ill get to it someday
except:
#something happened, raise an erro
print "3 Unexpected_error: ", sys.exc_info()[0]
# how many nameservers did whois return?
#whoiscount = reduce(lambda x,y: x.extend(y),whoiscount)
#print len(whoiscount)
#print nsargscount
nscount = list(itertools.chain.from_iterable(whoiscount))
#print len(nscount)
if len(nscount) < nsargscount:
print "Extended_DNS_Check nscount="+str(nsargscount)+"|whoiscount="+str(len(nscount))+" CRITICAL - WHOIS DNS servers do not match provided DNS nameservers."
sys.exit(2)
elif len(nscount) > nsargscount:
print "Extended_DNS_Check nscount="+str(nsargscount)+"|whoiscount="+ str(len(nscount))+" WARNING - WHOIS DNS servers do not match. \
There are more DNS servers from the WHOIS datbase than in your query."
sys.exit(1)
else:
print("0 Extended_DNS_Check nscount="+str(nsargscount)+"|whoiscount="+str(len(nscount))+" OK - all DNS server match")
sys.exit(0)