OSINT taxonomy (early version) added

pull/8/head
Alexandre Dulaunoy 2016-01-15 09:01:25 +01:00
parent 85fad65ab2
commit ac1a76889e
2 changed files with 62 additions and 1 deletions

61
osint/machinetag.json Normal file
View File

@ -0,0 +1,61 @@
{
"predicates": [
{
"expanded": "Source Type",
"value": "source-type"
},
{
"expanded": "Lifetime of the information as Open Source Intelligence",
"value": "lifetime"
}
],
"version": 1,
"description": "Open Source Intelligence - Classification (MISP taxonomies)",
"namespace": "osint",
"values": [
{
"predicate": "source-type",
"entry": [
{
"value": "blog-post",
"expanded": "Blog post"
},
{
"value": "technical-report",
"expanded": "Technical or analysis report"
},
{
"value": "news-report",
"expanded": "News report"
},
{
"value": "pastie-website",
"expanded": "Pastie-like website"
},
{
"value": "electronic-forum",
"expanded": "Electronic forum"
},
{
"value": "mailing-list",
"expanded": "Mailing-list"
}
]
},
{
"entry": [
{
"description": "Information available publicly on long-term",
"expanded": "Perpetual",
"value": "perpetual"
},
{
"description": "Information available publicly on short-term",
"expanded": "Ephemeral",
"value": "ephemeral"
}
],
"predicate": "lifetime"
}
]
}

View File

@ -30,7 +30,7 @@ import json
import os.path
import argparse
taxonomies = ['admiralty-scale','tlp', 'circl', 'veris', 'ecsirt', 'dni-ism', 'nato', 'euci']
taxonomies = ['admiralty-scale','tlp', 'circl', 'veris', 'ecsirt', 'dni-ism', 'nato', 'euci', 'osint']
argParser = argparse.ArgumentParser(description='Dump Machine Tags (Triple Tags) from MISP taxonomies')
argParser.add_argument('-e', action='store_true', help='Include expanded tags')