forked from p15670423/monkey
Island: Remove unused attack mitigations import code
This commit is contained in:
parent
2a9d9938cd
commit
c93d5037b2
|
@ -0,0 +1 @@
|
||||||
|
from monkey_island.cc.models.attack.mitigation import Mitigation
|
|
@ -1,12 +1,9 @@
|
||||||
from typing import Dict
|
|
||||||
|
|
||||||
from mongoengine import Document, DoesNotExist, EmbeddedDocumentField, ListField, StringField
|
from mongoengine import Document, DoesNotExist, EmbeddedDocumentField, ListField, StringField
|
||||||
from stix2 import AttackPattern, CourseOfAction
|
|
||||||
|
|
||||||
from monkey_island.cc.models.attack.mitigation import Mitigation
|
|
||||||
from monkey_island.cc.services.attack.mitre_api_interface import MitreApiInterface
|
|
||||||
|
|
||||||
|
|
||||||
|
# Note: This model is duplicated in
|
||||||
|
# deployment_scripts/dump_attack_mitigations/attack_mitigations.py. If the schema changes here, it
|
||||||
|
# will also need to be changed there.
|
||||||
class AttackMitigations(Document):
|
class AttackMitigations(Document):
|
||||||
COLLECTION_NAME = "attack_mitigations"
|
COLLECTION_NAME = "attack_mitigations"
|
||||||
|
|
||||||
|
@ -19,32 +16,3 @@ class AttackMitigations(Document):
|
||||||
return AttackMitigations.objects.get(technique_id=technique_id)
|
return AttackMitigations.objects.get(technique_id=technique_id)
|
||||||
except DoesNotExist:
|
except DoesNotExist:
|
||||||
raise Exception("Attack technique with id {} does not exist!".format(technique_id))
|
raise Exception("Attack technique with id {} does not exist!".format(technique_id))
|
||||||
|
|
||||||
def add_mitigation(self, mitigation: CourseOfAction):
|
|
||||||
mitigation_external_ref_id = MitreApiInterface.get_stix2_external_reference_id(mitigation)
|
|
||||||
if mitigation_external_ref_id.startswith("M"):
|
|
||||||
self.mitigations.append(Mitigation.get_from_stix2_data(mitigation))
|
|
||||||
|
|
||||||
def add_no_mitigations_info(self, mitigation: CourseOfAction):
|
|
||||||
mitigation_external_ref_id = MitreApiInterface.get_stix2_external_reference_id(mitigation)
|
|
||||||
if mitigation_external_ref_id.startswith("T") and len(self.mitigations) == 0:
|
|
||||||
mitigation_mongo_object = Mitigation.get_from_stix2_data(mitigation)
|
|
||||||
mitigation_mongo_object["description"] = mitigation_mongo_object[
|
|
||||||
"description"
|
|
||||||
].splitlines()[0]
|
|
||||||
mitigation_mongo_object["url"] = ""
|
|
||||||
self.mitigations.append(mitigation_mongo_object)
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def mitigations_from_attack_pattern(attack_pattern: AttackPattern):
|
|
||||||
return AttackMitigations(
|
|
||||||
technique_id=MitreApiInterface.get_stix2_external_reference_id(attack_pattern),
|
|
||||||
mitigations=[],
|
|
||||||
)
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def dict_from_stix2_attack_patterns(stix2_dict: Dict[str, AttackPattern]):
|
|
||||||
return {
|
|
||||||
key: AttackMitigations.mitigations_from_attack_pattern(attack_pattern)
|
|
||||||
for key, attack_pattern in stix2_dict.items()
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,17 +1,10 @@
|
||||||
from mongoengine import EmbeddedDocument, StringField
|
from mongoengine import EmbeddedDocument, StringField
|
||||||
from stix2 import CourseOfAction
|
|
||||||
|
|
||||||
from monkey_island.cc.services.attack.mitre_api_interface import MitreApiInterface
|
|
||||||
|
|
||||||
|
|
||||||
|
# Note: This model is duplicated in
|
||||||
|
# deployment_scripts/dump_attack_mitigations/attack_mitigations.py. If the schema changes here, it
|
||||||
|
# will also need to be changed there.
|
||||||
class Mitigation(EmbeddedDocument):
|
class Mitigation(EmbeddedDocument):
|
||||||
name = StringField(required=True)
|
name = StringField(required=True)
|
||||||
description = StringField(required=True)
|
description = StringField(required=True)
|
||||||
url = StringField()
|
url = StringField()
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def get_from_stix2_data(mitigation: CourseOfAction):
|
|
||||||
name = mitigation["name"]
|
|
||||||
description = mitigation["description"]
|
|
||||||
url = MitreApiInterface.get_stix2_external_reference_url(mitigation)
|
|
||||||
return Mitigation(name=name, description=description, url=url)
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
class MitreApiInterface:
|
|
||||||
@staticmethod
|
|
||||||
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) -> str:
|
|
||||||
for reference in stix2_data["external_references"]:
|
|
||||||
if "url" in reference:
|
|
||||||
return reference["url"]
|
|
||||||
return ""
|
|
Loading…
Reference in New Issue