Troubleshooting
Filtering Vulnerabilities
You might want to filter/ignore some of the vulnerabilities while patching. To do so, you need to first filter those undesired vulnerabilities from your scanner output.
For Trivy, vulnerabilities can be filtered by the following 2 ways:
Rego Policy
An example rego file which demonstrates how to ignore certain Vulnerability IDs or Package Names:
$ cat trivy_ignore.rego
package trivy
import data.lib.trivy
default ignore = false
# Ignore the following Vulnerability IDs
ignore_vulnerability_ids := {
"CVE-2018-14618"
}
# Ignore the following Package Names
ignore_pkgs := {"bash", "vim"}
# For ignoring vulnID
ignore {
input.VulnerabilityID == ignore_vulnerability_ids[_]
}
# For ignoring pkgName
ignore {
input.PkgName == ignore_pkgs[_]
}
After adding the above rego file, run the image scan with the --ignore-policy
flag followed by the file name to ignore them while scanning:
trivy image --ignore-policy trivy_ignore.rego ruby:2.4.0
In the above example, the vulnerability "CVE-2018-14618" and the packages "bash" & "vim" are ignored while scanning, and hence patching the image.
Ignore File
Use a .trivyignore
file to list all the vulnerabilities you want to ignore.
Example:
$ cat .trivyignore
# Accept the risk
CVE-2018-14618
In the above example, the vulnerability CVE-2018-14618 is ignored while scanning, and hence while patching the image.
For a more detailed explanation on how to ignore certain vulnerabilities with Trivy, please refer to the official documentation here.