forked from kiali/kiali.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Ignore CVEs table to Security page (kiali#658)
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |