new: Added basic binary file taxonomy.

Fixes #59
pull/61/head
Hannah Ward 2017-04-05 12:00:00 +01:00
parent 6b783ef9ec
commit ec73ce3ad4
No known key found for this signature in database
GPG Key ID: 6F3BAD60DE190290
2 changed files with 55 additions and 0 deletions

25
binary-class/README.md Normal file
View File

@ -0,0 +1,25 @@
# Binary Classification
Custom taxonomy for tagging of known binary files
## type
<dl>
<dt>good</dt>
<dd>Known good/safe</dd>
<dt>bad</dt>
<dd>Known bad/malicious<dd>
<dt>unknown</dt>
<dd>Not yet known</dd>
</dl>
# Machine-parsable Binary Taxonomy
The repository contains a [JSON file including the machine-parsable tags](machinetag.json)
along with their human-readable description. The software can use both
representation on the user-interface and store the tag as machine-parsable.
~~~~
binary-class:type="good"
~~~~

View File

@ -0,0 +1,30 @@
{
"namespace": "binary-class",
"description": "Custom taxonomy for types of binary file.",
"version": 1,
"predicates": [
{
"value": "type",
"expanded": "Binary Type"
}
],
"values": [
{
"predicate": "type",
"entry": [
{
"value": "good",
"expanded": "Known Good/Safe"
},
{
"value": "malicious",
"expanded": "Known Bad/Malicious"
},
{
"value": "unknown",
"expanded": "Not yet known"
}
]
}
]
}