2016-08-03 19:59:55 +02:00
|
|
|
#!/usr/bin/env python3
|
2020-07-20 17:40:00 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-08-03 19:59:55 +02:00
|
|
|
|
|
|
|
import csv
|
|
|
|
import ipaddress
|
2020-07-20 17:40:00 +02:00
|
|
|
import logging
|
2016-08-03 19:59:55 +02:00
|
|
|
|
2020-07-27 10:44:30 +02:00
|
|
|
from generator import download_to_file, get_version, write_to_file, get_abspath_source_file
|
2016-08-03 19:59:55 +02:00
|
|
|
|
|
|
|
|
2020-07-21 00:31:06 +02:00
|
|
|
def process(file):
|
|
|
|
lipv4, lipv6, lhostname = get_lists(file)
|
2016-08-03 19:59:55 +02:00
|
|
|
|
2020-07-20 17:40:00 +02:00
|
|
|
# Public DNS Domains
|
|
|
|
publicdns_hostname_dst = 'public-dns-hostname'
|
|
|
|
publicdns_hostname_warninglist = {
|
|
|
|
'description': 'Event contains one or more public DNS resolvers (expressed as hostname) as attribute with an IDS flag set',
|
|
|
|
'name': 'List of known public DNS resolvers expressed as hostname',
|
|
|
|
'type': 'hostname',
|
|
|
|
'matching_attributes': ['hostname', 'domain', 'url', 'domain|ip']
|
|
|
|
}
|
2020-07-21 00:31:06 +02:00
|
|
|
generate(lhostname, publicdns_hostname_warninglist, publicdns_hostname_dst)
|
2016-08-03 19:59:55 +02:00
|
|
|
|
2020-07-20 17:40:00 +02:00
|
|
|
# Public DNS IPv4
|
|
|
|
publicdns_ipv4_dst = 'public-dns-v4'
|
|
|
|
publicdns_ipv4_warninglist = {
|
|
|
|
'description': 'Event contains one or more public IPv4 DNS resolvers as attribute with an IDS flag set',
|
|
|
|
'name': 'List of known IPv4 public DNS resolvers',
|
|
|
|
'type': 'string',
|
|
|
|
'matching_attributes': ['ip-src', 'ip-dst', 'domain|ip']
|
|
|
|
}
|
2020-07-21 00:31:06 +02:00
|
|
|
generate(lipv4, publicdns_ipv4_warninglist, publicdns_ipv4_dst)
|
2016-08-03 19:59:55 +02:00
|
|
|
|
2020-07-20 17:40:00 +02:00
|
|
|
# Public DNS IPv4
|
|
|
|
publicdns_ipv6_dst = 'public-dns-v6'
|
|
|
|
publicdns_ipv6_warninglist = {
|
|
|
|
'description': 'Event contains one or more public IPv6 DNS resolvers as attribute with an IDS flag set',
|
|
|
|
'name': 'List of known IPv6 public DNS resolvers',
|
|
|
|
'type': 'string',
|
|
|
|
'matching_attributes': ['ip-src', 'ip-dst', 'domain|ip']
|
|
|
|
}
|
2020-07-21 00:31:06 +02:00
|
|
|
generate(lipv6, publicdns_ipv6_warninglist, publicdns_ipv6_dst)
|
|
|
|
|
|
|
|
|
|
|
|
def generate(data_list, warninglist, dst):
|
|
|
|
|
|
|
|
warninglist['version'] = get_version()
|
2020-07-21 13:42:50 +02:00
|
|
|
warninglist['list'] = data_list
|
2020-07-21 00:31:06 +02:00
|
|
|
|
|
|
|
write_to_file(warninglist, dst)
|
|
|
|
|
|
|
|
|
|
|
|
def get_lists(file):
|
|
|
|
|
2020-07-27 10:44:30 +02:00
|
|
|
with open(get_abspath_source_file(file)) as csv_file:
|
2020-07-21 00:31:06 +02:00
|
|
|
servers_list = csv.reader(csv_file, delimiter=',', quotechar='"')
|
|
|
|
|
|
|
|
lipv4 = []
|
|
|
|
lipv6 = []
|
|
|
|
lhostname = []
|
|
|
|
for row in servers_list:
|
|
|
|
if row[7] in (None, ""):
|
|
|
|
try:
|
|
|
|
ip = ipaddress.ip_address(row[0])
|
|
|
|
|
|
|
|
if ip.version == 4:
|
|
|
|
lipv4.append(ip.compressed)
|
|
|
|
elif ip.version == 6:
|
|
|
|
lipv6.append(ip.compressed)
|
|
|
|
|
|
|
|
if row[1] not in (None, "", '.'):
|
|
|
|
lhostname.append(row[1])
|
|
|
|
except ValueError as exc:
|
|
|
|
logging.warning(str(exc))
|
|
|
|
|
|
|
|
return lipv4, lipv6, lhostname
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
publicdns_url = 'https://public-dns.info/nameservers.csv'
|
|
|
|
publicdns_file = 'public-dns-nameservers.csv'
|
|
|
|
|
|
|
|
download_to_file(publicdns_url, publicdns_file)
|
|
|
|
|
|
|
|
process(publicdns_file)
|