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

[NET-8174] security: add scan triage for CVE-2024-25620 (helm/v3) #3657

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
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
security: add scan triage for CVE-2024-25620 (helm/v3)
Triage this scan result as `consul-k8s` should not be directly
impacted and it is medium severity. Follow-up ticket filed for
remediation.

Also improve formatting of scan config since this change will be
backported.
  • Loading branch information
zalimeni committed Feb 20, 2024
commit e0afade42dc2d34d1d417886bf9c83298dfdd37b
31 changes: 20 additions & 11 deletions .release/security-scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,28 @@
# See `security-scanner` docs or run with `--help` for scan target syntax.

container {
dependencies = true
alpine_secdb = true
dependencies = true
alpine_secdb = true

secrets {
all = true
}
secrets {
all = true
}
}

binary {
go_modules = true
osv = true
go_modules = true
osv = true

secrets {
all = true
}
}
secrets {
all = true
}

triage {
suppress {
vulnerabilites = [
# NET-8174 (2024-02-20): Chart YAML path traversal (not impacted)
"GHSA-v53g-5gjp-272r", # alias CVE-2024-25620
]
}
}
}
4 changes: 4 additions & 0 deletions scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ repository {
"acceptance/*",
"hack/*",
]
vulnerabilites = [
# NET-8174 (2024-02-20): Chart YAML path traversal (not impacted)
"GHSA-v53g-5gjp-272r", # alias CVE-2024-25620
]
}
}
}
Loading