fix: Using an existing relationship between a process and its network connections

pull/3157/merge
chrisr3d 2018-05-04 16:13:28 +02:00
parent 304849046e
commit 3c7be3b588
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 1 additions and 1 deletions

View File

@ -780,7 +780,7 @@ class StixParser():
misp_object.add_reference(compl_data['pe_uuid'], 'included-in')
if "process_uuid" in compl_data:
for uuid in compl_data["process_uuid"]:
misp_object.add_reference(uuid, 'connection-of')
misp_object.add_reference(uuid, 'connected-to')
self.misp_event.add_object(**misp_object)
@staticmethod