You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A weighed vulnerability score should be added to the core. It will be used in the Sonar plugin and potentially the Jenkins plugin.
Ideally, the risk of the vulnerabilities discovered would take into consideration the reliance (based on imports or usage) of the vulnerable dependency and the size of the codebase. However, since Dependency-Check cannot guarantee any visibility into this information, we need to use the information currently available in the XML report.
Potential datapoints include:
HIGH (total high severity vulns)
MEDIUM (total medium severity vulns)
LOW (total low severity vulns)
TOTAL_VULNS (total number of all vulnerabilities)
TOTAL_DEPS (total number of dependencies scanned)
VULN_DEPS (number of vulnerable dependencies)
The text was updated successfully, but these errors were encountered:
The IRS is simply a weighted measurement of the vulnerabilities inherited by the application through the use of vulnerable components. It does not measure the applications actual risk due to those components. The higher the score the more risk the application inherits.
Vulnerable Component Ratio
(vulnerabilities / vulnerableComponents)
This is simply a measurement of the number of vulnerabilities to the vulnerable components (as a percentage). A higher percentage indicates that a large number of components contain vulnerabilities. Lower percentages are better.
A weighed vulnerability score should be added to the core. It will be used in the Sonar plugin and potentially the Jenkins plugin.
Ideally, the risk of the vulnerabilities discovered would take into consideration the reliance (based on imports or usage) of the vulnerable dependency and the size of the codebase. However, since Dependency-Check cannot guarantee any visibility into this information, we need to use the information currently available in the XML report.
Potential datapoints include:
The text was updated successfully, but these errors were encountered: