What is a CVE

Common Vulnerabilities and Exposures (CVE)
A central database that anyone can submit vulnerabilities and exposures to
Each CVE gets a unique identifier.

What kind of bugs get CVEs? Usually one of the following:

CVSS v3.0 ratings have the following levels.

CVE Scanner

Looks at services on our system and displays a list of vulnerabilities

Once we’ve identified a vulnerability we can mitigate it in one of the following ways:

Vulnerability Scanner Trivy

By Aqua Security.

# Get help
trivy 
trivy image --help

# Basic usage
trivy image nginx:1.18.0

# Filter out only HIGH and CRITICAL
trivy image --severity CRITICAL,HIGH nginx:1.18.0

# Ignore unfixed vulns
trivy image --ignore-unfixed nginx:1.18.0

# Use a tar image as input
docker save nginx:1.18.0 > nginx.tar
trivy image --input archive.tar

# Output of json to a directory
trivy image --format json --output /location/file nginx

Best Practices