Skip to content

Commit

Permalink
Add Ignore CVEs table to Security page (kiali#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshaughn authored Jun 1, 2023
1 parent f0abae7 commit 40b4788
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
8 changes: 8 additions & 0 deletions content/en/news/security-bulletins/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,11 @@ type: docs
weight: 2
---

Kiali releases every three weeks and so generally resolves CVEs in new releases only. Golang vulnerabilities are typically resolved in a timely way, as the Go version for release builds increments fairly often. Occasionally, critical CVEs may be resolved in patch releases for supported versions. Additionally, not every CVE reported against a Kiali dependency is actually a vulnerability. For reported CVEs that are proven not to affect Kiali, see the table below:

{{<security-cve-table>}}

<br />

For Kiali-specific vulnerabilities there will be releases made as needed. At release time a security bulletin will be release as well. For prior bulletins see below:

6 changes: 6 additions & 0 deletions data/security/cve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# The Reported Kiali CVEs for which Kiali is confirmed to not be vulnerable
versionRange:
- cve: "CVE-2022-1996"
severity: critical
description: "github.com/emicklei/go-restful"
notes: "Despite the package dependency Kiali is not susceptible to this vulnerability"
20 changes: 20 additions & 0 deletions layouts/shortcodes/security-cve-table.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{{ $data := index .Site.Data.security.cve }}

<table>
<thead>
<tr>
<th style="width:160px">CVE</th>
<th style="width:360px">Description</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
{{ range $data.versionRange }}
<tr>
<td>{{ .cve }}</td>
<td>{{ .description }}</td>
<td>{{ .notes }}</td>
</tr>
{{ end }}
</tbody>
</table>

0 comments on commit 40b4788

Please sign in to comment.