Last active
November 19, 2020 16:30
-
-
Save diofeher/1594a765a8250d69bb1b25e7013119f9 to your computer and use it in GitHub Desktop.
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
{{- /* Template based on https://docs.gitlab.com/ee/user/application_security/container_scanning/#reports-json-format */ -}} | |
{ | |
"version": "11.0.0", | |
"vulnerabilities": [ | |
{{- $t_first := true }} | |
{{- range . }} | |
{{- $target := .Target }} | |
{{- range .Vulnerabilities -}} | |
{{- if $t_first -}} | |
{{- $t_first = false -}} | |
{{ else -}} | |
, | |
{{- end }} | |
{ | |
"id": "{{ .VulnerabilityID }}", | |
"category": "container_scanning", | |
"message": {{ if .Title -}}{{ .Title | printf "%q" }}{{- else -}}"{{ .Description | printf "%.50s" }}"{{- end }}, | |
"description": {{ .Description | printf "%q" }}, | |
{{- /* cve is a deprecated key, use id instead */}} | |
"cve": "{{ .VulnerabilityID }}", | |
"severity": {{ if eq .Severity "UNKNOWN" -}} | |
"Unknown" | |
{{- else if eq .Severity "LOW" -}} | |
"Low" | |
{{- else if eq .Severity "MEDIUM" -}} | |
"Medium" | |
{{- else if eq .Severity "HIGH" -}} | |
"High" | |
{{- else if eq .Severity "CRITICAL" -}} | |
"Critical" | |
{{- else -}} | |
"{{ .Severity }}" | |
{{- end }}, | |
{{- /* TODO: Define confidence */}} | |
"confidence": "Unknown", | |
"solution": {{ if .FixedVersion -}} | |
"Upgrade {{ .PkgName }} to {{ .FixedVersion }}" | |
{{- else -}} | |
"No solution provided" | |
{{- end }}, | |
"scanner": { | |
"id": "trivy", | |
"name": "trivy" | |
}, | |
"location": { | |
"dependency": { | |
"package": { | |
"name": "{{ .PkgName }}" | |
}, | |
"version": "{{ .InstalledVersion }}" | |
}, | |
{{- /* TODO: No mapping available - https://github.com/aquasecurity/trivy/issues/332 */}} | |
"operating_system": "Unknown", | |
"image": "{{ $target }}" | |
}, | |
"identifiers": [ | |
{ | |
{{- /* TODO: Type not extractable - https://github.com/aquasecurity/trivy-db/pull/24 */}} | |
"type": "cve", | |
"name": "{{ .VulnerabilityID }}", | |
"value": "{{ .VulnerabilityID }}", | |
"url": "http://example.com" | |
} | |
], | |
"links": [ | |
{{- $l_first := true -}} | |
{{- range .References -}} | |
{{- if $l_first -}} | |
{{- $l_first = false }} | |
{{- else -}} | |
, | |
{{- end -}} | |
{ | |
"url": "{{ . }}" | |
} | |
{{- end }} | |
] | |
} | |
{{- end -}} | |
{{- end }} | |
], | |
"remediations": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment