2021-09-09 13:57:29 +02:00
|
|
|
# This module does not appear to be actively maintained.
|
|
|
|
# Please see https://github.com/DomainTools/domaintools_misp
|
|
|
|
# for the official DomainTools-supported MISP app
|
|
|
|
|
2016-11-28 18:12:31 +01:00
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from domaintools import API
|
|
|
|
|
|
|
|
|
|
|
|
log = logging.getLogger('domaintools')
|
|
|
|
log.setLevel(logging.DEBUG)
|
|
|
|
ch = logging.StreamHandler(sys.stdout)
|
|
|
|
ch.setLevel(logging.DEBUG)
|
|
|
|
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
|
|
|
ch.setFormatter(formatter)
|
|
|
|
log.addHandler(ch)
|
|
|
|
|
|
|
|
misperrors = {'error': 'Error'}
|
|
|
|
mispattributes = {
|
2016-12-15 16:49:56 +01:00
|
|
|
'input': ['domain', 'email-src', 'email-dst', 'target-email', 'whois-registrant-email',
|
|
|
|
'whois-registrant-name', 'whois-registrant-phone', 'ip-src', 'ip-dst'],
|
2016-11-28 18:12:31 +01:00
|
|
|
'output': ['whois-registrant-email', 'whois-registrant-phone', 'whois-registrant-name',
|
2016-12-15 16:49:56 +01:00
|
|
|
'whois-registrar', 'whois-creation-date', 'freetext', 'domain']
|
2016-11-28 18:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
moduleinfo = {
|
|
|
|
'version': '0.1',
|
|
|
|
'author': 'Raphaël Vinot',
|
|
|
|
'description': 'DomainTools MISP expansion module.',
|
|
|
|
'module-type': ['expansion', 'hover']
|
|
|
|
}
|
|
|
|
|
|
|
|
moduleconfig = ['username', 'api_key']
|
|
|
|
|
2016-12-15 16:49:56 +01:00
|
|
|
query_profiles = [
|
|
|
|
{'inputs': ['domain'], 'services': ['parsed_whois', 'domain_profile', 'reputation', 'reverse_ip']},
|
|
|
|
{'inputs': ['email-src', 'email-dst', 'target-email', 'whois-registrant-email', 'whois-registrant-name', 'whois-registrant-phone'], 'services': ['reverse_whois']},
|
2016-12-16 11:22:22 +01:00
|
|
|
{'inputs': ['ip-src', 'ip-dst'], 'services': ['host_domains']}
|
2016-12-15 16:49:56 +01:00
|
|
|
]
|
|
|
|
|
2016-11-28 18:12:31 +01:00
|
|
|
|
|
|
|
class DomainTools(object):
|
|
|
|
|
|
|
|
def __init__(self):
|
2016-11-30 18:09:11 +01:00
|
|
|
self.reg_mail = {}
|
|
|
|
self.reg_phone = {}
|
|
|
|
self.reg_name = {}
|
2016-12-01 13:43:37 +01:00
|
|
|
self.registrar = {}
|
|
|
|
self.creation_date = {}
|
2016-12-01 16:41:50 +01:00
|
|
|
self.domain_ip = {}
|
2016-12-15 16:49:56 +01:00
|
|
|
self.domain = {}
|
2016-12-01 16:41:50 +01:00
|
|
|
self.risk = ()
|
2016-11-28 18:12:31 +01:00
|
|
|
self.freetext = ''
|
|
|
|
|
2016-11-30 18:09:11 +01:00
|
|
|
def _add_value(self, value_type, value, comment):
|
|
|
|
if value_type.get(value):
|
2016-12-01 16:41:50 +01:00
|
|
|
if comment and comment not in value_type[value]:
|
2016-11-30 18:09:11 +01:00
|
|
|
value_type[value] += ' - {}'.format(comment)
|
|
|
|
else:
|
2016-12-01 13:43:37 +01:00
|
|
|
value_type[value] = comment or ''
|
2016-11-30 18:09:11 +01:00
|
|
|
return value_type
|
|
|
|
|
|
|
|
def add_mail(self, mail, comment=None):
|
|
|
|
self.reg_mail = self._add_value(self.reg_mail, mail, comment)
|
|
|
|
|
|
|
|
def add_phone(self, phone, comment=None):
|
|
|
|
self.reg_phone = self._add_value(self.reg_phone, phone, comment)
|
|
|
|
|
|
|
|
def add_name(self, name, comment=None):
|
|
|
|
self.reg_name = self._add_value(self.reg_name, name, comment)
|
|
|
|
|
2016-12-01 13:43:37 +01:00
|
|
|
def add_registrar(self, reg, comment=None):
|
|
|
|
self.registrar = self._add_value(self.registrar, reg, comment)
|
|
|
|
|
|
|
|
def add_creation_date(self, date, comment=None):
|
|
|
|
self.creation_date = self._add_value(self.creation_date, date, comment)
|
|
|
|
|
2016-12-01 16:41:50 +01:00
|
|
|
def add_ip(self, ip, comment=None):
|
|
|
|
self.domain_ip = self._add_value(self.domain_ip, ip, comment)
|
|
|
|
|
2016-12-15 16:49:56 +01:00
|
|
|
def add_domain(self, domain, comment=None):
|
|
|
|
self.domain = self._add_value(self.domain, domain, comment)
|
|
|
|
|
2016-11-28 18:12:31 +01:00
|
|
|
def dump(self):
|
|
|
|
to_return = []
|
|
|
|
if self.reg_mail:
|
2016-11-30 18:09:11 +01:00
|
|
|
for mail, comment in self.reg_mail.items():
|
2016-12-01 13:43:37 +01:00
|
|
|
to_return.append({'type': 'whois-registrant-email', 'values': [mail], 'comment': comment or ''})
|
2016-11-28 18:12:31 +01:00
|
|
|
if self.reg_phone:
|
2016-11-30 18:09:11 +01:00
|
|
|
for phone, comment in self.reg_phone.items():
|
2016-12-01 13:43:37 +01:00
|
|
|
to_return.append({'type': 'whois-registrant-phone', 'values': [phone], 'comment': comment or ''})
|
2016-11-28 18:12:31 +01:00
|
|
|
if self.reg_name:
|
2016-11-30 18:09:11 +01:00
|
|
|
for name, comment in self.reg_name.items():
|
2016-12-01 13:43:37 +01:00
|
|
|
to_return.append({'type': 'whois-registrant-name', 'values': [name], 'comment': comment or ''})
|
2016-11-28 18:12:31 +01:00
|
|
|
if self.registrar:
|
2016-12-01 13:43:37 +01:00
|
|
|
for reg, comment in self.registrar.items():
|
|
|
|
to_return.append({'type': 'whois-registrar', 'values': [reg], 'comment': comment or ''})
|
2016-11-28 18:12:31 +01:00
|
|
|
if self.creation_date:
|
2016-12-01 13:43:37 +01:00
|
|
|
for date, comment in self.creation_date.items():
|
|
|
|
to_return.append({'type': 'whois-creation-date', 'values': [date], 'comment': comment or ''})
|
2016-12-01 16:41:50 +01:00
|
|
|
if self.domain_ip:
|
|
|
|
for ip, comment in self.domain_ip.items():
|
2016-12-01 16:44:29 +01:00
|
|
|
to_return.append({'types': ['ip-dst', 'ip-src'], 'values': [ip], 'comment': comment or ''})
|
2016-12-15 16:49:56 +01:00
|
|
|
if self.domain:
|
|
|
|
for domain, comment in self.domain.items():
|
|
|
|
to_return.append({'type': 'domain', 'values': [domain], 'comment': comment or ''})
|
2016-11-28 18:12:31 +01:00
|
|
|
if self.freetext:
|
2016-12-01 13:43:37 +01:00
|
|
|
to_return.append({'type': 'freetext', 'values': [self.freetext], 'comment': 'Freetext import'})
|
2016-12-01 16:41:50 +01:00
|
|
|
if self.risk:
|
|
|
|
to_return.append({'type': 'text', 'values': [self.risk[0]], 'comment': self.risk[1]})
|
2016-11-28 18:12:31 +01:00
|
|
|
return to_return
|
|
|
|
|
|
|
|
|
2016-12-15 16:49:56 +01:00
|
|
|
def parsed_whois(domtools, to_query, values):
|
2016-11-28 18:12:31 +01:00
|
|
|
whois_entry = domtools.parsed_whois(to_query)
|
2016-11-30 18:09:11 +01:00
|
|
|
if whois_entry.get('error'):
|
2016-11-28 18:12:31 +01:00
|
|
|
misperrors['error'] = whois_entry['error']['message']
|
|
|
|
return misperrors
|
|
|
|
|
2016-11-30 18:09:11 +01:00
|
|
|
if whois_entry.get('registrant'):
|
|
|
|
values.add_name(whois_entry['registrant'], 'Parsed registrant')
|
2016-11-28 18:12:31 +01:00
|
|
|
|
2016-11-30 18:09:11 +01:00
|
|
|
if whois_entry.get('registration'):
|
2016-12-01 13:43:37 +01:00
|
|
|
values.add_creation_date(whois_entry['registration']['created'], 'timestamp')
|
2016-11-28 18:12:31 +01:00
|
|
|
|
2016-11-30 18:09:11 +01:00
|
|
|
if whois_entry.get('whois'):
|
2016-11-28 18:12:31 +01:00
|
|
|
values.freetext = whois_entry['whois']['record']
|
2016-11-30 18:09:11 +01:00
|
|
|
if whois_entry.get('parsed_whois'):
|
2016-11-28 18:12:31 +01:00
|
|
|
if whois_entry['parsed_whois']['created_date']:
|
2016-12-01 16:41:50 +01:00
|
|
|
values.add_creation_date(whois_entry['parsed_whois']['created_date'], 'created')
|
2016-11-28 18:12:31 +01:00
|
|
|
if whois_entry['parsed_whois']['registrar']['name']:
|
2016-12-01 13:43:37 +01:00
|
|
|
values.add_registrar(whois_entry['parsed_whois']['registrar']['name'], 'name')
|
|
|
|
if whois_entry['parsed_whois']['registrar']['url']:
|
|
|
|
values.add_registrar(whois_entry['parsed_whois']['registrar']['url'], 'url')
|
|
|
|
if whois_entry['parsed_whois']['registrar']['iana_id']:
|
|
|
|
values.add_registrar(whois_entry['parsed_whois']['registrar']['iana_id'], 'iana_id')
|
2016-11-28 18:12:31 +01:00
|
|
|
for key, entry in whois_entry['parsed_whois']['contacts'].items():
|
|
|
|
if entry['email']:
|
2016-11-30 18:09:11 +01:00
|
|
|
values.add_mail(entry['email'], key)
|
2016-11-28 18:12:31 +01:00
|
|
|
if entry['phone']:
|
2016-11-30 18:09:11 +01:00
|
|
|
values.add_phone(entry['phone'], key)
|
2016-11-28 18:12:31 +01:00
|
|
|
if entry['name']:
|
2016-11-30 18:09:11 +01:00
|
|
|
values.add_name(entry['name'], key)
|
|
|
|
if whois_entry.emails():
|
|
|
|
for mail in whois_entry.emails():
|
2016-12-01 13:43:37 +01:00
|
|
|
if mail not in values.reg_mail.keys():
|
|
|
|
values.add_mail(mail, 'Maybe registrar')
|
2016-12-15 16:49:56 +01:00
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
def domain_profile(domtools, to_query, values):
|
|
|
|
profile = domtools.domain_profile(to_query)
|
|
|
|
# NOTE: profile['website_data']['response_code'] could be used to see if the host is still up. Maybe set a tag.
|
|
|
|
if profile.get('error'):
|
|
|
|
misperrors['error'] = profile['error']['message']
|
|
|
|
return misperrors
|
|
|
|
|
|
|
|
if profile.get('registrant'):
|
|
|
|
values.add_name(profile['registrant']['name'], 'Profile registrant')
|
|
|
|
|
|
|
|
if profile.get('server'):
|
|
|
|
other_domains = profile['server']['other_domains']
|
|
|
|
values.add_ip(profile['server']['ip_address'], 'IP of {} (via DomainTools). Has {} other domains.'.format(to_query, other_domains))
|
|
|
|
|
|
|
|
if profile.get('registration'):
|
|
|
|
if profile['registration'].get('created'):
|
|
|
|
values.add_creation_date(profile['registration']['created'], 'created')
|
|
|
|
if profile['registration'].get('updated'):
|
|
|
|
values.add_creation_date(profile['registration']['updated'], 'updated')
|
|
|
|
if profile['registration'].get('registrar'):
|
|
|
|
values.add_registrar(profile['registration']['registrar'], 'name')
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
def reputation(domtools, to_query, values):
|
|
|
|
rep = domtools.reputation(to_query, include_reasons=True)
|
|
|
|
# NOTE: use that value in a tag when we will have attribute level tagging
|
|
|
|
if rep and not rep.get('error'):
|
|
|
|
reasons = ', '.join(rep['reasons'])
|
|
|
|
values.risk = [rep['risk_score'], 'Risk value of {} (via Domain Tools), Reasons: {}'.format(to_query, reasons)]
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
def reverse_ip(domtools, to_query, values):
|
|
|
|
rev_ip = domtools.reverse_ip(to_query)
|
|
|
|
if rev_ip and not rev_ip.get('error'):
|
|
|
|
ip_addresses = rev_ip['ip_addresses']
|
|
|
|
values.add_ip(ip_addresses['ip_address'], 'IP of {} (via DomainTools). Has {} other domains.'.format(to_query, ip_addresses['domain_count']))
|
|
|
|
for d in ip_addresses['domain_names']:
|
|
|
|
values.add_domain(d, 'Other domain on {}.'.format(ip_addresses['ip_address']))
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
2016-12-16 11:22:22 +01:00
|
|
|
def reverse_whois(domtools, to_query, values):
|
|
|
|
rev_whois = domtools.reverse_whois(to_query, mode='purchase')
|
|
|
|
if rev_whois.get('error'):
|
|
|
|
misperrors['error'] = rev_whois['error']['message']
|
|
|
|
return misperrors
|
|
|
|
for d in rev_whois['domains']:
|
|
|
|
values.add_domain(d, 'Reverse domain related to {}.'.format(to_query))
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
def host_domains(domtools, to_query, values):
|
|
|
|
hostdom = domtools.host_domains(to_query)
|
|
|
|
if hostdom.get('error'):
|
|
|
|
misperrors['error'] = hostdom['error']['message']
|
|
|
|
return misperrors
|
|
|
|
ip_addresses = hostdom['ip_addresses']
|
|
|
|
if to_query != ip_addresses['ip_address']:
|
|
|
|
values.add_ip(ip_addresses['ip_address'], 'IP of {} (via DomainTools). Has {} other domains.'.format(to_query, ip_addresses['domain_count']))
|
|
|
|
for d in ip_addresses['domain_names']:
|
|
|
|
values.add_domain(d, 'Other domain on {}.'.format(ip_addresses['ip_address']))
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
def reverse_ip_whois(domtools, to_query, values):
|
|
|
|
# Disabled for now, dies with domaintools.exceptions.NotAuthorizedException
|
|
|
|
rev_whois = domtools.reverse_ip_whois(ip=to_query)
|
|
|
|
print(rev_whois)
|
|
|
|
if rev_whois.get('error'):
|
|
|
|
misperrors['error'] = rev_whois['error']['message']
|
|
|
|
return misperrors
|
|
|
|
# for d in rev_whois['domains']:
|
|
|
|
# values.add_domain(d, 'Reverse domain related to {}.'.format(to_query))
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
2016-12-15 16:49:56 +01:00
|
|
|
def get_services(request):
|
|
|
|
for t in mispattributes['input']:
|
|
|
|
to_query = request.get(t)
|
|
|
|
if not to_query:
|
|
|
|
continue
|
|
|
|
for p in query_profiles:
|
|
|
|
if t in p['inputs']:
|
|
|
|
return p['services']
|
|
|
|
|
|
|
|
|
|
|
|
def handler(q=False):
|
|
|
|
if not q:
|
|
|
|
return q
|
|
|
|
|
|
|
|
request = json.loads(q)
|
|
|
|
to_query = None
|
|
|
|
for t in mispattributes['input']:
|
|
|
|
to_query = request.get(t)
|
|
|
|
if to_query:
|
|
|
|
break
|
|
|
|
if not to_query:
|
|
|
|
misperrors['error'] = "Unsupported attributes type"
|
|
|
|
return misperrors
|
|
|
|
|
|
|
|
if request.get('config'):
|
|
|
|
if (request['config'].get('username') is None) or (request['config'].get('api_key') is None):
|
|
|
|
misperrors['error'] = 'DomainTools authentication is incomplete'
|
|
|
|
return misperrors
|
|
|
|
else:
|
|
|
|
domtools = API(request['config'].get('username'), request['config'].get('api_key'))
|
|
|
|
else:
|
|
|
|
misperrors['error'] = 'DomainTools authentication is missing'
|
|
|
|
return misperrors
|
|
|
|
|
|
|
|
values = DomainTools()
|
|
|
|
services = get_services(request)
|
|
|
|
if services:
|
2016-12-16 11:52:51 +01:00
|
|
|
try:
|
|
|
|
for s in services:
|
|
|
|
globals()[s](domtools, to_query, values)
|
|
|
|
except Exception as e:
|
2016-12-16 12:02:28 +01:00
|
|
|
print(to_query, type(e), e)
|
2016-12-15 16:49:56 +01:00
|
|
|
|
2016-12-01 11:54:04 +01:00
|
|
|
return {'results': values.dump()}
|
2016-11-28 18:12:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
def introspection():
|
|
|
|
return mispattributes
|
|
|
|
|
|
|
|
|
|
|
|
def version():
|
|
|
|
moduleinfo['config'] = moduleconfig
|
|
|
|
return moduleinfo
|