mirror of https://github.com/MISP/misp-modules
parent
b9ce6d689c
commit
0d035c0292
|
@ -93,11 +93,14 @@ class Yeti():
|
|||
typ_attribute = self.misp_mapping[obj_yeti['type']]
|
||||
attr_misp = {'type': typ_attribute, 'value': obj_yeti['value']}
|
||||
if typ_attribute == 'ip-src' or typ_attribute == 'ip-dst':
|
||||
attr_misp['object_relation'] = 'ip'
|
||||
attr_misp['object_relation'] = {'type': 'text',
|
||||
'object_relation': 'ip'}
|
||||
elif 'domain' == typ_attribute:
|
||||
attr_misp['object_relation'] = 'domain'
|
||||
attr_misp['object_relation'] = {'type': 'text',
|
||||
'object_relation': 'domain'}
|
||||
elif 'hostname' == typ_attribute:
|
||||
attr_misp['object_relation'] = 'domain'
|
||||
attr_misp['object_relation'] = {'type': 'text',
|
||||
'object_relation': 'domain'}
|
||||
attr_misp['type'] = 'domain'
|
||||
else:
|
||||
attr_misp['object_relation'] = None
|
||||
|
|
Loading…
Reference in New Issue