From 268bd4454cfb9dd0b6c0f9b555cdfa2a79d53a7e Mon Sep 17 00:00:00 2001 From: cccs-rs <62077998+cccs-rs@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:50:03 +0000 Subject: [PATCH] Add attack IDs raised by heuristics to ontology --- assemblyline/odm/models/ontology/ontology.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assemblyline/odm/models/ontology/ontology.py b/assemblyline/odm/models/ontology/ontology.py index d3ed3b989..75a90bd00 100644 --- a/assemblyline/odm/models/ontology/ontology.py +++ b/assemblyline/odm/models/ontology/ontology.py @@ -12,11 +12,12 @@ from assemblyline.odm.models.ontology.file import File Classification = forge.get_classification() -ODM_VERSION = "1.10" +ODM_VERSION = "1.11" @odm.model(index=False, store=False, description="Heuristics raised") class Heuristics(odm.Model): + attack_ids = odm.List(odm.Keyword(), description="ATT&CK IDs associated to heuristic") heur_id = odm.Keyword(description="Heuristic ID") score = odm.Integer(description="Score associated to heurstic") times_raised = odm.Integer(description="The number of times the heuristic was raised")