We have seen a lot of security scanning tools like Blackduck, Fortify, SonarQube etc..
these tool scan source code and the built binaries, it is all well and good I think they do the best job in their respective feature kits. in a industry where we are shipping the solutions in containers bundled with the binaries, it is relevant if we had a tool that could scan the final product.
That is what Trivy an open source project is offering. it is developed by aqua security. I think it is a brilliant little tool that scans for security issues in a docker image for free!!
well what and all it will scan? it scans for operating system libraries that support your application and the application itself. it scans for any misconfigurations, secrets as well. only thing it don't have is a dashboard like sonarqube and blackduck. still it generates text and JSON based reports that can be used to create dashboards in grafana or superset.
Operating System Libraries: Trivy scans the base image and all its layers for known vulnerabilities in operating system libraries and packages. This includes common Linux distributions such as Debian, Alpine, Ubuntu, etc.
Application Dependencies: In addition to OS-level vulnerabilities, Trivy also checks for vulnerabilities in application dependencies. This is crucial as many containerized applications rely on various libraries and frameworks that may have their own security issues.
Misconfigurations: Trivy can detect misconfigurations within the Docker image that may pose security risks. This includes issues such as insecure permissions, exposed sensitive information, or improper configuration of security-related settings.
Secrets: Trivy can help identify accidental inclusion of secrets or sensitive information within the Docker image. This is important for maintaining the confidentiality and integrity of the application and its environment.
I have attached the links to source code and the documentation, if you are looking for a free security scanning tool for your team.
source code: https://github.com/aquasecurity/trivy
Trivy home: https://trivy.dev/
Comments
Post a Comment