Skip to content

Commit c9ba742

Browse files
committed
add decep extension
1 parent c6544c0 commit c9ba742

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from stix.common import vocabs
2+
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

Comments
 (0)