Skip to content

Commit 9b08656

Browse files
use lowest instead of highest for fallback values
1 parent 4dcb8a6 commit 9b08656

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

bbot_server/modules/findings/findings_api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
# Used to derive a default risk score from finding_max_severity.
1010
SEVERITY_TO_CVSS = {
1111
"INFO": 0.0,
12-
"LOW": 3.9,
13-
"MEDIUM": 6.9,
14-
"HIGH": 8.9,
15-
"CRITICAL": 10.0,
12+
"LOW": 0.1,
13+
"MEDIUM": 4.0,
14+
"HIGH": 7.0,
15+
"CRITICAL": 9.0,
1616
}
1717

1818

0 commit comments

Comments
 (0)