add torexit.dan.me.uk to dnsbls
This commit is contained in:
parent
5c1942a35a
commit
f7a1c12cfa
1 changed files with 7 additions and 1 deletions
|
@ -50,11 +50,17 @@ class AbuseAtCBL(DNSBL):
|
|||
desc = "unknown"
|
||||
return f"{result} - {desc}"
|
||||
|
||||
class TorExitDan(DNSBL):
|
||||
hostname = "torexit.dan.me.uk"
|
||||
def process(self, a_record, txt_record):
|
||||
return "tor exit"
|
||||
|
||||
DEFAULT_LISTS = [
|
||||
ZenSpamhaus(),
|
||||
EFNetRBL(),
|
||||
DroneBL(),
|
||||
AbuseAtCBL()
|
||||
AbuseAtCBL(),
|
||||
TorExitDan()
|
||||
]
|
||||
|
||||
def default_lists():
|
||||
|
|
Loading…
Reference in a new issue