Skip to content

Commit

Permalink
add decep extension
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmoker committed Jun 8, 2015
1 parent c6544c0 commit bdc273e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
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.
17 changes: 17 additions & 0 deletions stix/extensions/deception/deception.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from stix.common.vocabs import VocabString
from stix.common.vocabs import register_vocab

@register_vocab
class Deception_1_0(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'

0 comments on commit bdc273e

Please sign in to comment.