Skip to content
This repository was archived by the owner on Mar 30, 2024. It is now read-only.

Owasp basic matrix #14

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions library/libraries/3x3_owasp_matrix.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"locale": "en",
"name": "OWASP basic matrix 3x3",
"description": "OWASP basic matrix 3x3",
"format_version": "1.0",
"objects": [
{
"type": "matrix",
"fields": {
"name": "owasp",
"description": "owasp matrix",
"probability" : [
{"abbreviation": "L", "name": "Low", "description": "rare"},
{"abbreviation": "M", "name": "Medium", "description": "occasional"},
{"abbreviation": "H", "name": "High", "description": "frequent"}
],
"impact": [
{"abbreviation": "L", "name": "Low", "description": "minimal"},
{"abbreviation": "M", "name": "Medium", "description": "moderate"},
{"abbreviation": "H", "name": "High", "description": "severe"}
],
"risk": [
{"abbreviation": "N", "name": "Note", "description": "Note", "hexcolor": "#A6EC99"},
{"abbreviation": "L", "name": "Low", "description": "Low", "hexcolor": "#FFFF54"},
{"abbreviation": "M", "name": "Medium", "description": "Medium", "hexcolor": "#F2A93B"},
{"abbreviation": "H", "name": "High", "description": "High", "hexcolor": "#F5C2CB"},
{"abbreviation": "C", "name": "Critical", "description": "Critical", "hexcolor": "#EA3323"}
],
"grid": [
[0, 1, 2],
[1, 2, 3],
[2, 3, 4]
]
}
}
]
}