OSINT taxonomy (early version) added
parent
85fad65ab2
commit
ac1a76889e
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -30,7 +30,7 @@ import json
|
||||||
import os.path
|
import os.path
|
||||||
import argparse
|
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 = argparse.ArgumentParser(description='Dump Machine Tags (Triple Tags) from MISP taxonomies')
|
||||||
argParser.add_argument('-e', action='store_true', help='Include expanded tags')
|
argParser.add_argument('-e', action='store_true', help='Include expanded tags')
|
||||||
|
|
Loading…
Reference in New Issue