File: csv.tpl

package info (click to toggle)
libvpl-tools 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,640 kB
  • sloc: cpp: 107,613; python: 4,303; ansic: 3,202; sh: 159; lisp: 52; makefile: 13
file content (29 lines) | stat: -rw-r--r-- 842 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{ range . }}
Trivy Vulnerability Scan Results ({{- .Target -}})
VulnerabilityID,Severity,CVSS Score,Title,Library,Vulnerable Version,Fixed Version,Information URL,Triage Information
{{ range .Vulnerabilities }}
    {{- .VulnerabilityID }},
    {{- .Severity }},
    {{- range $key, $value := .CVSS }}
        {{- if (eq $key "nvd") }}
            {{- .V3Score -}}
        {{- end }}
    {{- end }},
    {{- quote .Title }},
    {{- quote .PkgName }},
    {{- quote .InstalledVersion }},
    {{- quote .FixedVersion }},
    {{- .PrimaryURL }}
{{ else -}}
    No vulnerabilities found at this time.
{{ end }}
Trivy Dependency Scan Results ({{ .Target }})
ID,Name,Version,Notes
{{ range .Packages -}}
    {{- quote .ID }},
    {{- quote .Name }},
    {{- quote .Version }}
{{ else -}}
    No dependencies found at this time.
{{ end }}
{{ end }}