Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions e2etests/testcase_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4028,7 +4028,7 @@ All OpenShift Container Platform 4.10 users are advised to upgrade to these upda
Name: "tomcat",
VersionFormat: component.JavaSourceType.String(),
Version: "9.0.59",
FixedBy: "9.0.104",
FixedBy: "9.0.106",
Location: "tomcat-embed-core-9.0.59.jar",
Vulnerabilities: []apiV1.Vulnerability{
{
Expand Down Expand Up @@ -4797,7 +4797,7 @@ All OpenShift Container Platform 4.10 users are advised to upgrade to these upda
NamespaceName: "rhel:8",
VersionFormat: "rpm",
Version: "1:17.0.11.0.9-2.el8.x86_64",
FixedBy: "1:17.0.15.0.6-2.el8",
FixedBy: "1:17.0.16.0.8-2.el8",
AddedBy: "sha256:06c7a3d491f551a56296ccb9bee8a68c83776991e73a9005e8b5ebb533002097",
},
},
Expand All @@ -4816,7 +4816,7 @@ All OpenShift Container Platform 4.10 users are advised to upgrade to these upda
NamespaceName: "rhel:8",
VersionFormat: "rpm",
Version: "1:17.0.13.0.11-3.el8.x86_64",
FixedBy: "1:17.0.15.0.6-2.el8",
FixedBy: "1:17.0.16.0.8-2.el8",
AddedBy: "sha256:2f7b9495af5ddc85b0be7ca9411fddb54f37999ea73b03cbf1115dd0c5bd4f95",
},
},
Expand Down
16 changes: 11 additions & 5 deletions e2etests/vuln_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,11 @@ func TestStackroxVulnImages(t *testing.T) {
image: "quay.io/rhacs-eng/qa:rails-cve-2016-2098",
expectedFeatures: []feature{
{"rails", "4.2.5.1", []expectedVuln{
{name: "CVE-2016-2098"},
{name: "CVE-2016-6316"},
{name: "CVE-2016-6317"},
// These three vulns should exist, but NVD set these to deferred.
// Commenting out until they are no longer deferred.
Comment thread
BradLugo marked this conversation as resolved.
Outdated
// {name: "CVE-2016-2098"},
// {name: "CVE-2016-6316"},
// {name: "CVE-2016-6317"},
{name: "CVE-2018-16476", fixedBy: "4.2.11"},
{name: "CVE-2019-5418", fixedBy: "4.2.11.1"},
{name: "CVE-2019-5419", fixedBy: "4.2.11.1"},
Expand Down Expand Up @@ -178,7 +180,9 @@ func TestStackroxVulnImages(t *testing.T) {
},
},
{"commons_fileupload", "1.3.2", []expectedVuln{
{name: "CVE-2016-1000031", fixedBy: ""},
// This vuln should exist, but NVD set these to deferred.
// Commenting out until they are no longer deferred.
// {name: "CVE-2016-1000031", fixedBy: ""},
},
},
{"guava", "18.0", []expectedVuln{
Expand Down Expand Up @@ -211,7 +215,9 @@ func TestStackroxVulnImages(t *testing.T) {
image: "quay.io/rhacs-eng/qa:cassandra",
expectedFeatures: []feature{
{"logback", "1.1.3", []expectedVuln{
{name: "CVE-2017-5929", fixedBy: ""},
// This vuln should exist, but NVD set these to deferred.
// Commenting out until they are no longer deferred.
// {name: "CVE-2017-5929", fixedBy: ""},
},
},
},
Expand Down
Loading