mirror of https://github.com/MISP/misp-modules
correct key and return of functions
parent
731c06a939
commit
9063da88cd
|
@ -394,40 +394,41 @@ def expand_history_whois(api, domain):
|
||||||
if 'items' in results['result']:
|
if 'items' in results['result']:
|
||||||
for item in results['result']['items']:
|
for item in results['result']['items']:
|
||||||
item_registrant = __select_registrant_item(item)
|
item_registrant = __select_registrant_item(item)
|
||||||
|
if item_registrant:
|
||||||
r.extend(
|
r.extend(
|
||||||
{
|
|
||||||
'type': ['domain'],
|
|
||||||
'values': item['nameServers'],
|
|
||||||
'categories': ['Network activity'],
|
|
||||||
'comment': 'Whois history Name Servers of %s '
|
|
||||||
'Status: %s ' % (domain, item['status'])
|
|
||||||
|
|
||||||
}
|
|
||||||
)
|
|
||||||
if 'email' in item_registrant:
|
|
||||||
r.append(
|
|
||||||
{
|
{
|
||||||
'types': ['whois-registrant-email'],
|
'type': ['domain'],
|
||||||
'values': [item_registrant['email']],
|
'values': item['nameServers'],
|
||||||
'categories': ['Attribution'],
|
'categories': ['Network activity'],
|
||||||
'comment': 'Whois history registrant email of %s'
|
'comment': 'Whois history Name Servers of %s '
|
||||||
'Status: %s' % (
|
'Status: %s ' % (
|
||||||
domain, item['status'])
|
domain, item['status'])
|
||||||
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
if 'email' in item_registrant:
|
||||||
|
r.append(
|
||||||
|
{
|
||||||
|
'types': ['whois-registrant-email'],
|
||||||
|
'values': [item_registrant['email']],
|
||||||
|
'categories': ['Attribution'],
|
||||||
|
'comment': 'Whois history registrant email of %s'
|
||||||
|
'Status: %s' % (
|
||||||
|
domain, item['status'])
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
if 'telephone' in item_registrant:
|
if 'telephone' in item_registrant:
|
||||||
r.append(
|
r.append(
|
||||||
{
|
{
|
||||||
'types': ['whois-registrant-phone'],
|
'types': ['whois-registrant-phone'],
|
||||||
'values': [item_registrant['telephone']],
|
'values': [item_registrant['telephone']],
|
||||||
'categories': ['Attribution'],
|
'categories': ['Attribution'],
|
||||||
'comment': 'Whois history registrant phone of %s'
|
'comment': 'Whois history registrant phone of %s'
|
||||||
'Status: %s' % (
|
'Status: %s' % (
|
||||||
domain, item['status'])
|
domain, item['status'])
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -502,10 +503,11 @@ def version():
|
||||||
|
|
||||||
|
|
||||||
def __select_registrant_item(entry):
|
def __select_registrant_item(entry):
|
||||||
print(entry)
|
|
||||||
if 'contacts' in entry:
|
if 'contacts' in entry:
|
||||||
for c in entry['contacts']:
|
return list(filter(lambda x: x['type'] == 'registrant',
|
||||||
print(c)
|
entry['contacts']))[0]
|
||||||
if c['type'] == 'registrant':
|
|
||||||
print(c)
|
if 'contact' in entry:
|
||||||
return c
|
return list(filter(lambda x: x['type'] == 'registrant',
|
||||||
|
entry['contact']))[0]
|
||||||
|
|
Loading…
Reference in New Issue