List Reports

Most scanning tools have options to display a formatted report. Take Grype for example:

grype bkimminich/juice-shop:latest -o table

Screenshot Example Grype Table

The report can be printed in a formatted table instead of 6k line JSON file.

JSON can be piped directly into gatecheck for supported reports.

grype bkimminich/juice-shop:latest -o json | gatecheck ls -i grype

Or from an existing report

gatecheck ls grype-scan-report.json

Screenshot Example List

Using the --all or -a flag will do a full listing, cross-referencing with FIRST EPSS API

grype bkimminich/juice-shop:latest -o json | gatecheck ls --all -i grype

Screenshot Example List All