Go to file
2023-05-17 11:35:39 +03:00
.github upgrade to oras 1.0.0 and fix issue with 0 length config (#305) 2023-05-14 14:50:34 +03:00
cmd/trivy-db BREAKING: bump schema version to v2 (#168) 2022-01-04 21:49:14 +02:00
pkg feat(ubuntu): support Ubuntu 23.04 (#310) 2023-05-15 09:11:01 +03:00
.gitignore feat: github actions to publish ecr and docker (#91) 2021-01-05 15:20:36 +02:00
.yamllint feat: github actions to publish ecr and docker (#91) 2021-01-05 15:20:36 +02:00
Dockerfile chore: bump up Go to 1.17 (#166) 2021-12-22 14:09:43 +02:00
go.mod chore(deps): bump github.com/urfave/cli from 1.22.12 to 1.22.13 (#303) 2023-05-08 15:53:30 +03:00
go.sum chore(deps): bump github.com/urfave/cli from 1.22.12 to 1.22.13 (#303) 2023-05-08 15:53:30 +03:00
LICENSE Change license to Apache 2.0 2020-03-11 18:17:03 +00:00
Makefile delete(rust): delete rust-advisory-db (#177) 2022-01-16 20:28:21 +02:00
NOTICE Change license to Apache 2.0 2020-03-11 18:17:03 +00:00
README.md chore(docs): remove upload command (#311) 2023-05-17 11:35:39 +03:00

trivy-db

Build DB GitHub Release Downloads Go Report Card Go Doc License

Overview

trivy-db is a CLI tool and a library to manipulate Trivy DB.

Library

Trivy uses trivy-db internally to manipulate vulnerability DB. This DB has vulnerability information from NVD, Red Hat, Debian, etc.

CLI

The trivy-db CLI tool builds vulnerability DBs. A GitHub Actions workflow periodically builds a fresh version of the vulnerability DB using trivy-db and uploads it to the GitHub Container Registry (see Download the vulnerability database below).

NAME:
   trivy-db - Trivy DB builder

USAGE:
   main [global options] command [command options] image_name

VERSION:
   0.0.1

COMMANDS:
     build    build a database file
     help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help
   --version, -v  print the version

Building the DB

You can utilize make db-all to build the database, the DB artifact is outputted to the assets folder.

Alternatively Docker is supported, you can run docker build . -t trivy-db.

If you want to build a trivy integration test DB, please run make create-test-db

Update interval

Every 6 hours

Download the vulnerability database

version 1 (deprecated)

Trivy DB v1 reached the end of support on February 2023. Please upgrade Trivy to v0.23.0 or later.

Read more about the Trivy DB v1 deprecation in the discussion.

version 2

Trivy DB v2 is hosted on GHCR. Although GitHub displays the docker pull command by default, please note that it cannot be downloaded using docker pull as it is not a container image.

You can download the actual compiled database via Trivy or Oras CLI.

Trivy:

TRIVY_TEMP_DIR=$(mktemp -d)
trivy --cache-dir $TRIVY_TEMP_DIR image --download-db-only
tar -cf ./db.tar.gz -C $TRIVY_TEMP_DIR/db metadata.json trivy.db
rm -rf $TRIVY_TEMP_DIR

oras >= v0.13.0:

$ oras pull ghcr.io/aquasecurity/trivy-db:2

oras < v0.13.0:

$ oras pull -a ghcr.io/aquasecurity/trivy-db:2

The database can be used for Air-Gapped Environment.