forked from egeland/nagios-rbl-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_rbl.py
executable file
·276 lines (251 loc) · 7.63 KB
/
check_rbl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#! /usr/bin/env python
#
# This is a multi-threaded RBL lookup check for Icinga / Nagios.
# Copyright (C) 2012 Frode Egeland <egeland[at]gmail.com>
#
# Modified by Kumina bv in 2013. We only added an option to use an
# address instead of a hostname.
#
# Modified by Guillaume Subiron (Sysnove) in 2015 : mainly PEP8.
#
# Modified by Steve Jenkins (SteveJenkins.com) in 2017. Added a number
# of additional DNSRBLs and made 100% PEP8 compliant.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
# Import Modules
import sys
import os
import getopt
import socket
import string
if sys.version_info.major == 3:
import queue as Queue
else:
import Queue
import threading
import ipaddress
# Python version check
rv = (2, 6)
if rv >= sys.version_info:
print("ERROR: Requires Python 2.6 or greater")
sys.exit(3)
# List of DNS blacklists
serverlist = [
"0spam.fusionzero.com",
"access.redhawk.org",
"all.rbl.webiron.net",
"all.s5h.net",
"b.barracudacentral.org",
"bad.psky.me",
"bhnc.njabl.org",
"bl.blocklist.de",
"bl.deadbeef.com",
"bl.emailbasura.org",
"bl.mailspike.net",
"bl.spamcannibal.org",
"bl.spamcop.net",
"bl.spameatingmonkey.net",
"bl.technovision.dk",
"blackholes.five-ten-sg.com",
"blackholes.mail-abuse.org",
"blacklist.sci.kun.nl",
"blacklist.woody.ch",
"bogons.cymru.com",
"cbl.abuseat.org",
"cdl.anti-spam.org.cn",
"cidr.bl.mcafee.com",
"combined.abuse.ch",
"combined.rbl.msrbl.net",
"db.wpbl.info",
"dnsbl-1.uceprotect.net",
"dnsbl-2.uceprotect.net",
"dnsbl-3.uceprotect.net",
"dnsbl.anticaptcha.net",
"dnsbl.cobion.com",
"dnsbl.cyberlogic.net",
"dnsbl.dronebl.org",
"dnsbl.inps.de",
"dnsbl.kempt.net",
"dnsbl.njabl.org",
"dnsbl.solid.net",
"dnsbl.sorbs.net",
"dnsrbl.org",
"drone.abuse.ch",
"duinv.aupads.org",
"dul.dnsbl.sorbs.net",
"dul.ru",
"dyna.spamrats.com",
"dynip.rothen.com",
"forbidden.icm.edu.pl",
"hostkarma.junkemailfilter.com",
"hil.habeas.com",
"images.rbl.msrbl.net",
"ips.backscatterer.org",
"ix.dnsbl.manitu.net",
"korea.services.net",
"mail-abuse.blacklist.jippg.org",
"no-more-funn.moensted.dk",
"noptr.spamrats.com",
"ohps.dnsbl.net.au",
"omrs.dnsbl.net.au",
"orvedb.aupads.org",
"osps.dnsbl.net.au",
"osrs.dnsbl.net.au",
"owfs.dnsbl.net.au",
"owps.dnsbl.net.au",
"phishing.rbl.msrbl.net",
"probes.dnsbl.net.au",
"proxy.bl.gweep.ca",
"proxy.block.transip.nl",
"psbl.surriel.com",
"rbl.abuse.ro",
"rbl.interserver.net",
"rbl.megarbl.net",
"rbl.orbitrbl.com",
"rbl.realtimeblacklist.com",
"rbl.schulte.org",
"rdts.dnsbl.net.au",
"relays.bl.gweep.ca",
"relays.bl.kundenserver.de",
"relays.nether.net",
"residential.block.transip.nl",
"ricn.dnsbl.net.au",
"rmst.dnsbl.net.au",
"short.rbl.jp",
"singular.ttk.pte.hu",
"spam.abuse.ch",
"spam.dnsbl.sorbs.net",
"spam.rbl.msrbl.net",
"spam.spamrats.com",
"spamguard.leadmon.net",
"spamlist.or.kr",
"spamrbl.imp.ch",
"spamsources.fabel.dk",
"spamtrap.drbl.drand.net",
"srnblack.surgate.net",
"t3direct.dnsbl.net.au",
"tor.dnsbl.sectoor.de",
"torserver.tor.dnsbl.sectoor.de",
"truncate.gbudb.net",
"ubl.lashback.com",
"ubl.unsubscore.com",
"virbl.dnsbl.bit.nl",
"virus.rbl.jp",
"virus.rbl.msrbl.net",
"wormrbl.imp.ch",
"zen.spamhaus.org"
]
####
queue = Queue.Queue()
global on_blacklist
on_blacklist = []
class ThreadRBL(threading.Thread):
def __init__(self, queue):
threading.Thread.__init__(self)
self.queue = queue
def run(self):
while True:
# Grab hosts from queue
hostname, root_name = self.queue.get()
check_host = "%s.%s" % (hostname, root_name)
try:
check_addr = socket.gethostbyname(check_host)
except socket.error:
check_addr = None
if check_addr is not None and "127.0.0." in check_addr:
on_blacklist.append(root_name)
# Signal queue that job is done
self.queue.task_done()
def usage(argv0):
print("%s -w <WARN level> -c <CRIT level> -h <hostname>" % argv0)
print(" or")
print("%s -w <WARN level> -c <CRIT level> -a <ip address>" % argv0)
def main(argv, environ):
options, remainder = getopt.getopt(argv[1:],
"w:c:h:a:",
["warn=", "crit=", "host=", "address="])
status = {'OK': 0, 'WARNING': 1, 'CRITICAL': 2, 'UNKNOWN': 3}
host = None
addr = None
if 3 != len(options):
usage(argv[0])
sys.exit(status['UNKNOWN'])
for field, val in options:
if field in ('-w', '--warn'):
warn_limit = int(val)
elif field in ('-c', '--crit'):
crit_limit = int(val)
elif field in ('-h', '--host'):
host = val
elif field in ('-a', '--address'):
addr = val
else:
usage(argv[0])
sys.exit(status['UNKNOWN'])
if host and addr:
print("ERROR: Cannot use both host and address. Please choose one.")
sys.exit(status['UNKNOWN'])
if host:
try:
addr = socket.gethostbyname(host)
except:
print("ERROR: Host '%s' not found - maybe try a FQDN?" % host)
sys.exit(status['UNKNOWN'])
if sys.version_info.major >= 3:
ip = ipaddress.ip_address(addr)
else:
ip = ipaddress.ip_address(unicode(addr))
if (ip.version == 6):
addr_exploded = ip.exploded
check_name = '.'.join([c for c in addr_exploded if c != ':'])[::-1]
else:
addr_parts = addr.split('.')
addr_parts.reverse()
check_name = '.'.join(addr_parts)
# Make host and addr the same thing to simplify output functions below
host = addr
# ##### Start thread stuff
# Spawn a pool of threads then pass them the queue
for i in range(10):
t = ThreadRBL(queue)
t.setDaemon(True)
t.start()
# Populate the queue
for blhost in serverlist:
queue.put((check_name, blhost))
# Wait for everything in the queue to be processed
queue.join()
# ##### End thread stuff
# Create output
if on_blacklist:
output = '%s on %s blacklist(s): %s' % (
host, len(on_blacklist), ', '.join(on_blacklist))
# Status is CRITICAL
if len(on_blacklist) >= crit_limit:
print('CRITICAL: %s' % output)
sys.exit(status['CRITICAL'])
# Status is WARNING
if len(on_blacklist) >= warn_limit:
print('WARNING: %s' % output)
sys.exit(status['WARNING'])
else:
# Status is OK and host is blacklisted
print('OK: %s' % output)
sys.exit(status['OK'])
else:
# Status is OK and host is not blacklisted
print('OK: %s not on any known blacklists' % host)
sys.exit(status['OK'])
if __name__ == "__main__":
main(sys.argv, os.environ)