Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions stix/extensions/deception/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.
16 changes: 16 additions & 0 deletions stix/extensions/deception/deception.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from stix.common import vocabs

@vocabs.register_vocab
class Deception_1_0(vocabs.VocabString):
_namespace = 'http://stix.mitre.org/deception-1'
_XSI_TYPE = 'stixVocabs:DeceptionVocab-1.0'
_VOCAB_VERSION = '1.0'

TERM_PURPOSE = 'Purpose'
TERM_COLLECT = "Collect Intelligence"
TERM_DESIGN = "Design Cover Story"
TERM_PLAN ="Plan"
TERM_PREPARE="Prepare"
TERM_EXECUTE ="Execute"
TERM_MONITOR ="Monitor"
TERM_REINFORCE = 'Reinforce'