From e29b1456c06576b607fd255f5da34a3cc3e97ca2 Mon Sep 17 00:00:00 2001 From: Janik Kleinhoff Date: Mon, 5 Sep 2016 01:09:49 +0000 Subject: Extirpate traces of XML Summary: Resolve T6 and use the opportunity to get rid of our dependency on `XML::Simple` once and for all. Test Plan: Run the bot with JSON config files. Reviewers: Unit193 Reviewed By: Unit193 Tags: #antispammeta Maniphest Tasks: T6 Differential Revision: https://asm.shalture.org/D1 --- config-default/dnsbl.json | 95 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 config-default/dnsbl.json (limited to 'config-default/dnsbl.json') diff --git a/config-default/dnsbl.json b/config-default/dnsbl.json new file mode 100644 index 0000000..b217ebe --- /dev/null +++ b/config-default/dnsbl.json @@ -0,0 +1,95 @@ +{ + "query" : { + "dnsbl.dronebl.org." : { + "response" : { + "127.0.0.1" : { + "content" : "Testing data" + }, + "127.0.0.10" : { + "content" : "ProxyChain" + }, + "127.0.0.14" : { + "content" : "Open Wingate Proxy" + }, + "127.0.0.15" : { + "content" : "Compromised router / gateway" + }, + "127.0.0.2" : { + "content" : "Sample" + }, + "127.0.0.255" : { + "content" : "Unknown" + }, + "127.0.0.3" : { + "content" : "IRC Drone" + }, + "127.0.0.5" : { + "content" : "Bottler" + }, + "127.0.0.6" : { + "content" : "Unknown spambot or drone" + }, + "127.0.0.7" : { + "content" : "DDOS drone" + }, + "127.0.0.8" : { + "content" : "SOCKS proxy" + }, + "127.0.0.9" : { + "content" : "HTTP proxy" + } + } + }, + "dnsbl.incredibl.org." : { + "response" : { + "127.0.0.2" : { + "content" : "SOCKS Proxy" + }, + "127.0.0.3" : { + "content" : "IRC Proxy" + }, + "127.0.0.4" : { + "content" : "HTTP Proxy" + }, + "127.0.0.5" : { + "content" : "IRC Drone" + }, + "127.0.0.6" : { + "content" : "TOR" + } + } + }, + "dnsbl.sorbs.net." : { + "response" : { + "127.0.0.2" : { + "content" : "HTTP Proxy" + }, + "127.0.0.3" : { + "content" : "SOCKS Proxy" + }, + "127.0.0.4" : { + "content" : "Misc. proxy" + } + } + }, + "rbl.efnetrbl.org." : { + "response" : { + "127.0.0.1" : { + "content" : "Open proxy" + }, + "127.0.0.2" : { + "content" : "Trojan spreader" + }, + "127.0.0.3" : { + "content" : "Trojan infected client" + }, + "127.0.0.4" : { + "content" : "TOR exit server" + }, + "127.0.0.5" : { + "content" : "Drones / Flooding" + } + } + } + } +} -- cgit v1.2.3