Skip to content

Commit 15fe1a9

Browse files
committed
Enable custom formats for Trivy report conversion; #136
1 parent 174645f commit 15fe1a9

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -1332,6 +1332,16 @@ trivy.saveFormattedTrivyReport(TrivyScanFormat.JSON)
13321332
trivy.saveFormattedTrivyReport(TrivyScanFormat.HTML)
13331333
```
13341334

1335+
You may also use any other supported [Trivy format](https://trivy.dev/v0.57/docs/references/configuration/cli/trivy_convert/) or a custom template from a file in your workspace.
1336+
The output file of this converted Trivy report will have the extension "custom".
1337+
1338+
```groovy
1339+
Trivy trivy = new Trivy(this)
1340+
trivy.scanImage("ubuntu:24.04")
1341+
trivy.saveFormattedTrivyReport("cosign-vuln")
1342+
trivy.saveFormattedTrivyReport("template --template @myTemplateFile.xyz")
1343+
```
1344+
13351345
## Scan Dogu image with Trivy
13361346

13371347
The `scanDogu()` function lets you scan a Dogu image without typing its full name. The method reads the image name

src/com/cloudogu/ces/cesbuildlib/Trivy.groovy

+15-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Trivy implements Serializable {
4242
.mountDockerSocket()
4343
.inside("-v ${script.env.WORKSPACE}/.trivy/.cache:/root/.cache/") {
4444
// Write result to $trivyReportFile in json format (--format json), which can be converted in the saveFormattedTrivyReport function
45-
// Exit with exit code 10 if vulnerabilities are found or OS is so old that trivy has no records for it anymore
45+
// Exit with exit code 10 if vulnerabilities are found or OS is so old that Trivy has no records for it anymore
4646
script.sh("mkdir -p " + trivyDirectory)
4747
script.sh(script: "trivy image --exit-code 10 --exit-on-eol 10 --format ${TrivyScanFormat.JSON} -o ${trivyReportFile} --severity ${severityLevel} ${additionalFlags} ${imageName}", returnStatus: true)
4848
}
@@ -121,8 +121,20 @@ class Trivy implements Serializable {
121121
fileExtension = "txt"
122122
break
123123
default:
124-
script.error("This format did not match the supported formats: " + format)
125-
return
124+
// You may enter supported formats (sarif, cyclonedx, spdx, spdx-json, github, cosign-vuln, table or json)
125+
// or your own template ("template --template @FILENAME")
126+
List<String> trivyFormats = ['sarif', 'cyclonedx', 'spdx', 'spdx-json', 'github', 'cosign-vuln', 'table', 'json']
127+
// Check if "format" is a custom template from a file
128+
boolean isTemplateFormat = format ==~ /^template --template @\S+$/
129+
// Check if "format" is one of the trivyFormats or a template
130+
if (trivyFormats.any { format.contains(it) } || isTemplateFormat) {
131+
formatString = format
132+
fileExtension = "custom"
133+
break
134+
} else {
135+
script.error("This format did not match the supported formats: " + format)
136+
return
137+
}
126138
}
127139
docker.image("${trivyImage}:${trivyVersion}")
128140
.inside("-v ${script.env.WORKSPACE}/.trivy/.cache:/root/.cache/") {

0 commit comments

Comments
 (0)