First version of the vulnerability object (basic CVE support)

pull/2/head
Alexandre Dulaunoy 2016-05-27 22:36:18 +02:00
parent a493cc59a3
commit 497b7b7b7e
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{
"name": "vulnerability",
"meta-category": "network",
"description": "Vulnerability object describing common vulnerability enumeration",
"version": 1,
"attributes" :
{
"references": {
"misp-attribute": "link",
"misp-usage-frequency": 1,
"multiple": true
},
"published": {
"misp-attribute": "datetime",
"misp-usage-frequency": 0
},
"modified": {
"misp-attribute": "datetime",
"misp-usage-frequency": 0
},
"vulnerable_configuration": {
"misp-attribute": "text",
"misp-usage-frequency": 1,
"multiple": true,
"description": "The vulnerable configuration is described in CPE format"
},
"summary": {
"misp-attribute": "text",
"misp-usage-frequency": 1
},
"text": {
"misp-attribute": "text",
"misp-usage-frequency": 1
},
"id": {
"misp-attribute": "vulnerability",
"misp-usage-frequency": 1
}
},
"requiredOneOf": ["published", "modified", "references", "vulnerable_configuration", "summary", "text", "id"]
}