We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6544c0 commit bdc273eCopy full SHA for bdc273e
stix/extensions/deception/__init__.py
@@ -0,0 +1,2 @@
1
+# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
2
+# See LICENSE.txt for complete terms.
stix/extensions/deception/deception.py
@@ -0,0 +1,17 @@
+from stix.common.vocabs import VocabString
+from stix.common.vocabs import register_vocab
3
+
4
+@register_vocab
5
+class Deception_1_0(VocabString):
6
+ _namespace = 'http://stix.mitre.org/deception-1'
7
+ _XSI_TYPE = 'stixVocabs:DeceptionVocab-1.0'
8
+ _VOCAB_VERSION = '1.0'
9
10
+ TERM_PURPOSE = 'Purpose'
11
+ TERM_COLLECT = "Collect Intelligence"
12
+ TERM_DESIGN = "Design Cover Story"
13
+ TERM_PLAN ="Plan"
14
+ TERM_PREPARE="Prepare"
15
+ TERM_EXECUTE ="Execute"
16
+ TERM_MONITOR ="Monitor"
17
+ TERM_REINFORCE = 'Reinforce'
0 commit comments