v0.61.0 #8639
aqua-bot
announced in
Announcements
v0.61.0
#8639
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
📑 Table of Contents
🚀 What's new? 🚀
📶 Optimize vulnerability scanning 👣
When scanning for vulnerabilities, Trivy no longer scans all files in the filesystem if the file paths of enabled analyzers are known.
For example,
trivy image --pkg-types os --scanners vuln alpine
will look for the relevant, well known pakage manager files directly.See #8481 for more details.
🧩 Trivy Modules support native Go WASM 🔲
Trivy no longer relies on TinyGo for Trivy Modules, and instead migrated to the newly improved native WASM support in Go 1.24.
This makes the development experience of Trivy Modules much easier, and also remove challanges with TinyGo incompatibilities, such as JSON encoding.
For more info see here
👛 Support Kubernetes controller components 🧦
When scanning Kubernetes clusters, Trivy is now able to identify (in KBOM) and scan (for vulnerabilities) controller components.
$ trivy k8s --report summary --scanners vuln Summary Report for minikube Workload Assessment ┌────────────────────┬─────────────────────────────────────────────┬──────────────────────┐ │ Namespace │ Resource │ Vulnerabilities │ │ │ ├───┬────┬────┬────┬───┤ │ │ │ C │ H │ M │ L │ U │ ├────────────────────┼─────────────────────────────────────────────┼───┼────┼────┼────┼───┤ │ local-path-storage │ Deployment/local-path-provisioner │ 1 │ │ 14 │ 11 │ 2 │ │ ingress-nginx │ Job/ingress-nginx-admission-create │ 1 │ 2 │ 9 │ │ 2 │ │ ingress-nginx │ Job/ingress-nginx-admission-patch │ 1 │ 2 │ 9 │ │ 2 │ │ ingress-nginx │ Deployment/ingress-nginx-controller │ │ 11 │ 38 │ 7 │ 2 │ │ ingress-nginx │ ControlPlaneComponents/k8s.io/ingress-nginx │ 1 │ 4 │ 1 │ │ │ └────────────────────┴─────────────────────────────────────────────┴───┴────┴────┴────┴───┘ Severities: C=CRITICAL H=HIGH M=MEDIUM L=LOW U=UNKNOWN
🪖Scanning Amazon AMIs for misconfigurations 🪼
Trivy now supports scanning for misconfigurations in AMI resources.
🐟 Ecosystem Updates 🌳
IDE Extensions
The Aqua Trivy extension for VSCode and Jetbrains have been updated:
Aqua Trivy Extension for VSCode
Aqua Trivy Extension for JetBrains
Azure Pipelines Task
The Aqua Trivy extension for Azure Pipelines has been updated:
Aqua Trivy Task for Azure Pipelines
👷♂️ Notable Fixes 🛠️
--file-patterns
doesn't work for somepost-analyzers
#6962--report=all
yields no results even when results are present #8616Beta Was this translation helpful? Give feedback.
All reactions