Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cvescan: Exclude fails by version #18731

Merged
merged 3 commits into from
Oct 27, 2021
Merged
Changes from all commits
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
19 changes: 15 additions & 4 deletions tools/dependency/cve_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,25 @@
# See https://nvd.nist.gov/vuln/detail/CVE-2021-22940
'CVE-2021-22918',
'CVE-2021-22921',
'CVE-2021-22930',
'CVE-2021-22931',
'CVE-2021-22939',
'CVE-2021-22940',
# This cve only affects versions of kafka < 2.8.1, but scanner
# does not support version matching atm.
# Tracking issue to fix versioning:
# https://github.com/envoyproxy/envoy/issues/18354
#
# Currently, cvescan does not respect/understand versions (see #18354).
#
# The following CVEs target versions that are not currently used in the Envoy repo.
#
# libcurl
"CVE-2021-22945",
#
# kafka
'CVE-2021-38153',
#
# wasmtime
"CVE-2021-39216",
"CVE-2021-39218",
"CVE-2021-39219",
])

# Subset of CVE fields that are useful below.
Expand Down