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