Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2024-45337 (GCVE-0-2024-45337)
Vulnerability from cvelistv5 – Published: 2024-12-11 18:55 – Updated: 2025-02-18 20:48
VLAI
EPSS
Title
Misuse of connection.serverAuthenticate may cause authorization bypass in golang.org/x/crypto
Summary
Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Severity
9.1 (Critical)
SSVC
Exploitation: none
Automatable: yes
Technical Impact: total
CISA Coordinator (v2.0.3)
CWE
- CWE-1108 - Excessive Reliance on Global Variables
Assigner
References
7 references
Impacted products
1 product
| Vendor | Product | Version | |
|---|---|---|---|
| golang.org/x/crypto | golang.org/x/crypto/ssh |
Affected:
0 , < 0.31.0
(semver)
|
Credits
Damien Tournoud (Platform.sh / Upsun)
Patrick Dawkins (Platform.sh / Upsun)
Vince Parker (Platform.sh / Upsun)
Jules Duvivier (Platform.sh / Upsun)
{
"containers": {
"adp": [
{
"providerMetadata": {
"dateUpdated": "2025-01-31T15:02:46.088Z",
"orgId": "af854a3a-2127-422b-91ae-364da2661108",
"shortName": "CVE"
},
"references": [
{
"url": "http://www.openwall.com/lists/oss-security/2024/12/11/2"
},
{
"url": "https://security.netapp.com/advisory/ntap-20250131-0007/"
}
],
"title": "CVE Program Container"
},
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2024-45337",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "total"
}
],
"role": "CISA Coordinator",
"timestamp": "2024-12-12T17:57:55.896008Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2024-12-12T17:58:29.810Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"collectionURL": "https://pkg.go.dev",
"defaultStatus": "unaffected",
"packageName": "golang.org/x/crypto/ssh",
"product": "golang.org/x/crypto/ssh",
"programRoutines": [
{
"name": "ServerConfig.PublicKeyCallback"
},
{
"name": "connection.serverAuthenticate"
},
{
"name": "NewServerConn"
}
],
"vendor": "golang.org/x/crypto",
"versions": [
{
"lessThan": "0.31.0",
"status": "affected",
"version": "0",
"versionType": "semver"
}
]
}
],
"credits": [
{
"lang": "en",
"value": "Damien Tournoud (Platform.sh / Upsun)"
},
{
"lang": "en",
"value": "Patrick Dawkins (Platform.sh / Upsun)"
},
{
"lang": "en",
"value": "Vince Parker (Platform.sh / Upsun)"
},
{
"lang": "en",
"value": "Jules Duvivier (Platform.sh / Upsun)"
}
],
"descriptions": [
{
"lang": "en",
"value": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance."
}
],
"problemTypes": [
{
"descriptions": [
{
"description": "CWE-1108: Excessive Reliance on Global Variables",
"lang": "en"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-02-18T20:48:40.404Z",
"orgId": "1bb62c36-49e3-4200-9d77-64a1400537cc",
"shortName": "Go"
},
"references": [
{
"url": "https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909"
},
{
"url": "https://go.dev/cl/635315"
},
{
"url": "https://go.dev/issue/70779"
},
{
"url": "https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ"
},
{
"url": "https://pkg.go.dev/vuln/GO-2024-3321"
}
],
"title": "Misuse of connection.serverAuthenticate may cause authorization bypass in golang.org/x/crypto"
}
},
"cveMetadata": {
"assignerOrgId": "1bb62c36-49e3-4200-9d77-64a1400537cc",
"assignerShortName": "Go",
"cveId": "CVE-2024-45337",
"datePublished": "2024-12-11T18:55:58.506Z",
"dateReserved": "2024-08-27T19:41:58.555Z",
"dateUpdated": "2025-02-18T20:48:40.404Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.1",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2024-45337",
"date": "2026-06-23",
"epss": "0.03092",
"percentile": "0.86021"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2024-45337\",\"sourceIdentifier\":\"security@golang.org\",\"published\":\"2024-12-12T02:02:07.970\",\"lastModified\":\"2025-02-18T21:15:22.187\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \\\"A call to this function does not guarantee that the key offered is in fact used to authenticate.\\\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.\"},{\"lang\":\"es\",\"value\":\" Las aplicaciones y bibliotecas que hacen un mal uso de la devoluci\u00f3n de llamada ServerConfig.PublicKeyCallback pueden ser susceptibles a una omisi\u00f3n de autorizaci\u00f3n.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":5.2}]},\"references\":[{\"url\":\"https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909\",\"source\":\"security@golang.org\"},{\"url\":\"https://go.dev/cl/635315\",\"source\":\"security@golang.org\"},{\"url\":\"https://go.dev/issue/70779\",\"source\":\"security@golang.org\"},{\"url\":\"https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ\",\"source\":\"security@golang.org\"},{\"url\":\"https://pkg.go.dev/vuln/GO-2024-3321\",\"source\":\"security@golang.org\"},{\"url\":\"http://www.openwall.com/lists/oss-security/2024/12/11/2\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"},{\"url\":\"https://security.netapp.com/advisory/ntap-20250131-0007/\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"http://www.openwall.com/lists/oss-security/2024/12/11/2\"}, {\"url\": \"https://security.netapp.com/advisory/ntap-20250131-0007/\"}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2025-01-31T15:02:46.088Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 9.1, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-45337\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"total\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-12-12T17:57:55.896008Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2024-12-12T17:58:13.916Z\"}}], \"cna\": {\"title\": \"Misuse of connection.serverAuthenticate may cause authorization bypass in golang.org/x/crypto\", \"credits\": [{\"lang\": \"en\", \"value\": \"Damien Tournoud (Platform.sh / Upsun)\"}, {\"lang\": \"en\", \"value\": \"Patrick Dawkins (Platform.sh / Upsun)\"}, {\"lang\": \"en\", \"value\": \"Vince Parker (Platform.sh / Upsun)\"}, {\"lang\": \"en\", \"value\": \"Jules Duvivier (Platform.sh / Upsun)\"}], \"affected\": [{\"vendor\": \"golang.org/x/crypto\", \"product\": \"golang.org/x/crypto/ssh\", \"versions\": [{\"status\": \"affected\", \"version\": \"0\", \"lessThan\": \"0.31.0\", \"versionType\": \"semver\"}], \"packageName\": \"golang.org/x/crypto/ssh\", \"collectionURL\": \"https://pkg.go.dev\", \"defaultStatus\": \"unaffected\", \"programRoutines\": [{\"name\": \"ServerConfig.PublicKeyCallback\"}, {\"name\": \"connection.serverAuthenticate\"}, {\"name\": \"NewServerConn\"}]}], \"references\": [{\"url\": \"https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909\"}, {\"url\": \"https://go.dev/cl/635315\"}, {\"url\": \"https://go.dev/issue/70779\"}, {\"url\": \"https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ\"}, {\"url\": \"https://pkg.go.dev/vuln/GO-2024-3321\"}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \\\"A call to this function does not guarantee that the key offered is in fact used to authenticate.\\\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"description\": \"CWE-1108: Excessive Reliance on Global Variables\"}]}], \"providerMetadata\": {\"orgId\": \"1bb62c36-49e3-4200-9d77-64a1400537cc\", \"shortName\": \"Go\", \"dateUpdated\": \"2025-02-18T20:48:40.404Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2024-45337\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-02-18T20:48:40.404Z\", \"dateReserved\": \"2024-08-27T19:41:58.555Z\", \"assignerOrgId\": \"1bb62c36-49e3-4200-9d77-64a1400537cc\", \"datePublished\": \"2024-12-11T18:55:58.506Z\", \"assignerShortName\": \"Go\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.1"
}
}
}
OPENSUSE-SU-2024:14592-1
Vulnerability from csaf_opensuse - Published: 2024-12-17 00:00 - Updated: 2024-12-17 00:00Summary
git-bug-0.8.0+git.1733745604.d499b6e-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: git-bug-0.8.0+git.1733745604.d499b6e-1.1 on GA media
Description of the patch: These are all security issues fixed in the git-bug-0.8.0+git.1733745604.d499b6e-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2024-14592
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
7 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "git-bug-0.8.0+git.1733745604.d499b6e-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the git-bug-0.8.0+git.1733745604.d499b6e-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-14592",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_14592-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2024:14592-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/XRFL3E5J4TDRJ22WLK6BNXDRPBVNWDKW/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2024:14592-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/XRFL3E5J4TDRJ22WLK6BNXDRPBVNWDKW/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "git-bug-0.8.0+git.1733745604.d499b6e-1.1 on GA media",
"tracking": {
"current_release_date": "2024-12-17T00:00:00Z",
"generator": {
"date": "2024-12-17T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:14592-1",
"initial_release_date": "2024-12-17T00:00:00Z",
"revision_history": [
{
"date": "2024-12-17T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product_id": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product_id": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product_id": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"product_id": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product_id": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product_id": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product_id": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"product_id": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product_id": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x"
}
},
{
"category": "product_version",
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product_id": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x"
}
},
{
"category": "product_version",
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product_id": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x"
}
},
{
"category": "product_version",
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"product_id": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product_id": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product_id": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product_id": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"product_id": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
},
"product_reference": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
},
"product_reference": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x"
},
"product_reference": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
},
"product_reference": "git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
},
"product_reference": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
},
"product_reference": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x"
},
"product_reference": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
},
"product_reference": "git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
},
"product_reference": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
},
"product_reference": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x"
},
"product_reference": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
},
"product_reference": "git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64"
},
"product_reference": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le"
},
"product_reference": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x"
},
"product_reference": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
},
"product_reference": "git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-bash-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-fish-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.aarch64",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.ppc64le",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.s390x",
"openSUSE Tumbleweed:git-bug-zsh-completion-0.8.0+git.1733745604.d499b6e-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-17T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2024:14593-1
Vulnerability from csaf_opensuse - Published: 2024-12-17 00:00 - Updated: 2024-12-17 00:00Summary
helm-3.16.4-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: helm-3.16.4-1.1 on GA media
Description of the patch: These are all security issues fixed in the helm-3.16.4-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2024-14593
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:helm-3.16.4-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-3.16.4-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-3.16.4-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-3.16.4-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
7 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "helm-3.16.4-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the helm-3.16.4-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-14593",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_14593-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2024:14593-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/AAHWJCS7IRD2RDUFE5DZXZ6M6SOGWYEK/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2024:14593-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/AAHWJCS7IRD2RDUFE5DZXZ6M6SOGWYEK/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "helm-3.16.4-1.1 on GA media",
"tracking": {
"current_release_date": "2024-12-17T00:00:00Z",
"generator": {
"date": "2024-12-17T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:14593-1",
"initial_release_date": "2024-12-17T00:00:00Z",
"revision_history": [
{
"date": "2024-12-17T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "helm-3.16.4-1.1.aarch64",
"product": {
"name": "helm-3.16.4-1.1.aarch64",
"product_id": "helm-3.16.4-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "helm-bash-completion-3.16.4-1.1.aarch64",
"product": {
"name": "helm-bash-completion-3.16.4-1.1.aarch64",
"product_id": "helm-bash-completion-3.16.4-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "helm-fish-completion-3.16.4-1.1.aarch64",
"product": {
"name": "helm-fish-completion-3.16.4-1.1.aarch64",
"product_id": "helm-fish-completion-3.16.4-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "helm-zsh-completion-3.16.4-1.1.aarch64",
"product": {
"name": "helm-zsh-completion-3.16.4-1.1.aarch64",
"product_id": "helm-zsh-completion-3.16.4-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.16.4-1.1.ppc64le",
"product": {
"name": "helm-3.16.4-1.1.ppc64le",
"product_id": "helm-3.16.4-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "helm-bash-completion-3.16.4-1.1.ppc64le",
"product": {
"name": "helm-bash-completion-3.16.4-1.1.ppc64le",
"product_id": "helm-bash-completion-3.16.4-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "helm-fish-completion-3.16.4-1.1.ppc64le",
"product": {
"name": "helm-fish-completion-3.16.4-1.1.ppc64le",
"product_id": "helm-fish-completion-3.16.4-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "helm-zsh-completion-3.16.4-1.1.ppc64le",
"product": {
"name": "helm-zsh-completion-3.16.4-1.1.ppc64le",
"product_id": "helm-zsh-completion-3.16.4-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.16.4-1.1.s390x",
"product": {
"name": "helm-3.16.4-1.1.s390x",
"product_id": "helm-3.16.4-1.1.s390x"
}
},
{
"category": "product_version",
"name": "helm-bash-completion-3.16.4-1.1.s390x",
"product": {
"name": "helm-bash-completion-3.16.4-1.1.s390x",
"product_id": "helm-bash-completion-3.16.4-1.1.s390x"
}
},
{
"category": "product_version",
"name": "helm-fish-completion-3.16.4-1.1.s390x",
"product": {
"name": "helm-fish-completion-3.16.4-1.1.s390x",
"product_id": "helm-fish-completion-3.16.4-1.1.s390x"
}
},
{
"category": "product_version",
"name": "helm-zsh-completion-3.16.4-1.1.s390x",
"product": {
"name": "helm-zsh-completion-3.16.4-1.1.s390x",
"product_id": "helm-zsh-completion-3.16.4-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.16.4-1.1.x86_64",
"product": {
"name": "helm-3.16.4-1.1.x86_64",
"product_id": "helm-3.16.4-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "helm-bash-completion-3.16.4-1.1.x86_64",
"product": {
"name": "helm-bash-completion-3.16.4-1.1.x86_64",
"product_id": "helm-bash-completion-3.16.4-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "helm-fish-completion-3.16.4-1.1.x86_64",
"product": {
"name": "helm-fish-completion-3.16.4-1.1.x86_64",
"product_id": "helm-fish-completion-3.16.4-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "helm-zsh-completion-3.16.4-1.1.x86_64",
"product": {
"name": "helm-zsh-completion-3.16.4-1.1.x86_64",
"product_id": "helm-zsh-completion-3.16.4-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.16.4-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-3.16.4-1.1.aarch64"
},
"product_reference": "helm-3.16.4-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.16.4-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-3.16.4-1.1.ppc64le"
},
"product_reference": "helm-3.16.4-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.16.4-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-3.16.4-1.1.s390x"
},
"product_reference": "helm-3.16.4-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.16.4-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-3.16.4-1.1.x86_64"
},
"product_reference": "helm-3.16.4-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.16.4-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.aarch64"
},
"product_reference": "helm-bash-completion-3.16.4-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.16.4-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.ppc64le"
},
"product_reference": "helm-bash-completion-3.16.4-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.16.4-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.s390x"
},
"product_reference": "helm-bash-completion-3.16.4-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.16.4-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.x86_64"
},
"product_reference": "helm-bash-completion-3.16.4-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-fish-completion-3.16.4-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.aarch64"
},
"product_reference": "helm-fish-completion-3.16.4-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-fish-completion-3.16.4-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.ppc64le"
},
"product_reference": "helm-fish-completion-3.16.4-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-fish-completion-3.16.4-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.s390x"
},
"product_reference": "helm-fish-completion-3.16.4-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-fish-completion-3.16.4-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.x86_64"
},
"product_reference": "helm-fish-completion-3.16.4-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.16.4-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.aarch64"
},
"product_reference": "helm-zsh-completion-3.16.4-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.16.4-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.ppc64le"
},
"product_reference": "helm-zsh-completion-3.16.4-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.16.4-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.s390x"
},
"product_reference": "helm-zsh-completion-3.16.4-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.16.4-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.x86_64"
},
"product_reference": "helm-zsh-completion-3.16.4-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:helm-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:helm-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:helm-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-bash-completion-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-fish-completion-3.16.4-1.1.x86_64",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.aarch64",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.ppc64le",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.s390x",
"openSUSE Tumbleweed:helm-zsh-completion-3.16.4-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-17T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2024:14595-1
Vulnerability from csaf_opensuse - Published: 2024-12-17 00:00 - Updated: 2024-12-17 00:00Summary
traefik2-2.11.16-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: traefik2-2.11.16-1.1 on GA media
Description of the patch: These are all security issues fixed in the traefik2-2.11.16-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2024-14595
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:traefik2-2.11.16-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:traefik2-2.11.16-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:traefik2-2.11.16-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:traefik2-2.11.16-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
7 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "traefik2-2.11.16-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the traefik2-2.11.16-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-14595",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_14595-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2024:14595-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/RQIXFLKNJXAP2G3IJXYD2WY62FHMR5IX/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2024:14595-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/RQIXFLKNJXAP2G3IJXYD2WY62FHMR5IX/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "traefik2-2.11.16-1.1 on GA media",
"tracking": {
"current_release_date": "2024-12-17T00:00:00Z",
"generator": {
"date": "2024-12-17T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:14595-1",
"initial_release_date": "2024-12-17T00:00:00Z",
"revision_history": [
{
"date": "2024-12-17T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "traefik2-2.11.16-1.1.aarch64",
"product": {
"name": "traefik2-2.11.16-1.1.aarch64",
"product_id": "traefik2-2.11.16-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "traefik2-2.11.16-1.1.ppc64le",
"product": {
"name": "traefik2-2.11.16-1.1.ppc64le",
"product_id": "traefik2-2.11.16-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "traefik2-2.11.16-1.1.s390x",
"product": {
"name": "traefik2-2.11.16-1.1.s390x",
"product_id": "traefik2-2.11.16-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "traefik2-2.11.16-1.1.x86_64",
"product": {
"name": "traefik2-2.11.16-1.1.x86_64",
"product_id": "traefik2-2.11.16-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "traefik2-2.11.16-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:traefik2-2.11.16-1.1.aarch64"
},
"product_reference": "traefik2-2.11.16-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "traefik2-2.11.16-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:traefik2-2.11.16-1.1.ppc64le"
},
"product_reference": "traefik2-2.11.16-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "traefik2-2.11.16-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:traefik2-2.11.16-1.1.s390x"
},
"product_reference": "traefik2-2.11.16-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "traefik2-2.11.16-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:traefik2-2.11.16-1.1.x86_64"
},
"product_reference": "traefik2-2.11.16-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.aarch64",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.ppc64le",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.s390x",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.aarch64",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.ppc64le",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.s390x",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.aarch64",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.ppc64le",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.s390x",
"openSUSE Tumbleweed:traefik2-2.11.16-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-17T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2024:14599-1
Vulnerability from csaf_opensuse - Published: 2024-12-18 00:00 - Updated: 2024-12-18 00:00Summary
govulncheck-vulndb-0.0.20241213T205935-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: govulncheck-vulndb-0.0.20241213T205935-1.1 on GA media
Description of the patch: These are all security issues fixed in the govulncheck-vulndb-0.0.20241213T205935-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2024-14599
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.8 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
low
7.7 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.8 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.8 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
6.2 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
critical
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
7.5 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
References
53 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "govulncheck-vulndb-0.0.20241213T205935-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the govulncheck-vulndb-0.0.20241213T205935-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-14599",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_14599-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2024:14599-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/QTUY324RV3FFZBHVIWDHRCIOPJHIJIN4/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2024:14599-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/QTUY324RV3FFZBHVIWDHRCIOPJHIJIN4/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2020-10696 page",
"url": "https://www.suse.com/security/cve/CVE-2020-10696/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2020-8912 page",
"url": "https://www.suse.com/security/cve/CVE-2020-8912/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-31668 page",
"url": "https://www.suse.com/security/cve/CVE-2022-31668/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-26248 page",
"url": "https://www.suse.com/security/cve/CVE-2023-26248/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-3676 page",
"url": "https://www.suse.com/security/cve/CVE-2023-3676/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-3955 page",
"url": "https://www.suse.com/security/cve/CVE-2023-3955/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-12401 page",
"url": "https://www.suse.com/security/cve/CVE-2024-12401/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-37032 page",
"url": "https://www.suse.com/security/cve/CVE-2024-37032/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-44337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-44337/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45039 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45039/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45436 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45436/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-46455 page",
"url": "https://www.suse.com/security/cve/CVE-2024-46455/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-46528 page",
"url": "https://www.suse.com/security/cve/CVE-2024-46528/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-53257 page",
"url": "https://www.suse.com/security/cve/CVE-2024-53257/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-53859 page",
"url": "https://www.suse.com/security/cve/CVE-2024-53859/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-55601 page",
"url": "https://www.suse.com/security/cve/CVE-2024-55601/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-55657 page",
"url": "https://www.suse.com/security/cve/CVE-2024-55657/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-55658 page",
"url": "https://www.suse.com/security/cve/CVE-2024-55658/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-55659 page",
"url": "https://www.suse.com/security/cve/CVE-2024-55659/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-55660 page",
"url": "https://www.suse.com/security/cve/CVE-2024-55660/"
}
],
"title": "govulncheck-vulndb-0.0.20241213T205935-1.1 on GA media",
"tracking": {
"current_release_date": "2024-12-18T00:00:00Z",
"generator": {
"date": "2024-12-18T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:14599-1",
"initial_release_date": "2024-12-18T00:00:00Z",
"revision_history": [
{
"date": "2024-12-18T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"product": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"product_id": "govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"product": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"product_id": "govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"product": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"product_id": "govulncheck-vulndb-0.0.20241213T205935-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64",
"product": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64",
"product_id": "govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64"
},
"product_reference": "govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le"
},
"product_reference": "govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x"
},
"product_reference": "govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
},
"product_reference": "govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2020-10696",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2020-10696"
}
],
"notes": [
{
"category": "general",
"text": "A path traversal flaw was found in Buildah in versions before 1.14.5. This flaw allows an attacker to trick a user into building a malicious container image hosted on an HTTP(s) server and then write files to the user\u0027s system anywhere that the user has permissions.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2020-10696",
"url": "https://www.suse.com/security/cve/CVE-2020-10696"
},
{
"category": "external",
"summary": "SUSE Bug 1167864 for CVE-2020-10696",
"url": "https://bugzilla.suse.com/1167864"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2020-10696"
},
{
"cve": "CVE-2020-8912",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2020-8912"
}
],
"notes": [
{
"category": "general",
"text": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2020-8912",
"url": "https://www.suse.com/security/cve/CVE-2020-8912"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 2.5,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "low"
}
],
"title": "CVE-2020-8912"
},
{
"cve": "CVE-2022-31668",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-31668"
}
],
"notes": [
{
"category": "general",
"text": "Harbor fails to validate the user permissions when updating p2p preheat policies. By sending a request to update a p2p preheat policy with an id that belongs to a project that the currently authenticated user doesn\u0027t have access to, the attacker could modify p2p preheat policies configured in other projects.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-31668",
"url": "https://www.suse.com/security/cve/CVE-2022-31668"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2022-31668"
},
{
"cve": "CVE-2023-26248",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-26248"
}
],
"notes": [
{
"category": "general",
"text": "The Kademlia DHT (go-libp2p-kad-dht 0.20.0 and earlier) used in IPFS (0.18.1 and earlier) assigns routing information for content (i.e., information about who holds the content) to be stored by peers whose peer IDs have a small DHT distance from the content ID. This allows an attacker to censor content by generating many Sybil peers whose peer IDs have a small distance from the content ID, thus hijacking the content resolution process.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-26248",
"url": "https://www.suse.com/security/cve/CVE-2023-26248"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2023-26248"
},
{
"cve": "CVE-2023-3676",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-3676"
}
],
"notes": [
{
"category": "general",
"text": "A security issue was discovered in Kubernetes where a user\n that can create pods on Windows nodes may be able to escalate to admin \nprivileges on those nodes. Kubernetes clusters are only affected if they\n include Windows nodes.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-3676",
"url": "https://www.suse.com/security/cve/CVE-2023-3676"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2023-3676"
},
{
"cve": "CVE-2023-3955",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-3955"
}
],
"notes": [
{
"category": "general",
"text": "A security issue was discovered in Kubernetes where a user\n that can create pods on Windows nodes may be able to escalate to admin \nprivileges on those nodes. Kubernetes clusters are only affected if they\n include Windows nodes.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-3955",
"url": "https://www.suse.com/security/cve/CVE-2023-3955"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2023-3955"
},
{
"cve": "CVE-2024-12401",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-12401"
}
],
"notes": [
{
"category": "general",
"text": "A flaw was found in the cert-manager package. This flaw allows an attacker who can modify PEM data that the cert-manager reads, for example, in a Secret resource, to use large amounts of CPU in the cert-manager controller pod to effectively create a denial-of-service (DoS) vector for the cert-manager in the cluster.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-12401",
"url": "https://www.suse.com/security/cve/CVE-2024-12401"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-12401"
},
{
"cve": "CVE-2024-37032",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-37032"
}
],
"notes": [
{
"category": "general",
"text": "Ollama before 0.1.34 does not validate the format of the digest (sha256 with 64 hex digits) when getting the model path, and thus mishandles the TestGetBlobsPath test cases such as fewer than 64 hex digits, more than 64 hex digits, or an initial ../ substring.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-37032",
"url": "https://www.suse.com/security/cve/CVE-2024-37032"
},
{
"category": "external",
"summary": "SUSE Bug 1225724 for CVE-2024-37032",
"url": "https://bugzilla.suse.com/1225724"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-37032"
},
{
"cve": "CVE-2024-44337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-44337"
}
],
"notes": [
{
"category": "general",
"text": "The package `github.com/gomarkdown/markdown` is a Go library for parsing Markdown text and rendering as HTML. Prior to pseudoversion `v0.0.0-20240729232818-a2a9c4f`, which corresponds with commit `a2a9c4f76ef5a5c32108e36f7c47f8d310322252`, there was a logical problem in the paragraph function of the parser/block.go file, which allowed a remote attacker to cause a denial of service (DoS) condition by providing a tailor-made input that caused an infinite loop, causing the program to hang and consume resources indefinitely. Submit `a2a9c4f76ef5a5c32108e36f7c47f8d310322252` contains fixes to this problem.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-44337",
"url": "https://www.suse.com/security/cve/CVE-2024-44337"
},
{
"category": "external",
"summary": "SUSE Bug 1231713 for CVE-2024-44337",
"url": "https://bugzilla.suse.com/1231713"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-44337"
},
{
"cve": "CVE-2024-45039",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45039"
}
],
"notes": [
{
"category": "general",
"text": "gnark is a fast zk-SNARK library that offers a high-level API to design circuits. Versions prior to 0.11.0 have a soundness issue - in case of multiple commitments used inside the circuit the prover is able to choose all but the last commitment. As gnark uses the commitments for optimized non-native multiplication, lookup checks etc. as random challenges, then it could impact the soundness of the whole circuit. However, using multiple commitments has been discouraged due to the additional cost to the verifier and it has not been supported in the recursive in-circuit Groth16 verifier and Solidity verifier. gnark\u0027s maintainers expect the impact of the issue be very small - only for the users who have implemented the native Groth16 verifier or are using it with multiple commitments. We do not have information of such users. The issue has been patched in version 0.11.0. As a workaround, users should follow gnark maintainers\u0027 recommendation to use only a single commitment and then derive in-circuit commitments as needed using the `std/multicommit` package.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45039",
"url": "https://www.suse.com/security/cve/CVE-2024-45039"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-45039"
},
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45436",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45436"
}
],
"notes": [
{
"category": "general",
"text": "extractFromZipFile in model.go in Ollama before 0.1.47 can extract members of a ZIP archive outside of the parent directory.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45436",
"url": "https://www.suse.com/security/cve/CVE-2024-45436"
},
{
"category": "external",
"summary": "SUSE Bug 1229895 for CVE-2024-45436",
"url": "https://bugzilla.suse.com/1229895"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45436"
},
{
"cve": "CVE-2024-46455",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-46455"
}
],
"notes": [
{
"category": "general",
"text": "unstructured v.0.14.2 and before is vulnerable to XML External Entity (XXE) via the XMLParser.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-46455",
"url": "https://www.suse.com/security/cve/CVE-2024-46455"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "critical"
}
],
"title": "CVE-2024-46455"
},
{
"cve": "CVE-2024-46528",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-46528"
}
],
"notes": [
{
"category": "general",
"text": "An Insecure Direct Object Reference (IDOR) vulnerability in KubeSphere 4.x before 4.1.3 and 3.x through 3.4.1 and KubeSphere Enterprise 4.x before 4.1.3 and 3.x through 3.5.0 allows low-privileged authenticated attackers to access sensitive resources without proper authorization checks.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-46528",
"url": "https://www.suse.com/security/cve/CVE-2024-46528"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-46528"
},
{
"cve": "CVE-2024-53257",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-53257"
}
],
"notes": [
{
"category": "general",
"text": "Vitess is a database clustering system for horizontal scaling of MySQL. The /debug/querylogz and /debug/env pages for vtgate and vttablet do not properly escape user input. The result is that queries executed by Vitess can write HTML into the monitoring page at will. These pages are rendered using text/template instead of rendering with a proper HTML templating engine. This vulnerability is fixed in 21.0.1, 20.0.4, and 19.0.8.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-53257",
"url": "https://www.suse.com/security/cve/CVE-2024-53257"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-53257"
},
{
"cve": "CVE-2024-53859",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-53859"
}
],
"notes": [
{
"category": "general",
"text": "go-gh is a Go module for interacting with the `gh` utility and the GitHub API from the command line. A security vulnerability has been identified in `go-gh` that could leak authentication tokens intended for GitHub hosts to non-GitHub hosts when within a codespace. `go-gh` sources authentication tokens from different environment variables depending on the host involved: 1. `GITHUB_TOKEN`, `GH_TOKEN` for GitHub.com and ghe.com and 2. `GITHUB_ENTERPRISE_TOKEN`, `GH_ENTERPRISE_TOKEN` for GitHub Enterprise Server. Prior to version `2.11.1`, `auth.TokenForHost` could source a token from the `GITHUB_TOKEN` environment variable for a host other than GitHub.com or ghe.com when within a codespace. In version `2.11.1`, `auth.TokenForHost` will only source a token from the `GITHUB_TOKEN` environment variable for GitHub.com or ghe.com hosts. Successful exploitation could send authentication token to an unintended host. This issue has been addressed in version 2.11.1 and all users are advised to upgrade. Users are also advised to regenerate authentication tokens and to review their personal security log and any relevant audit logs for actions associated with their account or enterprise.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-53859",
"url": "https://www.suse.com/security/cve/CVE-2024-53859"
},
{
"category": "external",
"summary": "SUSE Bug 1233976 for CVE-2024-53859",
"url": "https://bugzilla.suse.com/1233976"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-53859"
},
{
"cve": "CVE-2024-55601",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-55601"
}
],
"notes": [
{
"category": "general",
"text": "Hugo is a static site generator. Starting in version 0.123.0 and prior to version 0.139.4, some HTML attributes in Markdown in the internal templates listed below not escaped in internal render hooks. Those whoa re impacted are Hugo users who do not trust their Markdown content files and are using one or more of these templates: `_default/_markup/render-link.html` from `v0.123.0`; `_default/_markup/render-image.html` from `v0.123.0`; `_default/_markup/render-table.html` from `v0.134.0`; and/or `shortcodes/youtube.html` from `v0.125.0`. This issue is patched in v0.139.4. As a workaround, one may replace an affected component with user defined templates or disable the internal templates.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-55601",
"url": "https://www.suse.com/security/cve/CVE-2024-55601"
},
{
"category": "external",
"summary": "SUSE Bug 1234340 for CVE-2024-55601",
"url": "https://bugzilla.suse.com/1234340"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-55601"
},
{
"cve": "CVE-2024-55657",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-55657"
}
],
"notes": [
{
"category": "general",
"text": "SiYuan is a personal knowledge management system. Prior to version 3.1.16, an arbitrary file read vulnerability exists in Siyuan\u0027s `/api/template/render` endpoint. The absence of proper validation on the path parameter allows attackers to access sensitive files on the host system. Version 3.1.16 contains a patch for the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-55657",
"url": "https://www.suse.com/security/cve/CVE-2024-55657"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-55657"
},
{
"cve": "CVE-2024-55658",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-55658"
}
],
"notes": [
{
"category": "general",
"text": "SiYuan is a personal knowledge management system. Prior to version 3.1.16, SiYuan\u0027s /api/export/exportResources endpoint is vulnerable to arbitary file read via path traversal. It is possible to manipulate the paths parameter to access and download arbitrary files from the host system by traversing the workspace directory structure. Version 3.1.16 contains a patch for the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-55658",
"url": "https://www.suse.com/security/cve/CVE-2024-55658"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-55658"
},
{
"cve": "CVE-2024-55659",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-55659"
}
],
"notes": [
{
"category": "general",
"text": "SiYuan is a personal knowledge management system. Prior to version 3.1.16, the `/api/asset/upload` endpoint in Siyuan is vulnerable to both arbitrary file write to the host and stored cross-site scripting (via the file write). Version 3.1.16 contains a patch for the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-55659",
"url": "https://www.suse.com/security/cve/CVE-2024-55659"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-55659"
},
{
"cve": "CVE-2024-55660",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-55660"
}
],
"notes": [
{
"category": "general",
"text": "SiYuan is a personal knowledge management system. Prior to version 3.1.16, SiYuan\u0027s `/api/template/renderSprig` endpoint is vulnerable to Server-Side Template Injection (SSTI) through the Sprig template engine. Although the engine has limitations, it allows attackers to access environment variables. Version 3.1.16 contains a patch for the issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-55660",
"url": "https://www.suse.com/security/cve/CVE-2024-55660"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.aarch64",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.ppc64le",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.s390x",
"openSUSE Tumbleweed:govulncheck-vulndb-0.0.20241213T205935-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-55660"
}
]
}
OPENSUSE-SU-2024:14602-1
Vulnerability from csaf_opensuse - Published: 2024-12-18 00:00 - Updated: 2024-12-18 00:00Summary
tailscale-1.78.3-2.1 on GA media
Severity
Moderate
Notes
Title of the patch: tailscale-1.78.3-2.1 on GA media
Description of the patch: These are all security issues fixed in the tailscale-1.78.3-2.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2024-14602
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:tailscale-1.78.3-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-1.78.3-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-1.78.3-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-1.78.3-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
7 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "tailscale-1.78.3-2.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the tailscale-1.78.3-2.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-14602",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_14602-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2024:14602-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/KJENUST4DVKPMGTJHYGQFE57E55AQQDC/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2024:14602-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/KJENUST4DVKPMGTJHYGQFE57E55AQQDC/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "tailscale-1.78.3-2.1 on GA media",
"tracking": {
"current_release_date": "2024-12-18T00:00:00Z",
"generator": {
"date": "2024-12-18T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:14602-1",
"initial_release_date": "2024-12-18T00:00:00Z",
"revision_history": [
{
"date": "2024-12-18T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "tailscale-1.78.3-2.1.aarch64",
"product": {
"name": "tailscale-1.78.3-2.1.aarch64",
"product_id": "tailscale-1.78.3-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "tailscale-bash-completion-1.78.3-2.1.aarch64",
"product": {
"name": "tailscale-bash-completion-1.78.3-2.1.aarch64",
"product_id": "tailscale-bash-completion-1.78.3-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "tailscale-fish-completion-1.78.3-2.1.aarch64",
"product": {
"name": "tailscale-fish-completion-1.78.3-2.1.aarch64",
"product_id": "tailscale-fish-completion-1.78.3-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "tailscale-zsh-completion-1.78.3-2.1.aarch64",
"product": {
"name": "tailscale-zsh-completion-1.78.3-2.1.aarch64",
"product_id": "tailscale-zsh-completion-1.78.3-2.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "tailscale-1.78.3-2.1.ppc64le",
"product": {
"name": "tailscale-1.78.3-2.1.ppc64le",
"product_id": "tailscale-1.78.3-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "tailscale-bash-completion-1.78.3-2.1.ppc64le",
"product": {
"name": "tailscale-bash-completion-1.78.3-2.1.ppc64le",
"product_id": "tailscale-bash-completion-1.78.3-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "tailscale-fish-completion-1.78.3-2.1.ppc64le",
"product": {
"name": "tailscale-fish-completion-1.78.3-2.1.ppc64le",
"product_id": "tailscale-fish-completion-1.78.3-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "tailscale-zsh-completion-1.78.3-2.1.ppc64le",
"product": {
"name": "tailscale-zsh-completion-1.78.3-2.1.ppc64le",
"product_id": "tailscale-zsh-completion-1.78.3-2.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "tailscale-1.78.3-2.1.s390x",
"product": {
"name": "tailscale-1.78.3-2.1.s390x",
"product_id": "tailscale-1.78.3-2.1.s390x"
}
},
{
"category": "product_version",
"name": "tailscale-bash-completion-1.78.3-2.1.s390x",
"product": {
"name": "tailscale-bash-completion-1.78.3-2.1.s390x",
"product_id": "tailscale-bash-completion-1.78.3-2.1.s390x"
}
},
{
"category": "product_version",
"name": "tailscale-fish-completion-1.78.3-2.1.s390x",
"product": {
"name": "tailscale-fish-completion-1.78.3-2.1.s390x",
"product_id": "tailscale-fish-completion-1.78.3-2.1.s390x"
}
},
{
"category": "product_version",
"name": "tailscale-zsh-completion-1.78.3-2.1.s390x",
"product": {
"name": "tailscale-zsh-completion-1.78.3-2.1.s390x",
"product_id": "tailscale-zsh-completion-1.78.3-2.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "tailscale-1.78.3-2.1.x86_64",
"product": {
"name": "tailscale-1.78.3-2.1.x86_64",
"product_id": "tailscale-1.78.3-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "tailscale-bash-completion-1.78.3-2.1.x86_64",
"product": {
"name": "tailscale-bash-completion-1.78.3-2.1.x86_64",
"product_id": "tailscale-bash-completion-1.78.3-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "tailscale-fish-completion-1.78.3-2.1.x86_64",
"product": {
"name": "tailscale-fish-completion-1.78.3-2.1.x86_64",
"product_id": "tailscale-fish-completion-1.78.3-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "tailscale-zsh-completion-1.78.3-2.1.x86_64",
"product": {
"name": "tailscale-zsh-completion-1.78.3-2.1.x86_64",
"product_id": "tailscale-zsh-completion-1.78.3-2.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-1.78.3-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-1.78.3-2.1.aarch64"
},
"product_reference": "tailscale-1.78.3-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-1.78.3-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-1.78.3-2.1.ppc64le"
},
"product_reference": "tailscale-1.78.3-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-1.78.3-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-1.78.3-2.1.s390x"
},
"product_reference": "tailscale-1.78.3-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-1.78.3-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-1.78.3-2.1.x86_64"
},
"product_reference": "tailscale-1.78.3-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-bash-completion-1.78.3-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.aarch64"
},
"product_reference": "tailscale-bash-completion-1.78.3-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-bash-completion-1.78.3-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.ppc64le"
},
"product_reference": "tailscale-bash-completion-1.78.3-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-bash-completion-1.78.3-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.s390x"
},
"product_reference": "tailscale-bash-completion-1.78.3-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-bash-completion-1.78.3-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.x86_64"
},
"product_reference": "tailscale-bash-completion-1.78.3-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-fish-completion-1.78.3-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.aarch64"
},
"product_reference": "tailscale-fish-completion-1.78.3-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-fish-completion-1.78.3-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.ppc64le"
},
"product_reference": "tailscale-fish-completion-1.78.3-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-fish-completion-1.78.3-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.s390x"
},
"product_reference": "tailscale-fish-completion-1.78.3-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-fish-completion-1.78.3-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.x86_64"
},
"product_reference": "tailscale-fish-completion-1.78.3-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-zsh-completion-1.78.3-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.aarch64"
},
"product_reference": "tailscale-zsh-completion-1.78.3-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-zsh-completion-1.78.3-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.ppc64le"
},
"product_reference": "tailscale-zsh-completion-1.78.3-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-zsh-completion-1.78.3-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.s390x"
},
"product_reference": "tailscale-zsh-completion-1.78.3-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "tailscale-zsh-completion-1.78.3-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.x86_64"
},
"product_reference": "tailscale-zsh-completion-1.78.3-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-bash-completion-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-fish-completion-1.78.3-2.1.x86_64",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.aarch64",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.ppc64le",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.s390x",
"openSUSE Tumbleweed:tailscale-zsh-completion-1.78.3-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-18T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2024:14604-1
Vulnerability from csaf_opensuse - Published: 2024-12-19 00:00 - Updated: 2024-12-19 00:00Summary
logcli-3.3.2-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: logcli-3.3.2-1.1 on GA media
Description of the patch: These are all security issues fixed in the logcli-3.3.2-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2024-14604
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:logcli-3.3.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:logcli-3.3.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:logcli-3.3.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:logcli-3.3.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:loki-3.3.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:loki-3.3.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:loki-3.3.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:loki-3.3.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:lokitool-3.3.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:lokitool-3.3.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:lokitool-3.3.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:lokitool-3.3.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:promtail-3.3.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:promtail-3.3.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:promtail-3.3.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:promtail-3.3.2-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
5 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "logcli-3.3.2-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the logcli-3.3.2-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-14604",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_14604-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "logcli-3.3.2-1.1 on GA media",
"tracking": {
"current_release_date": "2024-12-19T00:00:00Z",
"generator": {
"date": "2024-12-19T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:14604-1",
"initial_release_date": "2024-12-19T00:00:00Z",
"revision_history": [
{
"date": "2024-12-19T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "logcli-3.3.2-1.1.aarch64",
"product": {
"name": "logcli-3.3.2-1.1.aarch64",
"product_id": "logcli-3.3.2-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "loki-3.3.2-1.1.aarch64",
"product": {
"name": "loki-3.3.2-1.1.aarch64",
"product_id": "loki-3.3.2-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "lokitool-3.3.2-1.1.aarch64",
"product": {
"name": "lokitool-3.3.2-1.1.aarch64",
"product_id": "lokitool-3.3.2-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "promtail-3.3.2-1.1.aarch64",
"product": {
"name": "promtail-3.3.2-1.1.aarch64",
"product_id": "promtail-3.3.2-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "logcli-3.3.2-1.1.ppc64le",
"product": {
"name": "logcli-3.3.2-1.1.ppc64le",
"product_id": "logcli-3.3.2-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "loki-3.3.2-1.1.ppc64le",
"product": {
"name": "loki-3.3.2-1.1.ppc64le",
"product_id": "loki-3.3.2-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "lokitool-3.3.2-1.1.ppc64le",
"product": {
"name": "lokitool-3.3.2-1.1.ppc64le",
"product_id": "lokitool-3.3.2-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "promtail-3.3.2-1.1.ppc64le",
"product": {
"name": "promtail-3.3.2-1.1.ppc64le",
"product_id": "promtail-3.3.2-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "logcli-3.3.2-1.1.s390x",
"product": {
"name": "logcli-3.3.2-1.1.s390x",
"product_id": "logcli-3.3.2-1.1.s390x"
}
},
{
"category": "product_version",
"name": "loki-3.3.2-1.1.s390x",
"product": {
"name": "loki-3.3.2-1.1.s390x",
"product_id": "loki-3.3.2-1.1.s390x"
}
},
{
"category": "product_version",
"name": "lokitool-3.3.2-1.1.s390x",
"product": {
"name": "lokitool-3.3.2-1.1.s390x",
"product_id": "lokitool-3.3.2-1.1.s390x"
}
},
{
"category": "product_version",
"name": "promtail-3.3.2-1.1.s390x",
"product": {
"name": "promtail-3.3.2-1.1.s390x",
"product_id": "promtail-3.3.2-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "logcli-3.3.2-1.1.x86_64",
"product": {
"name": "logcli-3.3.2-1.1.x86_64",
"product_id": "logcli-3.3.2-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "loki-3.3.2-1.1.x86_64",
"product": {
"name": "loki-3.3.2-1.1.x86_64",
"product_id": "loki-3.3.2-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "lokitool-3.3.2-1.1.x86_64",
"product": {
"name": "lokitool-3.3.2-1.1.x86_64",
"product_id": "lokitool-3.3.2-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "promtail-3.3.2-1.1.x86_64",
"product": {
"name": "promtail-3.3.2-1.1.x86_64",
"product_id": "promtail-3.3.2-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "logcli-3.3.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:logcli-3.3.2-1.1.aarch64"
},
"product_reference": "logcli-3.3.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "logcli-3.3.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:logcli-3.3.2-1.1.ppc64le"
},
"product_reference": "logcli-3.3.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "logcli-3.3.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:logcli-3.3.2-1.1.s390x"
},
"product_reference": "logcli-3.3.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "logcli-3.3.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:logcli-3.3.2-1.1.x86_64"
},
"product_reference": "logcli-3.3.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "loki-3.3.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:loki-3.3.2-1.1.aarch64"
},
"product_reference": "loki-3.3.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "loki-3.3.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:loki-3.3.2-1.1.ppc64le"
},
"product_reference": "loki-3.3.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "loki-3.3.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:loki-3.3.2-1.1.s390x"
},
"product_reference": "loki-3.3.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "loki-3.3.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:loki-3.3.2-1.1.x86_64"
},
"product_reference": "loki-3.3.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "lokitool-3.3.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:lokitool-3.3.2-1.1.aarch64"
},
"product_reference": "lokitool-3.3.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "lokitool-3.3.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:lokitool-3.3.2-1.1.ppc64le"
},
"product_reference": "lokitool-3.3.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "lokitool-3.3.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:lokitool-3.3.2-1.1.s390x"
},
"product_reference": "lokitool-3.3.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "lokitool-3.3.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:lokitool-3.3.2-1.1.x86_64"
},
"product_reference": "lokitool-3.3.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "promtail-3.3.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:promtail-3.3.2-1.1.aarch64"
},
"product_reference": "promtail-3.3.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "promtail-3.3.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:promtail-3.3.2-1.1.ppc64le"
},
"product_reference": "promtail-3.3.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "promtail-3.3.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:promtail-3.3.2-1.1.s390x"
},
"product_reference": "promtail-3.3.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "promtail-3.3.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:promtail-3.3.2-1.1.x86_64"
},
"product_reference": "promtail-3.3.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:logcli-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:loki-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:loki-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:loki-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:loki-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:logcli-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:loki-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:loki-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:loki-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:loki-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:logcli-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:logcli-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:loki-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:loki-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:loki-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:loki-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:lokitool-3.3.2-1.1.x86_64",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.aarch64",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.ppc64le",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.s390x",
"openSUSE Tumbleweed:promtail-3.3.2-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-12-19T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:0025-1
Vulnerability from csaf_opensuse - Published: 2025-01-23 19:01 - Updated: 2025-01-23 19:01Summary
Security update for cheat
Severity
Moderate
Notes
Title of the patch: Security update for cheat
Description of the patch: This update for cheat fixes the following issues:
- Update to 4.4.2:
* Bump chroma to newest version
* Remove plan9 support due to build failure
* Upgrade to yaml.v3
- Update to 4.4.1:
* Update dependencies
* Make minor changes to appease revive (linter)
Patchnames: openSUSE-2025-25
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
8 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for cheat",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for cheat fixes the following issues:\n\n- Update to 4.4.2:\n * Bump chroma to newest version\n * Remove plan9 support due to build failure\n * Upgrade to yaml.v3\n\n- Update to 4.4.1:\n * Update dependencies\n * Make minor changes to appease revive (linter)\n\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-2025-25",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2025_0025-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:0025-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/V7MPKXR7TT2G72ERR2OMAC2SJ3BTV5F6/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:0025-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/V7MPKXR7TT2G72ERR2OMAC2SJ3BTV5F6/"
},
{
"category": "self",
"summary": "SUSE Bug 1234584",
"url": "https://bugzilla.suse.com/1234584"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "Security update for cheat",
"tracking": {
"current_release_date": "2025-01-23T19:01:34Z",
"generator": {
"date": "2025-01-23T19:01:34Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:0025-1",
"initial_release_date": "2025-01-23T19:01:34Z",
"revision_history": [
{
"date": "2025-01-23T19:01:34Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "cheat-4.4.2-bp156.3.3.1.aarch64",
"product": {
"name": "cheat-4.4.2-bp156.3.3.1.aarch64",
"product_id": "cheat-4.4.2-bp156.3.3.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "cheat-4.4.2-bp156.3.3.1.i586",
"product": {
"name": "cheat-4.4.2-bp156.3.3.1.i586",
"product_id": "cheat-4.4.2-bp156.3.3.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "cheat-4.4.2-bp156.3.3.1.ppc64le",
"product": {
"name": "cheat-4.4.2-bp156.3.3.1.ppc64le",
"product_id": "cheat-4.4.2-bp156.3.3.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "cheat-4.4.2-bp156.3.3.1.s390x",
"product": {
"name": "cheat-4.4.2-bp156.3.3.1.s390x",
"product_id": "cheat-4.4.2-bp156.3.3.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "cheat-4.4.2-bp156.3.3.1.x86_64",
"product": {
"name": "cheat-4.4.2-bp156.3.3.1.x86_64",
"product_id": "cheat-4.4.2-bp156.3.3.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Package Hub 15 SP6",
"product": {
"name": "SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6"
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.aarch64 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.aarch64"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.aarch64",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.i586 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.i586"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.i586",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.ppc64le as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.ppc64le"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.ppc64le",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.s390x as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.s390x"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.s390x",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.x86_64 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.x86_64"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.x86_64",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.aarch64"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.i586 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.i586"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.i586",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.ppc64le"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.s390x"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cheat-4.4.2-bp156.3.3.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.x86_64"
},
"product_reference": "cheat-4.4.2-bp156.3.3.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.aarch64",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.i586",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.ppc64le",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.s390x",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.x86_64",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.aarch64",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.i586",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.ppc64le",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.s390x",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.aarch64",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.i586",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.ppc64le",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.s390x",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.x86_64",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.aarch64",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.i586",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.ppc64le",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.s390x",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.aarch64",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.i586",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.ppc64le",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.s390x",
"SUSE Package Hub 15 SP6:cheat-4.4.2-bp156.3.3.1.x86_64",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.aarch64",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.i586",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.ppc64le",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.s390x",
"openSUSE Leap 15.6:cheat-4.4.2-bp156.3.3.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-23T19:01:34Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:0056-1
Vulnerability from csaf_opensuse - Published: 2025-02-07 11:01 - Updated: 2025-02-07 11:01Summary
Security update for trivy
Severity
Moderate
Notes
Title of the patch: Security update for trivy
Description of the patch: This update for trivy fixes the following issues:
Update to version 0.58.2 (
boo#1234512, CVE-2024-45337,
boo#1235265, CVE-2024-45338):
* fix(misconf): allow null values only for tf variables [backport: release/v0.58] (#8238)
* fix(suse): SUSE - update OSType constants and references for compatility [backport: release/v0.58] (#8237)
* fix: CVE-2025-21613 and CVE-2025-21614 : go-git: argument injection via the URL field [backport: release/v0.58] (#8215)
* fix(sbom): attach nested packages to Application [backport: release/v0.58] (#8168)
* fix(python): skip dev group's deps for poetry [backport: release/v0.58] (#8158)
* fix(sbom): use root package for `unknown` dependencies (if exists) [backport: release/v0.58] (#8156)
* chore(deps): bump `golang.org/x/net` from `v0.32.0` to `v0.33.0` [backport: release/v0.58] (#8142)
* chore(deps): bump `github.com/CycloneDX/cyclonedx-go` from `v0.9.1` to `v0.9.2` [backport: release/v0.58] (#8136)
* fix(redhat): correct rewriting of recommendations for the same vulnerability [backport: release/v0.58] (#8135)
* fix(oracle): add architectures support for advisories [backport: release/v0.58] (#8125)
* fix(sbom): fix wrong overwriting of applications obtained from different sbom files but having same app type [backport: release/v0.58] (#8124)
* chore(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0 [backport: release/v0.58] (#8122)
* fix: handle `BLOW_UNKNOWN` error to download DBs [backport: release/v0.58] (#8121)
* fix(java): correctly overwrite version from depManagement if dependency uses `project.*` props [backport: release/v0.58] (#8119)
* release: v0.58.0 [main] (#7874)
* fix(misconf): wrap AWS EnvVar to iac types (#7407)
* chore(deps): Upgrade trivy-checks (#8018)
* refactor(misconf): Remove unused options (#7896)
* docs: add terminology page to explain Trivy concepts (#7996)
* feat: add `workspaceRelationship` (#7889)
* refactor(sbom): simplify relationship generation (#7985)
* docs: improve databases documentation (#7732)
* refactor: remove support for custom Terraform checks (#7901)
* docs: drop AWS account scanning (#7997)
* fix(aws): change CPU and Memory type of ContainerDefinition to a string (#7995)
* fix(cli): Handle empty ignore files more gracefully (#7962)
* fix(misconf): load full Terraform module (#7925)
* fix(misconf): properly resolve local Terraform cache (#7983)
* refactor(k8s): add v prefix for Go packages (#7839)
* test: replace Go checks with Rego (#7867)
* feat(misconf): log causes of HCL file parsing errors (#7634)
* chore(deps): bump the aws group across 1 directory with 7 updates (#7991)
* chore(deps): bump github.com/moby/buildkit from 0.17.0 to 0.17.2 in the docker group across 1 directory (#7990)
* chore(deps): update csaf module dependency from csaf-poc to gocsaf (#7992)
* chore: downgrade the failed block expand message to debug (#7964)
* fix(misconf): do not erase variable type for child modules (#7941)
* feat(go): construct dependencies of `go.mod` main module in the parser (#7977)
* feat(go): construct dependencies in the parser (#7973)
* feat: add cvss v4 score and vector in scan response (#7968)
* docs: add `overview` page for `others` (#7972)
* fix(sbom): Fixes for Programming Language Vulnerabilities and SBOM Package Maintainer Details (#7871)
* feat(suse): Align SUSE/OpenSUSE OS Identifiers (#7965)
* chore(deps): bump the common group with 4 updates (#7949)
* feat(oracle): add `flavors` support (#7858)
* fix(misconf): Update trivy-checks default repo to `mirror.gcr.io` (#7953)
* chore(deps): Bump up trivy-checks to v1.3.0 (#7959)
* fix(k8s): check all results for vulnerabilities (#7946)
* ci(helm): bump Trivy version to 0.57.1 for Trivy Helm Chart 0.9.0 (#7945)
* feat(secret): Add built-in secrets rules for Private Packagist (#7826)
* docs: Fix broken links (#7900)
* docs: fix mistakes/typos (#7942)
* feat: Update registry fallbacks (#7679)
* fix(alpine): add `UID` for removed packages (#7887)
* chore(deps): bump the aws group with 6 updates (#7902)
* chore(deps): bump the common group with 6 updates (#7904)
* fix(debian): infinite loop (#7928)
* fix(redhat): don't return error if `root/buildinfo/content_manifests/` contains files that are not `contentSets` files (#7912)
* docs: add note about temporary podman socket (#7921)
* docs: combine trivy.dev into trivy docs (#7884)
* test: change branch in spdx schema link to check in integration tests (#7935)
* docs: add Headlamp to the Trivy Ecosystem page (#7916)
* fix(report): handle `git@github.com` schema for misconfigs in `sarif` report (#7898)
* chore(k8s): enhance k8s scan log (#6997)
* fix(terraform): set null value as fallback for missing variables (#7669)
* fix(misconf): handle null properties in CloudFormation templates (#7813)
* fix(fs): add missing defered Cleanup() call to post analyzer fs (#7882)
* chore(deps): bump the common group across 1 directory with 20 updates (#7876)
* chore: bump containerd to v2.0.0 (#7875)
* fix: Improve version comparisons when build identifiers are present (#7873)
* feat(k8s): add default commands for unknown platform (#7863)
* chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#7868)
* refactor(secret): optimize performance by moving ToLower operation outside loop (#7862)
* test: save `containerd` image into archive and use in tests (#7816)
* chore(deps): bump the github-actions group across 1 directory with 2 updates (#7854)
* chore: bump golangci-lint to v1.61.0 (#7853)
- Update to version 0.57.1:
* release: v0.57.1 [release/v0.57] (#7943)
* feat: Update registry fallbacks [backport: release/v0.57] (#7944)
* fix(redhat): don't return error if `root/buildinfo/content_manifests/` contains files that are not `contentSets` files [backport: release/v0.57] (#7939)
* test: change branch in spdx schema link to check in integration tests [backport: release/v0.57] (#7940)
* release: v0.57.0 [main] (#7710)
* chore: lint `errors.Join` (#7845)
* feat(db): append errors (#7843)
* docs(java): add info about supported scopes (#7842)
* docs: add example of creating whitelist of checks (#7821)
* chore(deps): Bump trivy-checks (#7819)
* fix(go): Do not trim v prefix from versions in Go Mod Analyzer (#7733)
* fix(k8s): skip resources without misconfigs (#7797)
* fix(sbom): use `Annotation` instead of `AttributionTexts` for `SPDX` formats (#7811)
* fix(cli): add config name to skip-policy-update alias (#7820)
* fix(helm): properly handle multiple archived dependencies (#7782)
* refactor(misconf): Deprecate `EXCEPTIONS` for misconfiguration scanning (#7776)
* fix(k8s)!: support k8s multi container (#7444)
* fix(k8s): support kubernetes v1.31 (#7810)
* docs: add Windows install instructions (#7800)
* ci(helm): auto public Helm chart after PR merged (#7526)
* feat: add end of life date for Ubuntu 24.10 (#7787)
* feat(report): update gitlab template to populate operating_system value (#7735)
* feat(misconf): Show misconfig ID in output (#7762)
* feat(misconf): export unresolvable field of IaC types to Rego (#7765)
* refactor(k8s): scan config files as a folder (#7690)
* fix(license): fix license normalization for Universal Permissive License (#7766)
* fix: enable usestdlibvars linter (#7770)
* fix(misconf): properly expand dynamic blocks (#7612)
* feat(cyclonedx): add file checksums to `CycloneDX` reports (#7507)
* fix(misconf): fix for Azure Storage Account network acls adaptation (#7602)
* refactor(misconf): simplify k8s scanner (#7717)
* feat(parser): ignore white space in pom.xml files (#7747)
* test: use forked images (#7755)
* fix(java): correctly inherit `version` and `scope` from upper/root `depManagement` and `dependencies` into parents (#7541)
* fix(misconf): check if property is not nil before conversion (#7578)
* fix(misconf): change default ACL of digitalocean_spaces_bucket to private (#7577)
* feat(misconf): ssl_mode support for GCP SQL DB instance (#7564)
* test: define constants for test images (#7739)
* docs: add note about disabled DS016 check (#7724)
* feat(misconf): public network support for Azure Storage Account (#7601)
* feat(cli): rename `trivy auth` to `trivy registry` (#7727)
* docs: apt-transport-https is a transitional package (#7678)
* refactor(misconf): introduce generic scanner (#7515)
* fix(cli): `clean --all` deletes only relevant dirs (#7704)
* feat(cli): add `trivy auth` (#7664)
* fix(sbom): add options for DBs in private registries (#7660)
* docs(report): fix reporting doc format (#7671)
* fix(repo): `git clone` output to Stderr (#7561)
* fix(redhat): include arch in PURL qualifiers (#7654)
* fix(report): Fix invalid URI in SARIF report (#7645)
* docs(report): Improve SARIF reporting doc (#7655)
* fix(db): fix javadb downloading error handling (#7642)
* feat(cli): error out when ignore file cannot be found (#7624)
- Update to version 0.56.2:
* release: v0.56.2 [release/v0.56] (#7694)
* fix(redhat): include arch in PURL qualifiers [backport: release/v0.56] (#7702)
* fix(sbom): add options for DBs in private registries [backport: release/v0.56] (#7691)
- Update to version 0.56.1:
* release: v0.56.1 [release/v0.56] (#7648)
* fix(db): fix javadb downloading error handling [backport: release/v0.56] (#7646)
* release: v0.56.0 [main] (#7447)
* fix(misconf): not to warn about missing selectors of libraries (#7638)
* feat: support RPM archives (#7628)
* fix(secret): change grafana token regex to find them without unquoted (#7627)
* fix(misconf): Disable deprecated checks by default (#7632)
* chore: add prefixes to log messages (#7625)
* feat(misconf): Support `--skip-*` for all included modules (#7579)
* feat: support multiple DB repositories for vulnerability and Java DB (#7605)
* ci: don't use cache for `setup-go` (#7622)
* test: use loaded image names (#7617)
* feat(java): add empty versions if `pom.xml` dependency versions can't be detected (#7520)
* feat(secret): enhance secret scanning for python binary files (#7223)
* refactor: fix auth error handling (#7615)
* ci: split `save` and `restore` cache actions (#7614)
* fix(misconf): disable DS016 check for image history analyzer (#7540)
* feat(suse): added SUSE Linux Enterprise Micro support (#7294)
* feat(misconf): add ability to disable checks by ID (#7536)
* fix(misconf): escape all special sequences (#7558)
* test: use a local registry for remote scanning (#7607)
* fix: allow access to '..' in mapfs (#7575)
* fix(db): check `DownloadedAt` for `trivy-java-db` (#7592)
* chore(deps): bump the common group across 1 directory with 20 updates (#7604)
* ci: add `workflow_dispatch` trigger for test workflow. (#7606)
* ci: cache test images for `integration`, `VM` and `module` tests (#7599)
* chore(deps): remove broken replaces for opa and discovery (#7600)
* docs(misconf): Add more info on how to use arbitrary JSON/YAML scan feat (#7458)
* fix(misconf): Fixed scope for China Cloud (#7560)
* perf(misconf): use port ranges instead of enumeration (#7549)
* fix(sbom): export bom-ref when converting a package to a component (#7340)
* refactor(misconf): pass options to Rego scanner as is (#7529)
* fix(sbom): parse type `framework` as `library` when unmarshalling `CycloneDX` files (#7527)
* chore(deps): bump go-ebs-file (#7513)
* fix(misconf): Fix logging typo (#7473)
* feat(misconf): Register checks only when needed (#7435)
* refactor: split `.egg` and `packaging` analyzers (#7514)
* fix(java): use `dependencyManagement` from root/child pom's for dependencies from parents (#7497)
* chore(vex): add `CVE-2024-34155`, `CVE-2024-34156` and `CVE-2024-34158` in `trivy.openvex.json` (#7510)
* chore(deps): bump alpine from 3.20.0 to 3.20.3 (#7508)
* chore(vex): suppress openssl vulnerabilities (#7500)
* revert(java): stop supporting of `test` scope for `pom.xml` files (#7488)
* docs(db): add a manifest example (#7485)
* feat(license): improve license normalization (#7131)
* docs(oci): Add a note About the expected Media Type for the Trivy-DB OCI Artifact (#7449)
* fix(report): fix error with unmarshal of `ExperimentalModifiedFindings` (#7463)
* fix(report): change a receiver of MarshalJSON (#7483)
* fix(oracle): Update EOL date for Oracle 7 (#7480)
* chore(deps): bump the aws group with 6 updates (#7468)
* chore(deps): bump the common group across 1 directory with 19 updates (#7436)
* chore(helm): bump up Trivy Helm chart (#7441)
* refactor(java): add error/statusCode for logs when we can't get pom.xml/maven-metadata.xml from remote repo (#7451)
* fix(license): stop spliting a long license text (#7336)
* release: v0.55.0 [main] (#7271)
* feat(go): use `toolchain` as `stdlib` version for `go.mod` files (#7163)
* fix(license): add license handling to JUnit template (#7409)
* feat(java): add `test` scope support for `pom.xml` files (#7414)
* chore(deps): Bump trivy-checks and pin OPA (#7427)
* fix(helm): explicitly define `kind` and `apiVersion` of `volumeClaimTemplate` element (#7362)
* feat(sbom): set User-Agent header on requests to Rekor (#7396)
* test: add integration plugin tests (#7299)
* fix(nodejs): check all `importers` to detect dev deps from pnpm-lock.yaml file (#7387)
* fix: logger initialization before flags parsing (#7372)
* fix(aws): handle ECR repositories in different regions (#6217)
* fix(misconf): fix infer type for null value (#7424)
* fix(secret): use `.eyJ` keyword for JWT secret (#7410)
* fix(misconf): do not recreate filesystem map (#7416)
* chore(deps): Bump trivy-checks (#7417)
* fix(misconf): do not register Rego libs in checks registry (#7420)
* fix(sbom): use `NOASSERTION` for licenses fields in SPDX formats (#7403)
* feat(report): export modified findings in JSON (#7383)
* feat(server): Make Trivy Server Multiplexer Exported (#7389)
* chore: update CODEOWNERS (#7398)
* fix(secret): use only line with secret for long secret lines (#7412)
* chore: fix allow rule of ignoring test files to make it case insensitive (#7415)
* feat(misconf): port and protocol support for EC2 networks (#7146)
* fix(misconf): do not filter Terraform plan JSON by name (#7406)
* feat(misconf): support for ignore by nested attributes (#7205)
* fix(misconf): use module to log when metadata retrieval fails (#7405)
* fix(report): escape `Message` field in `asff.tpl` template (#7401)
* feat(misconf): Add support for using spec from on-disk bundle (#7179)
* docs: add pkg flags to config file page (#7370)
* feat(python): use minimum version for pip packages (#7348)
* fix(misconf): support deprecating for Go checks (#7377)
* fix(misconf): init frameworks before updating them (#7376)
* feat(misconf): ignore duplicate checks (#7317)
* refactor(misconf): use slog (#7295)
* chore(deps): bump trivy-checks (#7350)
* feat(server): add internal `--path-prefix` flag for client/server mode (#7321)
* chore(deps): bump the aws group across 1 directory with 7 updates (#7358)
* fix: safely check if the directory exists (#7353)
* feat(misconf): variable support for Terraform Plan (#7228)
* feat(misconf): scanning support for YAML and JSON (#7311)
* fix(misconf): wrap Azure PortRange in iac types (#7357)
* refactor(misconf): highlight only affected rows (#7310)
* fix(misconf): change default TLS values for the Azure storage account (#7345)
* chore(deps): bump the common group with 9 updates (#7333)
* docs(misconf): Update callsites to use correct naming (#7335)
* docs: update air-gapped docs (#7160)
* refactor: replace ftypes.Gradle with packageurl.TypeGradle (#7323)
* perf(misconf): optimize work with context (#6968)
* docs: update links to packaging.python.org (#7318)
* docs: update client/server docs for misconf and license scanning (#7277)
* chore(deps): bump the common group across 1 directory with 7 updates (#7305)
* feat(misconf): iterator argument support for dynamic blocks (#7236)
* fix(misconf): do not set default value for default_cache_behavior (#7234)
* feat(misconf): support for policy and bucket grants (#7284)
* fix(misconf): load only submodule if it is specified in source (#7112)
* perf(misconf): use json.Valid to check validity of JSON (#7308)
* refactor(misconf): remove unused universal scanner (#7293)
* perf(misconf): do not convert contents of a YAML file to string (#7292)
* fix(terraform): add aws_region name to presets (#7184)
* docs: add auto-generated config (#7261)
* feat(vuln): Add `--detection-priority` flag for accuracy tuning (#7288)
* refactor(misconf): remove file filtering from parsers (#7289)
* fix(flag): incorrect behavior for deprected flag `--clear-cache` (#7281)
* fix(java): Return error when trying to find a remote pom to avoid segfault (#7275)
* fix(plugin): do not call GitHub content API for releases and tags (#7274)
* feat(vm): support the Ext2/Ext3 filesystems (#6983)
* feat(cli)!: delete deprecated SBOM flags (#7266)
* feat(vm): Support direct filesystem (#7058)
- Update to version 0.51.1 (boo#1227010, CVE-2024-3817):
Patchnames: openSUSE-2025-56
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
5.9 (Medium)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
5.9 (Medium)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
5.9 (Medium)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
critical
8.1 (High)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
10 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
30 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for trivy",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for trivy fixes the following issues:\n\nUpdate to version 0.58.2 (\n\n boo#1234512, CVE-2024-45337,\n boo#1235265, CVE-2024-45338):\n\n * fix(misconf): allow null values only for tf variables [backport: release/v0.58] (#8238)\n * fix(suse): SUSE - update OSType constants and references for compatility [backport: release/v0.58] (#8237)\n * fix: CVE-2025-21613 and CVE-2025-21614 : go-git: argument injection via the URL field [backport: release/v0.58] (#8215)\n * fix(sbom): attach nested packages to Application [backport: release/v0.58] (#8168)\n * fix(python): skip dev group\u0027s deps for poetry [backport: release/v0.58] (#8158)\n * fix(sbom): use root package for `unknown` dependencies (if exists) [backport: release/v0.58] (#8156)\n * chore(deps): bump `golang.org/x/net` from `v0.32.0` to `v0.33.0` [backport: release/v0.58] (#8142)\n * chore(deps): bump `github.com/CycloneDX/cyclonedx-go` from `v0.9.1` to `v0.9.2` [backport: release/v0.58] (#8136)\n * fix(redhat): correct rewriting of recommendations for the same vulnerability [backport: release/v0.58] (#8135)\n * fix(oracle): add architectures support for advisories [backport: release/v0.58] (#8125)\n * fix(sbom): fix wrong overwriting of applications obtained from different sbom files but having same app type [backport: release/v0.58] (#8124)\n * chore(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0 [backport: release/v0.58] (#8122)\n * fix: handle `BLOW_UNKNOWN` error to download DBs [backport: release/v0.58] (#8121)\n * fix(java): correctly overwrite version from depManagement if dependency uses `project.*` props [backport: release/v0.58] (#8119)\n * release: v0.58.0 [main] (#7874)\n * fix(misconf): wrap AWS EnvVar to iac types (#7407)\n * chore(deps): Upgrade trivy-checks (#8018)\n * refactor(misconf): Remove unused options (#7896)\n * docs: add terminology page to explain Trivy concepts (#7996)\n * feat: add `workspaceRelationship` (#7889)\n * refactor(sbom): simplify relationship generation (#7985)\n * docs: improve databases documentation (#7732)\n * refactor: remove support for custom Terraform checks (#7901)\n * docs: drop AWS account scanning (#7997)\n * fix(aws): change CPU and Memory type of ContainerDefinition to a string (#7995)\n * fix(cli): Handle empty ignore files more gracefully (#7962)\n * fix(misconf): load full Terraform module (#7925)\n * fix(misconf): properly resolve local Terraform cache (#7983)\n * refactor(k8s): add v prefix for Go packages (#7839)\n * test: replace Go checks with Rego (#7867)\n * feat(misconf): log causes of HCL file parsing errors (#7634)\n * chore(deps): bump the aws group across 1 directory with 7 updates (#7991)\n * chore(deps): bump github.com/moby/buildkit from 0.17.0 to 0.17.2 in the docker group across 1 directory (#7990)\n * chore(deps): update csaf module dependency from csaf-poc to gocsaf (#7992)\n * chore: downgrade the failed block expand message to debug (#7964)\n * fix(misconf): do not erase variable type for child modules (#7941)\n * feat(go): construct dependencies of `go.mod` main module in the parser (#7977)\n * feat(go): construct dependencies in the parser (#7973)\n * feat: add cvss v4 score and vector in scan response (#7968)\n * docs: add `overview` page for `others` (#7972)\n * fix(sbom): Fixes for Programming Language Vulnerabilities and SBOM Package Maintainer Details (#7871)\n * feat(suse): Align SUSE/OpenSUSE OS Identifiers (#7965)\n * chore(deps): bump the common group with 4 updates (#7949)\n * feat(oracle): add `flavors` support (#7858)\n * fix(misconf): Update trivy-checks default repo to `mirror.gcr.io` (#7953)\n * chore(deps): Bump up trivy-checks to v1.3.0 (#7959)\n * fix(k8s): check all results for vulnerabilities (#7946)\n * ci(helm): bump Trivy version to 0.57.1 for Trivy Helm Chart 0.9.0 (#7945)\n * feat(secret): Add built-in secrets rules for Private Packagist (#7826)\n * docs: Fix broken links (#7900)\n * docs: fix mistakes/typos (#7942)\n * feat: Update registry fallbacks (#7679)\n * fix(alpine): add `UID` for removed packages (#7887)\n * chore(deps): bump the aws group with 6 updates (#7902)\n * chore(deps): bump the common group with 6 updates (#7904)\n * fix(debian): infinite loop (#7928)\n * fix(redhat): don\u0027t return error if `root/buildinfo/content_manifests/` contains files that are not `contentSets` files (#7912)\n * docs: add note about temporary podman socket (#7921)\n * docs: combine trivy.dev into trivy docs (#7884)\n * test: change branch in spdx schema link to check in integration tests (#7935)\n * docs: add Headlamp to the Trivy Ecosystem page (#7916)\n * fix(report): handle `git@github.com` schema for misconfigs in `sarif` report (#7898)\n * chore(k8s): enhance k8s scan log (#6997)\n * fix(terraform): set null value as fallback for missing variables (#7669)\n * fix(misconf): handle null properties in CloudFormation templates (#7813)\n * fix(fs): add missing defered Cleanup() call to post analyzer fs (#7882)\n * chore(deps): bump the common group across 1 directory with 20 updates (#7876)\n * chore: bump containerd to v2.0.0 (#7875)\n * fix: Improve version comparisons when build identifiers are present (#7873)\n * feat(k8s): add default commands for unknown platform (#7863)\n * chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#7868)\n * refactor(secret): optimize performance by moving ToLower operation outside loop (#7862)\n * test: save `containerd` image into archive and use in tests (#7816)\n * chore(deps): bump the github-actions group across 1 directory with 2 updates (#7854)\n * chore: bump golangci-lint to v1.61.0 (#7853)\n\n- Update to version 0.57.1:\n * release: v0.57.1 [release/v0.57] (#7943)\n * feat: Update registry fallbacks [backport: release/v0.57] (#7944)\n * fix(redhat): don\u0027t return error if `root/buildinfo/content_manifests/` contains files that are not `contentSets` files [backport: release/v0.57] (#7939)\n * test: change branch in spdx schema link to check in integration tests [backport: release/v0.57] (#7940)\n * release: v0.57.0 [main] (#7710)\n * chore: lint `errors.Join` (#7845)\n * feat(db): append errors (#7843)\n * docs(java): add info about supported scopes (#7842)\n * docs: add example of creating whitelist of checks (#7821)\n * chore(deps): Bump trivy-checks (#7819)\n * fix(go): Do not trim v prefix from versions in Go Mod Analyzer (#7733)\n * fix(k8s): skip resources without misconfigs (#7797)\n * fix(sbom): use `Annotation` instead of `AttributionTexts` for `SPDX` formats (#7811)\n * fix(cli): add config name to skip-policy-update alias (#7820)\n * fix(helm): properly handle multiple archived dependencies (#7782)\n * refactor(misconf): Deprecate `EXCEPTIONS` for misconfiguration scanning (#7776)\n * fix(k8s)!: support k8s multi container (#7444)\n * fix(k8s): support kubernetes v1.31 (#7810)\n * docs: add Windows install instructions (#7800)\n * ci(helm): auto public Helm chart after PR merged (#7526)\n * feat: add end of life date for Ubuntu 24.10 (#7787)\n * feat(report): update gitlab template to populate operating_system value (#7735)\n * feat(misconf): Show misconfig ID in output (#7762)\n * feat(misconf): export unresolvable field of IaC types to Rego (#7765)\n * refactor(k8s): scan config files as a folder (#7690)\n * fix(license): fix license normalization for Universal Permissive License (#7766)\n * fix: enable usestdlibvars linter (#7770)\n * fix(misconf): properly expand dynamic blocks (#7612)\n * feat(cyclonedx): add file checksums to `CycloneDX` reports (#7507)\n * fix(misconf): fix for Azure Storage Account network acls adaptation (#7602)\n * refactor(misconf): simplify k8s scanner (#7717)\n * feat(parser): ignore white space in pom.xml files (#7747)\n * test: use forked images (#7755)\n * fix(java): correctly inherit `version` and `scope` from upper/root `depManagement` and `dependencies` into parents (#7541)\n * fix(misconf): check if property is not nil before conversion (#7578)\n * fix(misconf): change default ACL of digitalocean_spaces_bucket to private (#7577)\n * feat(misconf): ssl_mode support for GCP SQL DB instance (#7564)\n * test: define constants for test images (#7739)\n * docs: add note about disabled DS016 check (#7724)\n * feat(misconf): public network support for Azure Storage Account (#7601)\n * feat(cli): rename `trivy auth` to `trivy registry` (#7727)\n * docs: apt-transport-https is a transitional package (#7678)\n * refactor(misconf): introduce generic scanner (#7515)\n * fix(cli): `clean --all` deletes only relevant dirs (#7704)\n * feat(cli): add `trivy auth` (#7664)\n * fix(sbom): add options for DBs in private registries (#7660)\n * docs(report): fix reporting doc format (#7671)\n * fix(repo): `git clone` output to Stderr (#7561)\n * fix(redhat): include arch in PURL qualifiers (#7654)\n * fix(report): Fix invalid URI in SARIF report (#7645)\n * docs(report): Improve SARIF reporting doc (#7655)\n * fix(db): fix javadb downloading error handling (#7642)\n * feat(cli): error out when ignore file cannot be found (#7624)\n\n- Update to version 0.56.2:\n * release: v0.56.2 [release/v0.56] (#7694)\n * fix(redhat): include arch in PURL qualifiers [backport: release/v0.56] (#7702)\n * fix(sbom): add options for DBs in private registries [backport: release/v0.56] (#7691)\n\n- Update to version 0.56.1:\n * release: v0.56.1 [release/v0.56] (#7648)\n * fix(db): fix javadb downloading error handling [backport: release/v0.56] (#7646)\n * release: v0.56.0 [main] (#7447)\n * fix(misconf): not to warn about missing selectors of libraries (#7638)\n * feat: support RPM archives (#7628)\n * fix(secret): change grafana token regex to find them without unquoted (#7627)\n * fix(misconf): Disable deprecated checks by default (#7632)\n * chore: add prefixes to log messages (#7625)\n * feat(misconf): Support `--skip-*` for all included modules (#7579)\n * feat: support multiple DB repositories for vulnerability and Java DB (#7605)\n * ci: don\u0027t use cache for `setup-go` (#7622)\n * test: use loaded image names (#7617)\n * feat(java): add empty versions if `pom.xml` dependency versions can\u0027t be detected (#7520)\n * feat(secret): enhance secret scanning for python binary files (#7223)\n * refactor: fix auth error handling (#7615)\n * ci: split `save` and `restore` cache actions (#7614)\n * fix(misconf): disable DS016 check for image history analyzer (#7540)\n * feat(suse): added SUSE Linux Enterprise Micro support (#7294)\n * feat(misconf): add ability to disable checks by ID (#7536)\n * fix(misconf): escape all special sequences (#7558)\n * test: use a local registry for remote scanning (#7607)\n * fix: allow access to \u0027..\u0027 in mapfs (#7575)\n * fix(db): check `DownloadedAt` for `trivy-java-db` (#7592)\n * chore(deps): bump the common group across 1 directory with 20 updates (#7604)\n * ci: add `workflow_dispatch` trigger for test workflow. (#7606)\n * ci: cache test images for `integration`, `VM` and `module` tests (#7599)\n * chore(deps): remove broken replaces for opa and discovery (#7600)\n * docs(misconf): Add more info on how to use arbitrary JSON/YAML scan feat (#7458)\n * fix(misconf): Fixed scope for China Cloud (#7560)\n * perf(misconf): use port ranges instead of enumeration (#7549)\n * fix(sbom): export bom-ref when converting a package to a component (#7340)\n * refactor(misconf): pass options to Rego scanner as is (#7529)\n * fix(sbom): parse type `framework` as `library` when unmarshalling `CycloneDX` files (#7527)\n * chore(deps): bump go-ebs-file (#7513)\n * fix(misconf): Fix logging typo (#7473)\n * feat(misconf): Register checks only when needed (#7435)\n * refactor: split `.egg` and `packaging` analyzers (#7514)\n * fix(java): use `dependencyManagement` from root/child pom\u0027s for dependencies from parents (#7497)\n * chore(vex): add `CVE-2024-34155`, `CVE-2024-34156` and `CVE-2024-34158` in `trivy.openvex.json` (#7510)\n * chore(deps): bump alpine from 3.20.0 to 3.20.3 (#7508)\n * chore(vex): suppress openssl vulnerabilities (#7500)\n * revert(java): stop supporting of `test` scope for `pom.xml` files (#7488)\n * docs(db): add a manifest example (#7485)\n * feat(license): improve license normalization (#7131)\n * docs(oci): Add a note About the expected Media Type for the Trivy-DB OCI Artifact (#7449)\n * fix(report): fix error with unmarshal of `ExperimentalModifiedFindings` (#7463)\n * fix(report): change a receiver of MarshalJSON (#7483)\n * fix(oracle): Update EOL date for Oracle 7 (#7480)\n * chore(deps): bump the aws group with 6 updates (#7468)\n * chore(deps): bump the common group across 1 directory with 19 updates (#7436)\n * chore(helm): bump up Trivy Helm chart (#7441)\n * refactor(java): add error/statusCode for logs when we can\u0027t get pom.xml/maven-metadata.xml from remote repo (#7451)\n * fix(license): stop spliting a long license text (#7336)\n * release: v0.55.0 [main] (#7271)\n * feat(go): use `toolchain` as `stdlib` version for `go.mod` files (#7163)\n * fix(license): add license handling to JUnit template (#7409)\n * feat(java): add `test` scope support for `pom.xml` files (#7414)\n * chore(deps): Bump trivy-checks and pin OPA (#7427)\n * fix(helm): explicitly define `kind` and `apiVersion` of `volumeClaimTemplate` element (#7362)\n * feat(sbom): set User-Agent header on requests to Rekor (#7396)\n * test: add integration plugin tests (#7299)\n * fix(nodejs): check all `importers` to detect dev deps from pnpm-lock.yaml file (#7387)\n * fix: logger initialization before flags parsing (#7372)\n * fix(aws): handle ECR repositories in different regions (#6217)\n * fix(misconf): fix infer type for null value (#7424)\n * fix(secret): use `.eyJ` keyword for JWT secret (#7410)\n * fix(misconf): do not recreate filesystem map (#7416)\n * chore(deps): Bump trivy-checks (#7417)\n * fix(misconf): do not register Rego libs in checks registry (#7420)\n * fix(sbom): use `NOASSERTION` for licenses fields in SPDX formats (#7403)\n * feat(report): export modified findings in JSON (#7383)\n * feat(server): Make Trivy Server Multiplexer Exported (#7389)\n * chore: update CODEOWNERS (#7398)\n * fix(secret): use only line with secret for long secret lines (#7412)\n * chore: fix allow rule of ignoring test files to make it case insensitive (#7415)\n * feat(misconf): port and protocol support for EC2 networks (#7146)\n * fix(misconf): do not filter Terraform plan JSON by name (#7406)\n * feat(misconf): support for ignore by nested attributes (#7205)\n * fix(misconf): use module to log when metadata retrieval fails (#7405)\n * fix(report): escape `Message` field in `asff.tpl` template (#7401)\n * feat(misconf): Add support for using spec from on-disk bundle (#7179)\n * docs: add pkg flags to config file page (#7370)\n * feat(python): use minimum version for pip packages (#7348)\n * fix(misconf): support deprecating for Go checks (#7377)\n * fix(misconf): init frameworks before updating them (#7376)\n * feat(misconf): ignore duplicate checks (#7317)\n * refactor(misconf): use slog (#7295)\n * chore(deps): bump trivy-checks (#7350)\n * feat(server): add internal `--path-prefix` flag for client/server mode (#7321)\n * chore(deps): bump the aws group across 1 directory with 7 updates (#7358)\n * fix: safely check if the directory exists (#7353)\n * feat(misconf): variable support for Terraform Plan (#7228)\n * feat(misconf): scanning support for YAML and JSON (#7311)\n * fix(misconf): wrap Azure PortRange in iac types (#7357)\n * refactor(misconf): highlight only affected rows (#7310)\n * fix(misconf): change default TLS values for the Azure storage account (#7345)\n * chore(deps): bump the common group with 9 updates (#7333)\n * docs(misconf): Update callsites to use correct naming (#7335)\n * docs: update air-gapped docs (#7160)\n * refactor: replace ftypes.Gradle with packageurl.TypeGradle (#7323)\n * perf(misconf): optimize work with context (#6968)\n * docs: update links to packaging.python.org (#7318)\n * docs: update client/server docs for misconf and license scanning (#7277)\n * chore(deps): bump the common group across 1 directory with 7 updates (#7305)\n * feat(misconf): iterator argument support for dynamic blocks (#7236)\n * fix(misconf): do not set default value for default_cache_behavior (#7234)\n * feat(misconf): support for policy and bucket grants (#7284)\n * fix(misconf): load only submodule if it is specified in source (#7112)\n * perf(misconf): use json.Valid to check validity of JSON (#7308)\n * refactor(misconf): remove unused universal scanner (#7293)\n * perf(misconf): do not convert contents of a YAML file to string (#7292)\n * fix(terraform): add aws_region name to presets (#7184)\n * docs: add auto-generated config (#7261)\n * feat(vuln): Add `--detection-priority` flag for accuracy tuning (#7288)\n * refactor(misconf): remove file filtering from parsers (#7289)\n * fix(flag): incorrect behavior for deprected flag `--clear-cache` (#7281)\n * fix(java): Return error when trying to find a remote pom to avoid segfault (#7275)\n * fix(plugin): do not call GitHub content API for releases and tags (#7274)\n * feat(vm): support the Ext2/Ext3 filesystems (#6983)\n * feat(cli)!: delete deprecated SBOM flags (#7266)\n * feat(vm): Support direct filesystem (#7058)\n\n- Update to version 0.51.1 (boo#1227010, CVE-2024-3817):",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-2025-56",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2025_0056-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:0056-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/DUNHR7ATZWEF5LQKUNEXKL22CUQAND3A/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:0056-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/DUNHR7ATZWEF5LQKUNEXKL22CUQAND3A/"
},
{
"category": "self",
"summary": "SUSE Bug 1227010",
"url": "https://bugzilla.suse.com/1227010"
},
{
"category": "self",
"summary": "SUSE Bug 1234512",
"url": "https://bugzilla.suse.com/1234512"
},
{
"category": "self",
"summary": "SUSE Bug 1235265",
"url": "https://bugzilla.suse.com/1235265"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-34155 page",
"url": "https://www.suse.com/security/cve/CVE-2024-34155/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-34156 page",
"url": "https://www.suse.com/security/cve/CVE-2024-34156/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-34158 page",
"url": "https://www.suse.com/security/cve/CVE-2024-34158/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-3817 page",
"url": "https://www.suse.com/security/cve/CVE-2024-3817/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45338 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45338/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-21613 page",
"url": "https://www.suse.com/security/cve/CVE-2025-21613/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-21614 page",
"url": "https://www.suse.com/security/cve/CVE-2025-21614/"
}
],
"title": "Security update for trivy",
"tracking": {
"current_release_date": "2025-02-07T11:01:31Z",
"generator": {
"date": "2025-02-07T11:01:31Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:0056-1",
"initial_release_date": "2025-02-07T11:01:31Z",
"revision_history": [
{
"date": "2025-02-07T11:01:31Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-bp156.2.6.1.aarch64",
"product": {
"name": "trivy-0.58.2-bp156.2.6.1.aarch64",
"product_id": "trivy-0.58.2-bp156.2.6.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-bp156.2.6.1.i586",
"product": {
"name": "trivy-0.58.2-bp156.2.6.1.i586",
"product_id": "trivy-0.58.2-bp156.2.6.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-bp156.2.6.1.ppc64le",
"product": {
"name": "trivy-0.58.2-bp156.2.6.1.ppc64le",
"product_id": "trivy-0.58.2-bp156.2.6.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-bp156.2.6.1.s390x",
"product": {
"name": "trivy-0.58.2-bp156.2.6.1.s390x",
"product_id": "trivy-0.58.2-bp156.2.6.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-bp156.2.6.1.x86_64",
"product": {
"name": "trivy-0.58.2-bp156.2.6.1.x86_64",
"product_id": "trivy-0.58.2-bp156.2.6.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Package Hub 15 SP6",
"product": {
"name": "SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6"
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.aarch64 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.aarch64",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.i586 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.i586",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.ppc64le as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.ppc64le",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.s390x as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.s390x",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.x86_64 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.x86_64",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.i586 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.i586",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-bp156.2.6.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
},
"product_reference": "trivy-0.58.2-bp156.2.6.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-34155",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-34155"
}
],
"notes": [
{
"category": "general",
"text": "Calling any of the Parse functions on Go source code which contains deeply nested literals can cause a panic due to stack exhaustion.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-34155",
"url": "https://www.suse.com/security/cve/CVE-2024-34155"
},
{
"category": "external",
"summary": "SUSE Bug 1230252 for CVE-2024-34155",
"url": "https://bugzilla.suse.com/1230252"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "moderate"
}
],
"title": "CVE-2024-34155"
},
{
"cve": "CVE-2024-34156",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-34156"
}
],
"notes": [
{
"category": "general",
"text": "Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion. This is a follow-up to CVE-2022-30635.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-34156",
"url": "https://www.suse.com/security/cve/CVE-2024-34156"
},
{
"category": "external",
"summary": "SUSE Bug 1230253 for CVE-2024-34156",
"url": "https://bugzilla.suse.com/1230253"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "moderate"
}
],
"title": "CVE-2024-34156"
},
{
"cve": "CVE-2024-34158",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-34158"
}
],
"notes": [
{
"category": "general",
"text": "Calling Parse on a \"// +build\" build tag line with deeply nested expressions can cause a panic due to stack exhaustion.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-34158",
"url": "https://www.suse.com/security/cve/CVE-2024-34158"
},
{
"category": "external",
"summary": "SUSE Bug 1230254 for CVE-2024-34158",
"url": "https://bugzilla.suse.com/1230254"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "moderate"
}
],
"title": "CVE-2024-34158"
},
{
"cve": "CVE-2024-3817",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-3817"
}
],
"notes": [
{
"category": "general",
"text": "HashiCorp\u0027s go-getter library is vulnerable to argument injection when executing Git to discover remote branches. \n\nThis vulnerability does not affect the go-getter/v2 branch and package.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-3817",
"url": "https://www.suse.com/security/cve/CVE-2024-3817"
},
{
"category": "external",
"summary": "SUSE Bug 1226999 for CVE-2024-3817",
"url": "https://bugzilla.suse.com/1226999"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "critical"
}
],
"title": "CVE-2024-3817"
},
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
},
{
"cve": "CVE-2025-21613",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-21613"
}
],
"notes": [
{
"category": "general",
"text": "go-git is a highly extensible git implementation library written in pure Go. An argument injection vulnerability was discovered in go-git versions prior to v5.13. Successful exploitation of this vulnerability could allow an attacker to set arbitrary values to git-upload-pack flags. This only happens when the file transport protocol is being used, as that is the only protocol that shells out to git binaries. This vulnerability is fixed in 5.13.0.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-21613",
"url": "https://www.suse.com/security/cve/CVE-2025-21613"
},
{
"category": "external",
"summary": "SUSE Bug 1235572 for CVE-2025-21613",
"url": "https://bugzilla.suse.com/1235572"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "important"
}
],
"title": "CVE-2025-21613"
},
{
"cve": "CVE-2025-21614",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-21614"
}
],
"notes": [
{
"category": "general",
"text": "go-git is a highly extensible git implementation library written in pure Go. A denial of service (DoS) vulnerability was discovered in go-git versions prior to v5.13. This vulnerability allows an attacker to perform denial of service attacks by providing specially crafted responses from a Git server which triggers resource exhaustion in go-git clients. Users running versions of go-git from v4 and above are recommended to upgrade to v5.13 in order to mitigate this vulnerability.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-21614",
"url": "https://www.suse.com/security/cve/CVE-2025-21614"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.aarch64",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.i586",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.s390x",
"SUSE Package Hub 15 SP6:trivy-0.58.2-bp156.2.6.1.x86_64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.aarch64",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.i586",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.ppc64le",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.s390x",
"openSUSE Leap 15.6:trivy-0.58.2-bp156.2.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-07T11:01:31Z",
"details": "important"
}
],
"title": "CVE-2025-21614"
}
]
}
OPENSUSE-SU-2025:0094-1
Vulnerability from csaf_opensuse - Published: 2025-03-20 13:01 - Updated: 2025-03-20 13:01Summary
Security update for gitea-tea
Severity
Moderate
Notes
Title of the patch: Security update for gitea-tea
Description of the patch: This update for gitea-tea fixes the following issues:
- gitea-te: update newer dependencies to fix security issues (boo#1235367 boo#1239493 boo#1234598)
Patchnames: openSUSE-2025-94
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
14 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
14 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
7.5 (High)
Affected products
Recommended
14 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
References
16 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for gitea-tea",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for gitea-tea fixes the following issues:\n\n- gitea-te: update newer dependencies to fix security issues (boo#1235367 boo#1239493 boo#1234598)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-2025-94",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2025_0094-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:0094-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LKOLRH73CIQLMQ327IYGUHNSFKCU5MPI/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:0094-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LKOLRH73CIQLMQ327IYGUHNSFKCU5MPI/"
},
{
"category": "self",
"summary": "SUSE Bug 1234598",
"url": "https://bugzilla.suse.com/1234598"
},
{
"category": "self",
"summary": "SUSE Bug 1235367",
"url": "https://bugzilla.suse.com/1235367"
},
{
"category": "self",
"summary": "SUSE Bug 1239493",
"url": "https://bugzilla.suse.com/1239493"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45338 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45338/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22869 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22869/"
}
],
"title": "Security update for gitea-tea",
"tracking": {
"current_release_date": "2025-03-20T13:01:19Z",
"generator": {
"date": "2025-03-20T13:01:19Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:0094-1",
"initial_release_date": "2025-03-20T13:01:19Z",
"revision_history": [
{
"date": "2025-03-20T13:01:19Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "gitea-tea-0.9.2-bp156.5.1.aarch64",
"product": {
"name": "gitea-tea-0.9.2-bp156.5.1.aarch64",
"product_id": "gitea-tea-0.9.2-bp156.5.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "gitea-tea-0.9.2-bp156.5.1.i586",
"product": {
"name": "gitea-tea-0.9.2-bp156.5.1.i586",
"product_id": "gitea-tea-0.9.2-bp156.5.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"product": {
"name": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"product_id": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch"
}
},
{
"category": "product_version",
"name": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"product": {
"name": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"product_id": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "gitea-tea-0.9.2-bp156.5.1.ppc64le",
"product": {
"name": "gitea-tea-0.9.2-bp156.5.1.ppc64le",
"product_id": "gitea-tea-0.9.2-bp156.5.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "gitea-tea-0.9.2-bp156.5.1.s390x",
"product": {
"name": "gitea-tea-0.9.2-bp156.5.1.s390x",
"product_id": "gitea-tea-0.9.2-bp156.5.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "gitea-tea-0.9.2-bp156.5.1.x86_64",
"product": {
"name": "gitea-tea-0.9.2-bp156.5.1.x86_64",
"product_id": "gitea-tea-0.9.2-bp156.5.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Package Hub 15 SP6",
"product": {
"name": "SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6"
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.aarch64 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.aarch64",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.i586 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.i586",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.ppc64le as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.ppc64le",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.s390x as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.s390x",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.x86_64 as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.x86_64",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch"
},
"product_reference": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch as component of SUSE Package Hub 15 SP6",
"product_id": "SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
},
"product_reference": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"relates_to_product_reference": "SUSE Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.i586 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.i586",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-0.9.2-bp156.5.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64"
},
"product_reference": "gitea-tea-0.9.2-bp156.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch"
},
"product_reference": "gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
},
"product_reference": "gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-20T13:01:19Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-20T13:01:19Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
},
{
"cve": "CVE-2025-22869",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22869"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which implement file transfer protocols are vulnerable to a denial of service attack from clients which complete the key exchange slowly, or not at all, causing pending content to be read into memory, but never transmitted.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.i586",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.s390x",
"SUSE Package Hub 15 SP6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"SUSE Package Hub 15 SP6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"SUSE Package Hub 15 SP6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.aarch64",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.i586",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.ppc64le",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.s390x",
"openSUSE Leap 15.6:gitea-tea-0.9.2-bp156.5.1.x86_64",
"openSUSE Leap 15.6:gitea-tea-bash-completion-0.9.2-bp156.5.1.noarch",
"openSUSE Leap 15.6:gitea-tea-zsh-completion-0.9.2-bp156.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-20T13:01:19Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
}
]
}
OPENSUSE-SU-2025:14613-1
Vulnerability from csaf_opensuse - Published: 2025-01-01 00:00 - Updated: 2025-01-01 00:00Summary
velero-1.15.1-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: velero-1.15.1-1.1 on GA media
Description of the patch: These are all security issues fixed in the velero-1.15.1-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14613
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
16 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
References
10 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "velero-1.15.1-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the velero-1.15.1-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14613",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2025_14613-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14613-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/72PNSQCBBGVVNI7VQE3WSCUAIHCZLRVQ/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14613-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/72PNSQCBBGVVNI7VQE3WSCUAIHCZLRVQ/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45338 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45338/"
}
],
"title": "velero-1.15.1-1.1 on GA media",
"tracking": {
"current_release_date": "2025-01-01T00:00:00Z",
"generator": {
"date": "2025-01-01T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14613-1",
"initial_release_date": "2025-01-01T00:00:00Z",
"revision_history": [
{
"date": "2025-01-01T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "velero-1.15.1-1.1.aarch64",
"product": {
"name": "velero-1.15.1-1.1.aarch64",
"product_id": "velero-1.15.1-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "velero-bash-completion-1.15.1-1.1.aarch64",
"product": {
"name": "velero-bash-completion-1.15.1-1.1.aarch64",
"product_id": "velero-bash-completion-1.15.1-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "velero-fish-completion-1.15.1-1.1.aarch64",
"product": {
"name": "velero-fish-completion-1.15.1-1.1.aarch64",
"product_id": "velero-fish-completion-1.15.1-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "velero-zsh-completion-1.15.1-1.1.aarch64",
"product": {
"name": "velero-zsh-completion-1.15.1-1.1.aarch64",
"product_id": "velero-zsh-completion-1.15.1-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "velero-1.15.1-1.1.ppc64le",
"product": {
"name": "velero-1.15.1-1.1.ppc64le",
"product_id": "velero-1.15.1-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "velero-bash-completion-1.15.1-1.1.ppc64le",
"product": {
"name": "velero-bash-completion-1.15.1-1.1.ppc64le",
"product_id": "velero-bash-completion-1.15.1-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "velero-fish-completion-1.15.1-1.1.ppc64le",
"product": {
"name": "velero-fish-completion-1.15.1-1.1.ppc64le",
"product_id": "velero-fish-completion-1.15.1-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "velero-zsh-completion-1.15.1-1.1.ppc64le",
"product": {
"name": "velero-zsh-completion-1.15.1-1.1.ppc64le",
"product_id": "velero-zsh-completion-1.15.1-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "velero-1.15.1-1.1.s390x",
"product": {
"name": "velero-1.15.1-1.1.s390x",
"product_id": "velero-1.15.1-1.1.s390x"
}
},
{
"category": "product_version",
"name": "velero-bash-completion-1.15.1-1.1.s390x",
"product": {
"name": "velero-bash-completion-1.15.1-1.1.s390x",
"product_id": "velero-bash-completion-1.15.1-1.1.s390x"
}
},
{
"category": "product_version",
"name": "velero-fish-completion-1.15.1-1.1.s390x",
"product": {
"name": "velero-fish-completion-1.15.1-1.1.s390x",
"product_id": "velero-fish-completion-1.15.1-1.1.s390x"
}
},
{
"category": "product_version",
"name": "velero-zsh-completion-1.15.1-1.1.s390x",
"product": {
"name": "velero-zsh-completion-1.15.1-1.1.s390x",
"product_id": "velero-zsh-completion-1.15.1-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "velero-1.15.1-1.1.x86_64",
"product": {
"name": "velero-1.15.1-1.1.x86_64",
"product_id": "velero-1.15.1-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "velero-bash-completion-1.15.1-1.1.x86_64",
"product": {
"name": "velero-bash-completion-1.15.1-1.1.x86_64",
"product_id": "velero-bash-completion-1.15.1-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "velero-fish-completion-1.15.1-1.1.x86_64",
"product": {
"name": "velero-fish-completion-1.15.1-1.1.x86_64",
"product_id": "velero-fish-completion-1.15.1-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "velero-zsh-completion-1.15.1-1.1.x86_64",
"product": {
"name": "velero-zsh-completion-1.15.1-1.1.x86_64",
"product_id": "velero-zsh-completion-1.15.1-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-1.15.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64"
},
"product_reference": "velero-1.15.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-1.15.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le"
},
"product_reference": "velero-1.15.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-1.15.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-1.15.1-1.1.s390x"
},
"product_reference": "velero-1.15.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-1.15.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64"
},
"product_reference": "velero-1.15.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-bash-completion-1.15.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64"
},
"product_reference": "velero-bash-completion-1.15.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-bash-completion-1.15.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le"
},
"product_reference": "velero-bash-completion-1.15.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-bash-completion-1.15.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x"
},
"product_reference": "velero-bash-completion-1.15.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-bash-completion-1.15.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64"
},
"product_reference": "velero-bash-completion-1.15.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-fish-completion-1.15.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64"
},
"product_reference": "velero-fish-completion-1.15.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-fish-completion-1.15.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le"
},
"product_reference": "velero-fish-completion-1.15.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-fish-completion-1.15.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x"
},
"product_reference": "velero-fish-completion-1.15.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-fish-completion-1.15.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64"
},
"product_reference": "velero-fish-completion-1.15.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-zsh-completion-1.15.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64"
},
"product_reference": "velero-zsh-completion-1.15.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-zsh-completion-1.15.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le"
},
"product_reference": "velero-zsh-completion-1.15.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-zsh-completion-1.15.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x"
},
"product_reference": "velero-zsh-completion-1.15.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "velero-zsh-completion-1.15.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
},
"product_reference": "velero-zsh-completion-1.15.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-01T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:velero-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-bash-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-fish-completion-1.15.1-1.1.x86_64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.aarch64",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.ppc64le",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.s390x",
"openSUSE Tumbleweed:velero-zsh-completion-1.15.1-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-01T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
}
]
}
Loading…
Trend slope:
-
(linear fit over daily sighting counts)
Show additional events:
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…