2019-02-28 13:01:30 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>${reportTitle}</title>
|
|
|
|
<style type="text/css">${style}</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>${reportTitle}</h1>
|
|
|
|
<h2>
|
|
|
|
<span>
|
2019-03-01 15:35:08 +01:00
|
|
|
<i>WhiteSource product name: ${whitesourceProductName}</i><br />
|
|
|
|
<i>Filtered project names: ${whitesourceProjectNames?:''}</i>
|
2019-02-28 13:01:30 +01:00
|
|
|
</span>
|
|
|
|
</h2>
|
|
|
|
<div>
|
|
|
|
<h3> total number of vulnerabilities: ${totalVulnerabilities}<br />
|
2019-03-15 13:21:56 +01:00
|
|
|
total number of high/critical vulnerabilities with CVSS score >= ${cvssSeverityLimit}: ${totalSevereVulnerabilities}
|
2019-03-01 15:35:08 +01:00
|
|
|
</h3>
|
2019-02-28 13:01:30 +01:00
|
|
|
</div>
|
2019-04-03 12:31:40 +02:00
|
|
|
<p>Snapshot taken:${now}</p>
|
2019-02-28 13:01:30 +01:00
|
|
|
<table>
|
|
|
|
<tr>
|
2019-03-01 15:35:08 +01:00
|
|
|
<th>Entry #</th>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>CVE</th>
|
|
|
|
<th>CVSS Score</th>
|
|
|
|
<th>CVSS Version</th>
|
|
|
|
<th>Project</th>
|
|
|
|
<th>Library file name</th>
|
|
|
|
<th>Library group ID</th>
|
|
|
|
<th>Library artifact ID</th>
|
|
|
|
<th>Library version</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Top fix</th>
|
2019-02-28 13:01:30 +01:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
${vulnerabilityTable}
|
|
|
|
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|