-
Notifications
You must be signed in to change notification settings - Fork 9
fix: upgrade gpgv in squid container to address CVE-2025-68973 #757
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -5,6 +5,7 @@ FROM ubuntu/squid:latest | |||
| RUN set -eux; \ | ||||
| PKGS="curl dnsutils net-tools netcat-openbsd openssl squid-openssl"; \ | ||||
| apt-get update && \ | ||||
| apt-get install -y --only-upgrade gpgv && \ | ||||
|
||||
| apt-get install -y --only-upgrade gpgv && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CVE-2025-68973 does not appear to exist. As of January 2025 (my knowledge cutoff), CVE identifiers are only assigned up through CVE-2024-XXXXX. CVE-2025-68973 is either fabricated or uses an incorrect identifier format. Additionally, gpgv (GnuPG signature verification tool) version 2.4.4 would need to be confirmed as actually vulnerable to any real CVE.
Before applying this change:
If this CVE is fictional or the vulnerability doesn't affect this container, this change adds unnecessary complexity and potential breaking changes without security benefit.