-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: [vulnerability] first version of a taxonomy for vulnerabilities
This taxonomy is originally maintained by MISP project and done for the vulnerability-lookup project https://github.com/cve-search/vulnerability-lookup The taxonomy will be extended and improved. Contributions are also very welcome. Thanks to @cedricbonhomme for the original discussions.
- Loading branch information
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"namespace": "vulnerability", | ||
"expanded": "vulnerability", | ||
"description": "A taxonomy for describing vulnerabilities (software, hardware, or social) on different scales or with additional available information.", | ||
"version": 1, | ||
"predicates": [ | ||
{ | ||
"value": "exploitability", | ||
"expanded": "Exploitability", | ||
"description": "Quantification of attack exploitability, providing a level of exploitation for the identified vulnerability.", | ||
"exclusive": true | ||
}, | ||
{ | ||
"value": "information", | ||
"expanded": "Information", | ||
"description": "Complementary information related to the vulnerability." | ||
} | ||
], | ||
"values": [ | ||
{ | ||
"predicate": "exploitability", | ||
"entry": [ | ||
{ | ||
"value": "industrialised", | ||
"expanded": "Industrialised", | ||
"description": "Existing vulnerability with detailed attack methods; multiple tools are available for exploitation." | ||
}, | ||
{ | ||
"value": "customised", | ||
"expanded": "Customised", | ||
"description": "Existing vulnerability with a detailed attack approach and one known custom tool available for exploitation." | ||
}, | ||
{ | ||
"value": "documented", | ||
"expanded": "Documented", | ||
"description": "Existing vulnerability is documented with an attack approach, but tools for exploitation are not available." | ||
}, | ||
{ | ||
"value": "theoretical", | ||
"expanded": "Theoretical", | ||
"description": "Publication describes a theoretical but no actual vulnerability is reported." | ||
} | ||
] | ||
}, | ||
{ | ||
"predicate": "information", | ||
"entry": [ | ||
{ | ||
"value": "PoC", | ||
"expanded": "Proof-of-Concept", | ||
"description": "Reference to a proof-of-concept for exploiting the vulnerability." | ||
}, | ||
{ | ||
"value": "remediation", | ||
"expanded": "Remediation", | ||
"description": "Remediation to limit or block the exploitability of the vulnerability." | ||
}, | ||
{ | ||
"value": "annotation", | ||
"expanded": "Annotation", | ||
"description": "Annotation or clarification to a vulnerability." | ||
} | ||
] | ||
} | ||
] | ||
} |
e1a1d05
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First use of the taxonomy in vulnerability-lookup : cve-search/vulnerability-lookup@5520588#diff-a68d5404c1c8d95f1a7ab4af93b4b8a4e4135b1bf6bb7a8c910d337209226f09