Skip to content

Commit bdc273e

Browse files
committed
add decep extension
1 parent c6544c0 commit bdc273e

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

stix/extensions/deception/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
2+
# See LICENSE.txt for complete terms.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from stix.common.vocabs import VocabString
2+
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

Comments
 (0)