diff --git a/monkey/monkey_island/cc/services/attack/mitre_api_interface.py b/monkey/monkey_island/cc/services/attack/mitre_api_interface.py index ad4419be5..6390c600b 100644 --- a/monkey/monkey_island/cc/services/attack/mitre_api_interface.py +++ b/monkey/monkey_island/cc/services/attack/mitre_api_interface.py @@ -1,6 +1,6 @@ from typing import List, Dict -from stix2 import FileSystemSource, Filter, CourseOfAction, AttackPattern, v20 +from stix2 import FileSystemSource, Filter, CourseOfAction, AttackPattern class MitreApiInterface: @@ -32,14 +32,14 @@ class MitreApiInterface: return all_techniques @staticmethod - def get_stix2_external_reference_id(stix2_data: v20._DomainObject) -> str: + def get_stix2_external_reference_id(stix2_data) -> str: for reference in stix2_data['external_references']: if reference['source_name'] == "mitre-attack" and 'external_id' in reference: return reference['external_id'] return '' @staticmethod - def get_stix2_external_reference_url(stix2_data: v20._DomainObject) -> str: + def get_stix2_external_reference_url(stix2_data) -> str: for reference in stix2_data['external_references']: if 'url' in reference: return reference['url']