Legacy Mend UI - Adding CVSS 3.x Severity to an Excel Spreadsheet
If you choose to Export to Excel via the Alerts > View By Vulnerability report, currently, the Severity column is using the CVSS 2.0 rating scale:
Low = 0.0-3.9
Medium = 4.0-6.9
High = 7.0-10.0
The CVSS 3.x ratings modify High = 7.0-8.9 and include the new Critical = 9.0-10.0: https://www.first.org/cvss/specification-document
Note that the CVSS column in the report contains CVSS 3.0 scores
If you want to include the CVSS 3.0 Severity in the Excel spreadsheet, you can do the following:
Open the Mend User Interface
Select Alerts -> View by Vulnerability
Select Product and Project and click Apply
Click Export -> Excel
Open the Excel sheet and insert a new column next to the G column named "CVSS 3.0 Severity"
Add the following formula into the first cell of the newly created column (assuming H2):
CODE=IF(I2>="9", "CRITICAL", G2)
This is setting the Severity to Critical if the score is 9.0 and above, if less than 9.0 then it uses the Severity value from cell G2 (CVSS 2.0 range for High/Medium/Low)
The “I2” value should be the cell with the numerical CVSS score in the same row, and the “G2” value should be the cell with the existing descriptive CVSS 2.0 score in the same row
Double-click the square dot at the bottom right corner of the cell to expand the formula to all rows