Scan the entire image before production

One Paragraph Explainer

Scanning the code for vulnerabilities is a valuable act but it doesn’t cover all the potential threats. Why? Because vulnerabilities also exist on the OS level and the app might execute those binaries like Shell, Tarball, OpenSSL. Also, vulnerable dependencies might be injected after the code scan (i.e. supply chain attacks) - hence scanning the final image just before production is in order. This idea resembles E2E tests - after testing the various pieces in-isolation, it’s valuable to finally check the assembled deliverable. There are 3 main scanner families: Local/CI binaries with a cached vulnerabilities DB, scanners as a service in the cloud and a niche of tools which scan during the docker build itself. The first group is the most popular and usually the fastest - Tools like Trivvy, Anchore and Snyk are worth exploring. Most CI vendors provide a local plugin that facilitates the interaction with these scanners. It should be noted that these scanners cover a lot of ground and therefore will show findings in almost every scan - consider setting a high threshold bar to avoid getting overwhelmed

Code Example – Scanning with Trivvy

Bash

  1. sudo apt-get install rpm
  2. $ wget https://github.com/aquasecurity/trivy/releases/download/{TRIVY_VERSION}/trivy_{TRIVY_VERSION}_Linux-64bit.deb
  3. $ sudo dpkg -i trivy_{TRIVY_VERSION}_Linux-64bit.deb
  4. trivy image [YOUR_IMAGE_NAME]

Report Example – Docker scan results (By Anchore)

Report examples