mirror of https://github.com/MISP/misp-modules
change type of status
parent
c8e20d9087
commit
804e59ed8d
|
@ -418,7 +418,7 @@ def expand_history_whois(api, domain):
|
|||
'categories': ['Network activity'],
|
||||
'comment': 'Whois history Name Servers of %s '
|
||||
'Status: %s ' % (
|
||||
domain, item['status'])
|
||||
domain, ' '.join(item['status']))
|
||||
|
||||
}
|
||||
)
|
||||
|
@ -432,7 +432,8 @@ def expand_history_whois(api, domain):
|
|||
'categories': ['Attribution'],
|
||||
'comment': 'Whois history registrant email of %s'
|
||||
'Status: %s' % (
|
||||
domain, item['status'])
|
||||
domain,
|
||||
' '.join(item['status']))
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -444,7 +445,8 @@ def expand_history_whois(api, domain):
|
|||
'categories': ['Attribution'],
|
||||
'comment': 'Whois history registrant phone of %s'
|
||||
'Status: %s' % (
|
||||
domain, item['status'])
|
||||
domain,
|
||||
' '.join(item['status']))
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue