-
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.
- Loading branch information
Showing
3 changed files
with
77 additions
and
6 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
python3 machinetag.py -a >a.txt | ||
asciidoctor a.txt | ||
asciidoctor-pdf -a allow-uri-read a.txt | ||
cp a.html ../../misp-website-new/static/taxonomies.html | ||
cp a.pdf ../../misp-website-new/static/taxonomies.pdf | ||
cp a.html ../../misp-website/static/taxonomies.html | ||
cp a.pdf ../../misp-website/static/taxonomies.pdf | ||
scp a.html [email protected]:/var/www/nwww.circl.lu/doc/misp-taxonomies/index.html | ||
scp a.pdf [email protected]://var/www/nwww.circl.lu/doc/misp-taxonomies/taxonomies.pdf |
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." | ||
} | ||
] | ||
} | ||
] | ||
} |