This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from intuitem/owasp_basic_matrix
Owasp basic matrix
- Loading branch information
Showing
1 changed file
with
37 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,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] | ||
] | ||
} | ||
} | ||
] | ||
} |