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 c9ba742Copy full SHA for c9ba742
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,16 @@
+from stix.common import vocabs
+
3
+@vocabs.register_vocab
4
+class Deception_1_0(vocabs.VocabString):
5
+ _namespace = 'http://stix.mitre.org/deception-1'
6
+ _XSI_TYPE = 'stixVocabs:DeceptionVocab-1.0'
7
+ _VOCAB_VERSION = '1.0'
8
9
+ TERM_PURPOSE = 'Purpose'
10
+ TERM_COLLECT = "Collect Intelligence"
11
+ TERM_DESIGN = "Design Cover Story"
12
+ TERM_PLAN ="Plan"
13
+ TERM_PREPARE="Prepare"
14
+ TERM_EXECUTE ="Execute"
15
+ TERM_MONITOR ="Monitor"
16
+ TERM_REINFORCE = 'Reinforce'
0 commit comments