16 lines
614 B
Text
16 lines
614 B
Text
|
{{define "vulns"}}CVE Report for {{.Repo}}:{{.Tag}}
|
||
|
Generated on: {{.Date}}
|
||
|
|
||
|
Vulnerabilities Found: {{len .Vulns}}
|
||
|
|
||
|
{{range $key, $value := .VulnsBySeverity}}{{$key}}: {{len $value}}
|
||
|
{{end}}
|
||
|
{{if gt .BadVulns 5}}------------------------------------ ALERT ------------------------------------
|
||
|
{{.BadVulns}} High, Critical, and/or Defcon1 vulnerabilities found
|
||
|
|
||
|
{{end}}{{range $vulns := .VulnsBySeverity}}{{range $value := $vulns}}{{$value.Name}}: [{{$value.Severity}}]
|
||
|
{{trim $value.Description}}
|
||
|
{{$value.Link}}
|
||
|
-------------------------------------------------------------------------------
|
||
|
{{end}}{{end}}{{end}}
|