2019-08-18 22:22:54 -10:00
|
|
|
module github.com/aquasecurity/trivy
|
2019-05-07 15:41:03 +09:00
|
|
|
|
2019-10-23 17:00:03 +03:00
|
|
|
go 1.13
|
2019-05-07 15:41:03 +09:00
|
|
|
|
|
|
|
|
require (
|
2020-05-30 19:46:12 +03:00
|
|
|
github.com/aquasecurity/fanal v0.0.0-20200528202907-79693bf4a058
|
2019-08-18 22:22:54 -10:00
|
|
|
github.com/aquasecurity/go-dep-parser v0.0.0-20190819075924-ea223f0ef24b
|
vulnerability: Add CVSS Vectors to JSON output. (#484)
* vulnerability: Add CVSS Vectors to JSON output.
Now Trivy will display the CVSS Vectors presented by various
vendors as part of the JSON output. This can be seen as follows:
```
{
"VulnerabilityID": "CVE-2019-9923",
"PkgName": "tar",
"InstalledVersion": "1.30+dfsg-6",
"Layer": {
"Digest": "sha256:90fe46dd819953eb995f9cc9c326130abe9dd0b3993a998e12c01d0218a0b831",
"DiffID": "sha256:e40d297cf5f89a9822af4c2f63caa2f2085d5aa188137506918e603774b083cb"
},
"SeveritySource": "debian",
"Title": "tar: null-pointer dereference in pax_decode_header in sparse.c",
"Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.",
"Severity": "LOW",
"VendorVectors": {
"nvd": {
"v2": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
"v3": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
},
"redhat": {
"v3": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L"
}
},
"References": [
"http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120",
"http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html",
"http://savannah.gnu.org/bugs/?55369",
"https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241"
]
},
```
Signed-off-by: Simarpreet Singh <simar@linux.com>
* mod: Update to latest master of trivy-db
Signed-off-by: Simarpreet Singh <simar@linux.com>
* vulnerability_test: Fix tests for new struct type
Signed-off-by: Simarpreet Singh <simar@linux.com>
2020-05-21 14:22:14 -07:00
|
|
|
github.com/aquasecurity/trivy-db v0.0.0-20200514134639-7e57e3e02470
|
2019-05-24 13:26:41 +09:00
|
|
|
github.com/caarlos0/env/v6 v6.0.0
|
2020-01-05 10:21:18 +02:00
|
|
|
github.com/cenkalti/backoff v2.2.1+incompatible
|
2019-12-16 19:23:08 +02:00
|
|
|
github.com/cheggaaa/pb/v3 v3.0.3
|
2020-04-14 13:31:13 +03:00
|
|
|
github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
|
2020-05-19 20:49:27 +03:00
|
|
|
github.com/docker/go-connections v0.4.0
|
2020-02-27 23:17:55 +02:00
|
|
|
github.com/golang/protobuf v1.3.3
|
2020-05-19 20:49:27 +03:00
|
|
|
github.com/google/go-containerregistry v0.0.0-20200331213917-3d03ed9b1ca2
|
2019-10-31 23:53:46 +02:00
|
|
|
github.com/google/go-github/v28 v28.1.1
|
2019-12-13 15:00:11 +02:00
|
|
|
github.com/google/wire v0.3.0
|
2019-05-17 19:00:22 +09:00
|
|
|
github.com/knqyf263/go-deb-version v0.0.0-20190517075300-09fca494f03d
|
2019-05-07 15:41:03 +09:00
|
|
|
github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936
|
|
|
|
|
github.com/knqyf263/go-version v1.1.1
|
2019-10-22 09:31:15 +03:00
|
|
|
github.com/kylelemons/godebug v1.1.0
|
2020-04-14 13:31:13 +03:00
|
|
|
github.com/mattn/go-colorable v0.1.4 // indirect
|
2019-06-07 23:46:55 +09:00
|
|
|
github.com/olekukonko/tablewriter v0.0.2-0.20190607075207-195002e6e56a
|
2020-04-15 16:07:42 +03:00
|
|
|
github.com/spf13/afero v1.2.2
|
2020-06-10 10:38:37 +03:00
|
|
|
github.com/stretchr/testify v1.6.1
|
2020-05-19 20:49:27 +03:00
|
|
|
github.com/testcontainers/testcontainers-go v0.3.1
|
2020-02-16 10:35:53 +02:00
|
|
|
github.com/twitchtv/twirp v5.10.1+incompatible
|
2020-05-18 14:43:06 +03:00
|
|
|
github.com/urfave/cli/v2 v2.2.0
|
2019-11-22 03:49:44 +02:00
|
|
|
go.uber.org/atomic v1.5.1 // indirect
|
2019-11-20 00:18:25 +09:00
|
|
|
go.uber.org/multierr v1.4.0 // indirect
|
2019-11-22 03:49:44 +02:00
|
|
|
go.uber.org/zap v1.13.0
|
2020-04-14 13:31:13 +03:00
|
|
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
|
|
|
|
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
|
|
|
|
|
k8s.io/utils v0.0.0-20191114184206-e782cd3c129f
|
2019-05-07 15:41:03 +09:00
|
|
|
)
|