aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/reports.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/srtgui/reports.py')
-rw-r--r--lib/srtgui/reports.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/srtgui/reports.py b/lib/srtgui/reports.py
index c207bd84..a1f0de00 100644
--- a/lib/srtgui/reports.py
+++ b/lib/srtgui/reports.py
@@ -1965,7 +1965,7 @@ class PublishSummaryReport(PublishListReport):
product_top_defect = []
# Default all product status to the CVE's status
for product in product_list:
- status_table[product.key] = SRTool.status_text(SRTool.NOT_VULNERABLE)
+ status_table[product.key] = ''
# Set the specific status for the child investigations
for cv in cve.cve_to_vulnerability.all():
#status_text = cv.vulnerability.get_status_text
@@ -2028,19 +2028,19 @@ class PublishSummaryReport(PublishListReport):
writer = None
# Assemble the header
- text_format = '%-18s,%16s,%-8s,%-8s,%-15s,%-15s,%-30s,%-25s,%15s,%15s,%20s,'
+ text_format = '%-18s,%16s,%-11s,%-8s,%-11s,%-8s,%-30s,%-25s,%15s,%15s,%11s,'
header = [
'CVE Number',
'Status',
- 'CVSSv2_Severity',
- 'CVSSv2_Score',
- 'CVSSv3_Severity',
- 'CVSSv3_Score',
+ 'V2_Severity',
+ 'V2_Score',
+ 'V3_Severity',
+ 'V3_Score',
'CVE Description',
'YP Comments',
'Created Date',
'Modified Date',
- 'YP Acknowledged Date',
+ 'YP Ack Date',
]
# Assemble the product column namess
for product in product_list: