From bb11ea78579e849cbec0d8b53c229c8785ae37c2 Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Tue, 4 Oct 2022 16:09:42 +0200 Subject: [PATCH] Common: Add attack tags --- monkey/common/tags/__init__.py | 6 ++++++ monkey/common/tags/attack.py | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 monkey/common/tags/__init__.py create mode 100644 monkey/common/tags/attack.py diff --git a/monkey/common/tags/__init__.py b/monkey/common/tags/__init__.py new file mode 100644 index 000000000..fd85dfe54 --- /dev/null +++ b/monkey/common/tags/__init__.py @@ -0,0 +1,6 @@ +from .attack import ( + T1105_ATTACK_TECHNIQUE_TAG, + T1110_ATTACK_TECHNIQUE_TAG, + T1222_ATTACK_TECHNIQUE_TAG, + T1021_ATTACK_TECHNIQUE_TAG, +) diff --git a/monkey/common/tags/attack.py b/monkey/common/tags/attack.py new file mode 100644 index 000000000..e12fdf1ad --- /dev/null +++ b/monkey/common/tags/attack.py @@ -0,0 +1,4 @@ +T1105_ATTACK_TECHNIQUE_TAG = "attack-t1105" +T1110_ATTACK_TECHNIQUE_TAG = "attack-t1110" +T1222_ATTACK_TECHNIQUE_TAG = "attack-t1222" +T1021_ATTACK_TECHNIQUE_TAG = "attack-t1021"