Risk Level
Configuration
# Configuration for risk level
# Weights for each issue kind and severity level
#
# Each array is the weight for issues of the given kind,
# with critical, high and low severity, respectively.
weights:
misconfiguration: [3, 2, 1]
suspect_dependency: [3, 2, 1]
secret: [3, 2, 1]
iac_flaw: [3, 2, 1]
unusual_activity: [3, 2, 1]
code_tampering: [3, 2, 1]
sca_vulnerability: [3, 2, 1]
# Cutoff values for each risk category [c_low, c_high]
#
# high risk, when risk level >= c_high
# moderate risk, when risk level in the [c_low, c_high) interval
# low risk, when risk level < c_low
#
# c_low must be lower than c_high, and both in the range (0, 100)
cutoff: [33.33, 66.66]
# The factor for normalizing the weighted count of issues
# into the risk range. Approximately the average
steepness: 0.00666
# Weight for risk level aggregation across projects.
# The business value project property is used for selecting the weight.
project_weights:
critical: 4
high: 3
medium: 2
low: 1Last updated