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-06",
"epss": "0.32338",
"percentile": "0.96941"
},
"fkie_nvd": {
"descriptions": "[{\"lang\": \"en\", \"value\": \"Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback 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.\"}]",
"id": "CVE-2024-45337",
"lastModified": "2024-12-12T21:15:08.500",
"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}]}",
"published": "2024-12-12T02:02:07.970",
"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\"}]",
"sourceIdentifier": "security@golang.org",
"vulnStatus": "Awaiting Analysis"
},
"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-2025:14633-1
Vulnerability from csaf_opensuse - Published: 2025-01-12 00:00 - Updated: 2025-01-12 00:00Summary
grafana-11.3.0-4.1 on GA media
Severity
Moderate
Notes
Title of the patch: grafana-11.3.0-4.1 on GA media
Description of the patch: These are all security issues fixed in the grafana-11.3.0-4.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14633
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:grafana-11.3.0-4.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:grafana-11.3.0-4.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:grafana-11.3.0-4.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:grafana-11.3.0-4.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": "grafana-11.3.0-4.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the grafana-11.3.0-4.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14633",
"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_14633-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14633-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/VJK5RQOOJ3Q26ODJIGOXXYOYQDDEQ3UX/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14633-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/VJK5RQOOJ3Q26ODJIGOXXYOYQDDEQ3UX/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "grafana-11.3.0-4.1 on GA media",
"tracking": {
"current_release_date": "2025-01-12T00:00:00Z",
"generator": {
"date": "2025-01-12T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14633-1",
"initial_release_date": "2025-01-12T00:00:00Z",
"revision_history": [
{
"date": "2025-01-12T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "grafana-11.3.0-4.1.aarch64",
"product": {
"name": "grafana-11.3.0-4.1.aarch64",
"product_id": "grafana-11.3.0-4.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-11.3.0-4.1.ppc64le",
"product": {
"name": "grafana-11.3.0-4.1.ppc64le",
"product_id": "grafana-11.3.0-4.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-11.3.0-4.1.s390x",
"product": {
"name": "grafana-11.3.0-4.1.s390x",
"product_id": "grafana-11.3.0-4.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-11.3.0-4.1.x86_64",
"product": {
"name": "grafana-11.3.0-4.1.x86_64",
"product_id": "grafana-11.3.0-4.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": "grafana-11.3.0-4.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:grafana-11.3.0-4.1.aarch64"
},
"product_reference": "grafana-11.3.0-4.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-11.3.0-4.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:grafana-11.3.0-4.1.ppc64le"
},
"product_reference": "grafana-11.3.0-4.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-11.3.0-4.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:grafana-11.3.0-4.1.s390x"
},
"product_reference": "grafana-11.3.0-4.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-11.3.0-4.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:grafana-11.3.0-4.1.x86_64"
},
"product_reference": "grafana-11.3.0-4.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:grafana-11.3.0-4.1.aarch64",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.ppc64le",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.s390x",
"openSUSE Tumbleweed:grafana-11.3.0-4.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:grafana-11.3.0-4.1.aarch64",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.ppc64le",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.s390x",
"openSUSE Tumbleweed:grafana-11.3.0-4.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:grafana-11.3.0-4.1.aarch64",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.ppc64le",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.s390x",
"openSUSE Tumbleweed:grafana-11.3.0-4.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-12T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:14641-1
Vulnerability from csaf_opensuse - Published: 2025-01-13 00:00 - Updated: 2025-01-13 00:00Summary
rclone-1.69.0-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: rclone-1.69.0-1.1 on GA media
Description of the patch: These are all security issues fixed in the rclone-1.69.0-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14641
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
12 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
12 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
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": "rclone-1.69.0-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the rclone-1.69.0-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14641",
"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_14641-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14641-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/MCLAZVPDAT5UFMI67YRTRQBKGNJYHBIS/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14641-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/MCLAZVPDAT5UFMI67YRTRQBKGNJYHBIS/"
},
{
"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": "rclone-1.69.0-1.1 on GA media",
"tracking": {
"current_release_date": "2025-01-13T00:00:00Z",
"generator": {
"date": "2025-01-13T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14641-1",
"initial_release_date": "2025-01-13T00:00:00Z",
"revision_history": [
{
"date": "2025-01-13T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.69.0-1.1.aarch64",
"product": {
"name": "rclone-1.69.0-1.1.aarch64",
"product_id": "rclone-1.69.0-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "rclone-bash-completion-1.69.0-1.1.aarch64",
"product": {
"name": "rclone-bash-completion-1.69.0-1.1.aarch64",
"product_id": "rclone-bash-completion-1.69.0-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "rclone-zsh-completion-1.69.0-1.1.aarch64",
"product": {
"name": "rclone-zsh-completion-1.69.0-1.1.aarch64",
"product_id": "rclone-zsh-completion-1.69.0-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.69.0-1.1.ppc64le",
"product": {
"name": "rclone-1.69.0-1.1.ppc64le",
"product_id": "rclone-1.69.0-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "rclone-bash-completion-1.69.0-1.1.ppc64le",
"product": {
"name": "rclone-bash-completion-1.69.0-1.1.ppc64le",
"product_id": "rclone-bash-completion-1.69.0-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "rclone-zsh-completion-1.69.0-1.1.ppc64le",
"product": {
"name": "rclone-zsh-completion-1.69.0-1.1.ppc64le",
"product_id": "rclone-zsh-completion-1.69.0-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.69.0-1.1.s390x",
"product": {
"name": "rclone-1.69.0-1.1.s390x",
"product_id": "rclone-1.69.0-1.1.s390x"
}
},
{
"category": "product_version",
"name": "rclone-bash-completion-1.69.0-1.1.s390x",
"product": {
"name": "rclone-bash-completion-1.69.0-1.1.s390x",
"product_id": "rclone-bash-completion-1.69.0-1.1.s390x"
}
},
{
"category": "product_version",
"name": "rclone-zsh-completion-1.69.0-1.1.s390x",
"product": {
"name": "rclone-zsh-completion-1.69.0-1.1.s390x",
"product_id": "rclone-zsh-completion-1.69.0-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "rclone-1.69.0-1.1.x86_64",
"product": {
"name": "rclone-1.69.0-1.1.x86_64",
"product_id": "rclone-1.69.0-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "rclone-bash-completion-1.69.0-1.1.x86_64",
"product": {
"name": "rclone-bash-completion-1.69.0-1.1.x86_64",
"product_id": "rclone-bash-completion-1.69.0-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "rclone-zsh-completion-1.69.0-1.1.x86_64",
"product": {
"name": "rclone-zsh-completion-1.69.0-1.1.x86_64",
"product_id": "rclone-zsh-completion-1.69.0-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": "rclone-1.69.0-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-1.69.0-1.1.aarch64"
},
"product_reference": "rclone-1.69.0-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-1.69.0-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le"
},
"product_reference": "rclone-1.69.0-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-1.69.0-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x"
},
"product_reference": "rclone-1.69.0-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-1.69.0-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64"
},
"product_reference": "rclone-1.69.0-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-bash-completion-1.69.0-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64"
},
"product_reference": "rclone-bash-completion-1.69.0-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-bash-completion-1.69.0-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le"
},
"product_reference": "rclone-bash-completion-1.69.0-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-bash-completion-1.69.0-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x"
},
"product_reference": "rclone-bash-completion-1.69.0-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-bash-completion-1.69.0-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64"
},
"product_reference": "rclone-bash-completion-1.69.0-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-zsh-completion-1.69.0-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64"
},
"product_reference": "rclone-zsh-completion-1.69.0-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-zsh-completion-1.69.0-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le"
},
"product_reference": "rclone-zsh-completion-1.69.0-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-zsh-completion-1.69.0-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x"
},
"product_reference": "rclone-zsh-completion-1.69.0-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rclone-zsh-completion-1.69.0-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.x86_64"
},
"product_reference": "rclone-zsh-completion-1.69.0-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:rclone-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-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:rclone-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-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:rclone-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-13T00: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:rclone-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-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:rclone-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-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:rclone-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-bash-completion-1.69.0-1.1.x86_64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.aarch64",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.ppc64le",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.s390x",
"openSUSE Tumbleweed:rclone-zsh-completion-1.69.0-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-13T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45338"
}
]
}
OPENSUSE-SU-2025:14660-1
Vulnerability from csaf_opensuse - Published: 2025-01-17 00:00 - Updated: 2025-01-17 00:00Summary
golang-github-prometheus-prometheus-3.1.0-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: golang-github-prometheus-prometheus-3.1.0-1.1 on GA media
Description of the patch: These are all security issues fixed in the golang-github-prometheus-prometheus-3.1.0-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14660
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:golang-github-prometheus-prometheus-3.1.0-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-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": "golang-github-prometheus-prometheus-3.1.0-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the golang-github-prometheus-prometheus-3.1.0-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14660",
"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_14660-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14660-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LW4KB34TW645AUU7ROKPDCHUTXLGZZBG/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14660-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LW4KB34TW645AUU7ROKPDCHUTXLGZZBG/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "golang-github-prometheus-prometheus-3.1.0-1.1 on GA media",
"tracking": {
"current_release_date": "2025-01-17T00:00:00Z",
"generator": {
"date": "2025-01-17T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14660-1",
"initial_release_date": "2025-01-17T00:00:00Z",
"revision_history": [
{
"date": "2025-01-17T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.aarch64",
"product": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.aarch64",
"product_id": "golang-github-prometheus-prometheus-3.1.0-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le",
"product": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le",
"product_id": "golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.s390x",
"product": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.s390x",
"product_id": "golang-github-prometheus-prometheus-3.1.0-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.x86_64",
"product": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.x86_64",
"product_id": "golang-github-prometheus-prometheus-3.1.0-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": "golang-github-prometheus-prometheus-3.1.0-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.aarch64"
},
"product_reference": "golang-github-prometheus-prometheus-3.1.0-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le"
},
"product_reference": "golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.s390x"
},
"product_reference": "golang-github-prometheus-prometheus-3.1.0-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-3.1.0-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.x86_64"
},
"product_reference": "golang-github-prometheus-prometheus-3.1.0-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:golang-github-prometheus-prometheus-3.1.0-1.1.aarch64",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.s390x",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-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:golang-github-prometheus-prometheus-3.1.0-1.1.aarch64",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.s390x",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-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:golang-github-prometheus-prometheus-3.1.0-1.1.aarch64",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.ppc64le",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.s390x",
"openSUSE Tumbleweed:golang-github-prometheus-prometheus-3.1.0-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-17T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:14713-1
Vulnerability from csaf_opensuse - Published: 2025-01-29 00:00 - Updated: 2025-01-29 00:00Summary
trivy-0.58.2-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: trivy-0.58.2-1.1 on GA media
Description of the patch: These are all security issues fixed in the trivy-0.58.2-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14713
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
low
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64 | — |
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": "trivy-0.58.2-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the trivy-0.58.2-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14713",
"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_14713-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14713-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/JZAWXH6WKGE2WACLTZWYMHTDCJMU3X6R/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14713-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/JZAWXH6WKGE2WACLTZWYMHTDCJMU3X6R/"
},
{
"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/"
}
],
"title": "trivy-0.58.2-1.1 on GA media",
"tracking": {
"current_release_date": "2025-01-29T00:00:00Z",
"generator": {
"date": "2025-01-29T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14713-1",
"initial_release_date": "2025-01-29T00:00:00Z",
"revision_history": [
{
"date": "2025-01-29T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-1.1.aarch64",
"product": {
"name": "trivy-0.58.2-1.1.aarch64",
"product_id": "trivy-0.58.2-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-1.1.ppc64le",
"product": {
"name": "trivy-0.58.2-1.1.ppc64le",
"product_id": "trivy-0.58.2-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-1.1.s390x",
"product": {
"name": "trivy-0.58.2-1.1.s390x",
"product_id": "trivy-0.58.2-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "trivy-0.58.2-1.1.x86_64",
"product": {
"name": "trivy-0.58.2-1.1.x86_64",
"product_id": "trivy-0.58.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": "trivy-0.58.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64"
},
"product_reference": "trivy-0.58.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le"
},
"product_reference": "trivy-0.58.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x"
},
"product_reference": "trivy-0.58.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "trivy-0.58.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64"
},
"product_reference": "trivy-0.58.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"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": [
"openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-1.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": [
"openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-29T00:00:00Z",
"details": "low"
}
],
"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": [
"openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.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:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.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:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-29T00: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:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-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:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-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:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-29T00:00:00Z",
"details": "important"
}
],
"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": [
"openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-1.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": [
"openSUSE Tumbleweed:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.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:trivy-0.58.2-1.1.aarch64",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.ppc64le",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.s390x",
"openSUSE Tumbleweed:trivy-0.58.2-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-01-29T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-21613"
}
]
}
OPENSUSE-SU-2025:14902-1
Vulnerability from csaf_opensuse - Published: 2025-03-17 00:00 - Updated: 2025-03-17 00:00Summary
rime-plum-1.0.3-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: rime-plum-1.0.3-1.1 on GA media
Description of the patch: These are all security issues fixed in the rime-plum-1.0.3-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14902
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:rime-plum-1.0.3-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-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:rime-plum-1.0.3-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
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": "rime-plum-1.0.3-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the rime-plum-1.0.3-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14902",
"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_14902-1.json"
},
{
"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-2025-2161 page",
"url": "https://www.suse.com/security/cve/CVE-2025-2161/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-21613 page",
"url": "https://www.suse.com/security/cve/CVE-2025-21613/"
}
],
"title": "rime-plum-1.0.3-1.1 on GA media",
"tracking": {
"current_release_date": "2025-03-17T00:00:00Z",
"generator": {
"date": "2025-03-17T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14902-1",
"initial_release_date": "2025-03-17T00:00:00Z",
"revision_history": [
{
"date": "2025-03-17T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "rime-plum-1.0.3-1.1.aarch64",
"product": {
"name": "rime-plum-1.0.3-1.1.aarch64",
"product_id": "rime-plum-1.0.3-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "rime-plum-1.0.3-1.1.ppc64le",
"product": {
"name": "rime-plum-1.0.3-1.1.ppc64le",
"product_id": "rime-plum-1.0.3-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "rime-plum-1.0.3-1.1.s390x",
"product": {
"name": "rime-plum-1.0.3-1.1.s390x",
"product_id": "rime-plum-1.0.3-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "rime-plum-1.0.3-1.1.x86_64",
"product": {
"name": "rime-plum-1.0.3-1.1.x86_64",
"product_id": "rime-plum-1.0.3-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": "rime-plum-1.0.3-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rime-plum-1.0.3-1.1.aarch64"
},
"product_reference": "rime-plum-1.0.3-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-plum-1.0.3-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le"
},
"product_reference": "rime-plum-1.0.3-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-plum-1.0.3-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x"
},
"product_reference": "rime-plum-1.0.3-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-plum-1.0.3-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64"
},
"product_reference": "rime-plum-1.0.3-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:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-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:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-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:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-17T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2025-2161",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-2161"
}
],
"notes": [
{
"category": "general",
"text": "Pega Platform versions 7.2.1 to Infinity 24.2.1 are affected by an XSS issue with Mashup",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-2161",
"url": "https://www.suse.com/security/cve/CVE-2025-2161"
}
],
"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:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-17T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-2161"
},
{
"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": [
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.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": [
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-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:rime-plum-1.0.3-1.1.aarch64",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.ppc64le",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.s390x",
"openSUSE Tumbleweed:rime-plum-1.0.3-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-17T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-21613"
}
]
}
OPENSUSE-SU-2025:14909-1
Vulnerability from csaf_opensuse - Published: 2025-03-19 00:00 - Updated: 2025-03-19 00:00Summary
apptainer-1.3.6-5.1 on GA media
Severity
Moderate
Notes
Title of the patch: apptainer-1.3.6-5.1 on GA media
Description of the patch: These are all security issues fixed in the apptainer-1.3.6-5.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14909
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
9.9 (Critical)
Affected products
Recommended
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
critical
8.1 (High)
Affected products
Recommended
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
4.4 (Medium)
Affected products
Recommended
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
7.5 (High)
Affected products
Recommended
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
24 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": "apptainer-1.3.6-5.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the apptainer-1.3.6-5.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14909",
"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_14909-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14909-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/BIPGSRATX6BG2ZXWE7566EGQCKXLC4RV/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14909-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/BIPGSRATX6BG2ZXWE7566EGQCKXLC4RV/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-41110 page",
"url": "https://www.suse.com/security/cve/CVE-2024-41110/"
},
{
"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/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22870 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22870/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-27144 page",
"url": "https://www.suse.com/security/cve/CVE-2025-27144/"
}
],
"title": "apptainer-1.3.6-5.1 on GA media",
"tracking": {
"current_release_date": "2025-03-19T00:00:00Z",
"generator": {
"date": "2025-03-19T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14909-1",
"initial_release_date": "2025-03-19T00:00:00Z",
"revision_history": [
{
"date": "2025-03-19T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "apptainer-1.3.6-5.1.aarch64",
"product": {
"name": "apptainer-1.3.6-5.1.aarch64",
"product_id": "apptainer-1.3.6-5.1.aarch64"
}
},
{
"category": "product_version",
"name": "apptainer-leap-1.3.6-5.1.aarch64",
"product": {
"name": "apptainer-leap-1.3.6-5.1.aarch64",
"product_id": "apptainer-leap-1.3.6-5.1.aarch64"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_5-1.3.6-5.1.aarch64",
"product": {
"name": "apptainer-sle15_5-1.3.6-5.1.aarch64",
"product_id": "apptainer-sle15_5-1.3.6-5.1.aarch64"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_6-1.3.6-5.1.aarch64",
"product": {
"name": "apptainer-sle15_6-1.3.6-5.1.aarch64",
"product_id": "apptainer-sle15_6-1.3.6-5.1.aarch64"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_7-1.3.6-5.1.aarch64",
"product": {
"name": "apptainer-sle15_7-1.3.6-5.1.aarch64",
"product_id": "apptainer-sle15_7-1.3.6-5.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "apptainer-1.3.6-5.1.ppc64le",
"product": {
"name": "apptainer-1.3.6-5.1.ppc64le",
"product_id": "apptainer-1.3.6-5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "apptainer-leap-1.3.6-5.1.ppc64le",
"product": {
"name": "apptainer-leap-1.3.6-5.1.ppc64le",
"product_id": "apptainer-leap-1.3.6-5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_5-1.3.6-5.1.ppc64le",
"product": {
"name": "apptainer-sle15_5-1.3.6-5.1.ppc64le",
"product_id": "apptainer-sle15_5-1.3.6-5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_6-1.3.6-5.1.ppc64le",
"product": {
"name": "apptainer-sle15_6-1.3.6-5.1.ppc64le",
"product_id": "apptainer-sle15_6-1.3.6-5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_7-1.3.6-5.1.ppc64le",
"product": {
"name": "apptainer-sle15_7-1.3.6-5.1.ppc64le",
"product_id": "apptainer-sle15_7-1.3.6-5.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "apptainer-1.3.6-5.1.s390x",
"product": {
"name": "apptainer-1.3.6-5.1.s390x",
"product_id": "apptainer-1.3.6-5.1.s390x"
}
},
{
"category": "product_version",
"name": "apptainer-leap-1.3.6-5.1.s390x",
"product": {
"name": "apptainer-leap-1.3.6-5.1.s390x",
"product_id": "apptainer-leap-1.3.6-5.1.s390x"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_5-1.3.6-5.1.s390x",
"product": {
"name": "apptainer-sle15_5-1.3.6-5.1.s390x",
"product_id": "apptainer-sle15_5-1.3.6-5.1.s390x"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_6-1.3.6-5.1.s390x",
"product": {
"name": "apptainer-sle15_6-1.3.6-5.1.s390x",
"product_id": "apptainer-sle15_6-1.3.6-5.1.s390x"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_7-1.3.6-5.1.s390x",
"product": {
"name": "apptainer-sle15_7-1.3.6-5.1.s390x",
"product_id": "apptainer-sle15_7-1.3.6-5.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "apptainer-1.3.6-5.1.x86_64",
"product": {
"name": "apptainer-1.3.6-5.1.x86_64",
"product_id": "apptainer-1.3.6-5.1.x86_64"
}
},
{
"category": "product_version",
"name": "apptainer-leap-1.3.6-5.1.x86_64",
"product": {
"name": "apptainer-leap-1.3.6-5.1.x86_64",
"product_id": "apptainer-leap-1.3.6-5.1.x86_64"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_5-1.3.6-5.1.x86_64",
"product": {
"name": "apptainer-sle15_5-1.3.6-5.1.x86_64",
"product_id": "apptainer-sle15_5-1.3.6-5.1.x86_64"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_6-1.3.6-5.1.x86_64",
"product": {
"name": "apptainer-sle15_6-1.3.6-5.1.x86_64",
"product_id": "apptainer-sle15_6-1.3.6-5.1.x86_64"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_7-1.3.6-5.1.x86_64",
"product": {
"name": "apptainer-sle15_7-1.3.6-5.1.x86_64",
"product_id": "apptainer-sle15_7-1.3.6-5.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": "apptainer-1.3.6-5.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64"
},
"product_reference": "apptainer-1.3.6-5.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-5.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le"
},
"product_reference": "apptainer-1.3.6-5.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-5.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x"
},
"product_reference": "apptainer-1.3.6-5.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-5.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64"
},
"product_reference": "apptainer-1.3.6-5.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-leap-1.3.6-5.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64"
},
"product_reference": "apptainer-leap-1.3.6-5.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-leap-1.3.6-5.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le"
},
"product_reference": "apptainer-leap-1.3.6-5.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-leap-1.3.6-5.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x"
},
"product_reference": "apptainer-leap-1.3.6-5.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-leap-1.3.6-5.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64"
},
"product_reference": "apptainer-leap-1.3.6-5.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_5-1.3.6-5.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64"
},
"product_reference": "apptainer-sle15_5-1.3.6-5.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_5-1.3.6-5.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le"
},
"product_reference": "apptainer-sle15_5-1.3.6-5.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_5-1.3.6-5.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x"
},
"product_reference": "apptainer-sle15_5-1.3.6-5.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_5-1.3.6-5.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64"
},
"product_reference": "apptainer-sle15_5-1.3.6-5.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_6-1.3.6-5.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64"
},
"product_reference": "apptainer-sle15_6-1.3.6-5.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_6-1.3.6-5.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le"
},
"product_reference": "apptainer-sle15_6-1.3.6-5.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_6-1.3.6-5.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x"
},
"product_reference": "apptainer-sle15_6-1.3.6-5.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_6-1.3.6-5.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64"
},
"product_reference": "apptainer-sle15_6-1.3.6-5.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_7-1.3.6-5.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64"
},
"product_reference": "apptainer-sle15_7-1.3.6-5.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_7-1.3.6-5.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le"
},
"product_reference": "apptainer-sle15_7-1.3.6-5.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_7-1.3.6-5.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x"
},
"product_reference": "apptainer-sle15_7-1.3.6-5.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_7-1.3.6-5.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
},
"product_reference": "apptainer-sle15_7-1.3.6-5.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-41110",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-41110"
}
],
"notes": [
{
"category": "general",
"text": "Moby is an open-source project created by Docker for software containerization. A security vulnerability has been detected in certain versions of Docker Engine, which could allow an attacker to bypass authorization plugins (AuthZ) under specific circumstances. The base likelihood of this being exploited is low.\n\nUsing a specially-crafted API request, an Engine API client could make the daemon forward the request or response to an authorization plugin without the body. In certain circumstances, the authorization plugin may allow a request which it would have otherwise denied if the body had been forwarded to it.\n\nA security issue was discovered In 2018, where an attacker could bypass AuthZ plugins using a specially crafted API request. This could lead to unauthorized actions, including privilege escalation. Although this issue was fixed in Docker Engine v18.09.1 in January 2019, the fix was not carried forward to later major versions, resulting in a regression. Anyone who depends on authorization plugins that introspect the request and/or response body to make access control decisions is potentially impacted.\n\nDocker EE v19.03.x and all versions of Mirantis Container Runtime are not vulnerable.\n\ndocker-ce v27.1.1 containes patches to fix the vulnerability. Patches have also been merged into the master, 19.03, 20.0, 23.0, 24.0, 25.0, 26.0, and 26.1 release branches. If one is unable to upgrade immediately, avoid using AuthZ plugins and/or restrict access to the Docker API to trusted parties, following the principle of least privilege.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-41110",
"url": "https://www.suse.com/security/cve/CVE-2024-41110"
},
{
"category": "external",
"summary": "SUSE Bug 1228324 for CVE-2024-41110",
"url": "https://bugzilla.suse.com/1228324"
}
],
"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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.9,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-19T00:00:00Z",
"details": "critical"
}
],
"title": "CVE-2024-41110"
},
{
"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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-19T00: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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-19T00:00:00Z",
"details": "important"
}
],
"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": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
},
"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": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.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:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-19T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
},
{
"cve": "CVE-2025-22870",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22870"
}
],
"notes": [
{
"category": "general",
"text": "Matching of hosts against proxy patterns can improperly treat an IPv6 zone ID as a hostname component. For example, when the NO_PROXY environment variable is set to \"*.example.com\", a request to \"[::1%25.example.com]:80` will incorrectly match and not be proxied.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22870",
"url": "https://www.suse.com/security/cve/CVE-2025-22870"
},
{
"category": "external",
"summary": "SUSE Bug 1238572 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238572"
},
{
"category": "external",
"summary": "SUSE Bug 1238611 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238611"
}
],
"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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-19T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2025-22870"
},
{
"cve": "CVE-2025-27144",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-27144"
}
],
"notes": [
{
"category": "general",
"text": "Go JOSE provides an implementation of the Javascript Object Signing and Encryption set of standards in Go, including support for JSON Web Encryption (JWE), JSON Web Signature (JWS), and JSON Web Token (JWT) standards. In versions on the 4.x branch prior to version 4.0.5, when parsing compact JWS or JWE input, Go JOSE could use excessive memory. The code used strings.Split(token, \".\") to split JWT tokens, which is vulnerable to excessive memory consumption when processing maliciously crafted tokens with a large number of `.` characters. An attacker could exploit this by sending numerous malformed tokens, leading to memory exhaustion and a Denial of Service. Version 4.0.5 fixes this issue. As a workaround, applications could pre-validate that payloads passed to Go JOSE do not contain an excessive number of `.` characters.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-27144",
"url": "https://www.suse.com/security/cve/CVE-2025-27144"
},
{
"category": "external",
"summary": "SUSE Bug 1237608 for CVE-2025-27144",
"url": "https://bugzilla.suse.com/1237608"
},
{
"category": "external",
"summary": "SUSE Bug 1237609 for CVE-2025-27144",
"url": "https://bugzilla.suse.com/1237609"
}
],
"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:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.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:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-leap-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_5-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_6-1.3.6-5.1.x86_64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.aarch64",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.ppc64le",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.s390x",
"openSUSE Tumbleweed:apptainer-sle15_7-1.3.6-5.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-19T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2025-27144"
}
]
}
OPENSUSE-SU-2025:14920-1
Vulnerability from csaf_opensuse - Published: 2025-03-24 00:00 - Updated: 2025-03-24 00:00Summary
gitleaks-8.24.2-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: gitleaks-8.24.2-1.1 on GA media
Description of the patch: These are all security issues fixed in the gitleaks-8.24.2-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14920
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:gitleaks-8.24.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-8.24.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-8.24.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-8.24.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-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": "gitleaks-8.24.2-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the gitleaks-8.24.2-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14920",
"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_14920-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14920-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/OAFVZYRPJ63SNIOTJJCDPNRWHGLE355Q/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14920-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/OAFVZYRPJ63SNIOTJJCDPNRWHGLE355Q/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "gitleaks-8.24.2-1.1 on GA media",
"tracking": {
"current_release_date": "2025-03-24T00:00:00Z",
"generator": {
"date": "2025-03-24T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14920-1",
"initial_release_date": "2025-03-24T00:00:00Z",
"revision_history": [
{
"date": "2025-03-24T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "gitleaks-8.24.2-1.1.aarch64",
"product": {
"name": "gitleaks-8.24.2-1.1.aarch64",
"product_id": "gitleaks-8.24.2-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gitleaks-bash-completion-8.24.2-1.1.aarch64",
"product": {
"name": "gitleaks-bash-completion-8.24.2-1.1.aarch64",
"product_id": "gitleaks-bash-completion-8.24.2-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gitleaks-fish-completion-8.24.2-1.1.aarch64",
"product": {
"name": "gitleaks-fish-completion-8.24.2-1.1.aarch64",
"product_id": "gitleaks-fish-completion-8.24.2-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gitleaks-zsh-completion-8.24.2-1.1.aarch64",
"product": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.aarch64",
"product_id": "gitleaks-zsh-completion-8.24.2-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "gitleaks-8.24.2-1.1.ppc64le",
"product": {
"name": "gitleaks-8.24.2-1.1.ppc64le",
"product_id": "gitleaks-8.24.2-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gitleaks-bash-completion-8.24.2-1.1.ppc64le",
"product": {
"name": "gitleaks-bash-completion-8.24.2-1.1.ppc64le",
"product_id": "gitleaks-bash-completion-8.24.2-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gitleaks-fish-completion-8.24.2-1.1.ppc64le",
"product": {
"name": "gitleaks-fish-completion-8.24.2-1.1.ppc64le",
"product_id": "gitleaks-fish-completion-8.24.2-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gitleaks-zsh-completion-8.24.2-1.1.ppc64le",
"product": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.ppc64le",
"product_id": "gitleaks-zsh-completion-8.24.2-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "gitleaks-8.24.2-1.1.s390x",
"product": {
"name": "gitleaks-8.24.2-1.1.s390x",
"product_id": "gitleaks-8.24.2-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gitleaks-bash-completion-8.24.2-1.1.s390x",
"product": {
"name": "gitleaks-bash-completion-8.24.2-1.1.s390x",
"product_id": "gitleaks-bash-completion-8.24.2-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gitleaks-fish-completion-8.24.2-1.1.s390x",
"product": {
"name": "gitleaks-fish-completion-8.24.2-1.1.s390x",
"product_id": "gitleaks-fish-completion-8.24.2-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gitleaks-zsh-completion-8.24.2-1.1.s390x",
"product": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.s390x",
"product_id": "gitleaks-zsh-completion-8.24.2-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "gitleaks-8.24.2-1.1.x86_64",
"product": {
"name": "gitleaks-8.24.2-1.1.x86_64",
"product_id": "gitleaks-8.24.2-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gitleaks-bash-completion-8.24.2-1.1.x86_64",
"product": {
"name": "gitleaks-bash-completion-8.24.2-1.1.x86_64",
"product_id": "gitleaks-bash-completion-8.24.2-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gitleaks-fish-completion-8.24.2-1.1.x86_64",
"product": {
"name": "gitleaks-fish-completion-8.24.2-1.1.x86_64",
"product_id": "gitleaks-fish-completion-8.24.2-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gitleaks-zsh-completion-8.24.2-1.1.x86_64",
"product": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.x86_64",
"product_id": "gitleaks-zsh-completion-8.24.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": "gitleaks-8.24.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-8.24.2-1.1.aarch64"
},
"product_reference": "gitleaks-8.24.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-8.24.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-8.24.2-1.1.ppc64le"
},
"product_reference": "gitleaks-8.24.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-8.24.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-8.24.2-1.1.s390x"
},
"product_reference": "gitleaks-8.24.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-8.24.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-8.24.2-1.1.x86_64"
},
"product_reference": "gitleaks-8.24.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-bash-completion-8.24.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.aarch64"
},
"product_reference": "gitleaks-bash-completion-8.24.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-bash-completion-8.24.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.ppc64le"
},
"product_reference": "gitleaks-bash-completion-8.24.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-bash-completion-8.24.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.s390x"
},
"product_reference": "gitleaks-bash-completion-8.24.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-bash-completion-8.24.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.x86_64"
},
"product_reference": "gitleaks-bash-completion-8.24.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-fish-completion-8.24.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.aarch64"
},
"product_reference": "gitleaks-fish-completion-8.24.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-fish-completion-8.24.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.ppc64le"
},
"product_reference": "gitleaks-fish-completion-8.24.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-fish-completion-8.24.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.s390x"
},
"product_reference": "gitleaks-fish-completion-8.24.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-fish-completion-8.24.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.x86_64"
},
"product_reference": "gitleaks-fish-completion-8.24.2-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.aarch64"
},
"product_reference": "gitleaks-zsh-completion-8.24.2-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.ppc64le"
},
"product_reference": "gitleaks-zsh-completion-8.24.2-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.s390x"
},
"product_reference": "gitleaks-zsh-completion-8.24.2-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gitleaks-zsh-completion-8.24.2-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.x86_64"
},
"product_reference": "gitleaks-zsh-completion-8.24.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:gitleaks-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.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:gitleaks-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.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:gitleaks-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-bash-completion-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-fish-completion-8.24.2-1.1.x86_64",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.aarch64",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.ppc64le",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.s390x",
"openSUSE Tumbleweed:gitleaks-zsh-completion-8.24.2-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-24T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:14969-1
Vulnerability from csaf_opensuse - Published: 2025-04-04 00:00 - Updated: 2025-04-04 00:00Summary
google-guest-agent-20250327.01-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: google-guest-agent-20250327.01-1.1 on GA media
Description of the patch: These are all security issues fixed in the google-guest-agent-20250327.01-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-14969
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:google-guest-agent-20250327.01-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:google-guest-agent-20250327.01-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": "google-guest-agent-20250327.01-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the google-guest-agent-20250327.01-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-14969",
"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_14969-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:14969-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/HSLGKMFCTSANXEKOHC36CPS5WHI66Y6L/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:14969-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/HSLGKMFCTSANXEKOHC36CPS5WHI66Y6L/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "google-guest-agent-20250327.01-1.1 on GA media",
"tracking": {
"current_release_date": "2025-04-04T00:00:00Z",
"generator": {
"date": "2025-04-04T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:14969-1",
"initial_release_date": "2025-04-04T00:00:00Z",
"revision_history": [
{
"date": "2025-04-04T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.1.aarch64",
"product": {
"name": "google-guest-agent-20250327.01-1.1.aarch64",
"product_id": "google-guest-agent-20250327.01-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.1.ppc64le",
"product": {
"name": "google-guest-agent-20250327.01-1.1.ppc64le",
"product_id": "google-guest-agent-20250327.01-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.1.s390x",
"product": {
"name": "google-guest-agent-20250327.01-1.1.s390x",
"product_id": "google-guest-agent-20250327.01-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.1.x86_64",
"product": {
"name": "google-guest-agent-20250327.01-1.1.x86_64",
"product_id": "google-guest-agent-20250327.01-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": "google-guest-agent-20250327.01-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-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:google-guest-agent-20250327.01-1.1.aarch64",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.ppc64le",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.s390x",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-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:google-guest-agent-20250327.01-1.1.aarch64",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.ppc64le",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.s390x",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-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:google-guest-agent-20250327.01-1.1.aarch64",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.ppc64le",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.s390x",
"openSUSE Tumbleweed:google-guest-agent-20250327.01-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-04T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:15013-1
Vulnerability from csaf_opensuse - Published: 2025-04-22 00:00 - Updated: 2025-04-22 00:00Summary
gopass-1.15.16-1.1 on GA media
Severity
Moderate
Notes
Title of the patch: gopass-1.15.16-1.1 on GA media
Description of the patch: These are all security issues fixed in the gopass-1.15.16-1.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-15013
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
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:gopass-1.15.16-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-1.15.16-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-1.15.16-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-1.15.16-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:gopass-zsh-completion-1.15.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": "gopass-1.15.16-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the gopass-1.15.16-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-15013",
"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_15013-1.json"
},
{
"category": "self",
"summary": "URL for openSUSE-SU-2025:15013-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/HL46ARER7ICEJBIK62L5XG52R6FHUFHU/"
},
{
"category": "self",
"summary": "E-Mail link for openSUSE-SU-2025:15013-1",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/HL46ARER7ICEJBIK62L5XG52R6FHUFHU/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "gopass-1.15.16-1.1 on GA media",
"tracking": {
"current_release_date": "2025-04-22T00:00:00Z",
"generator": {
"date": "2025-04-22T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:15013-1",
"initial_release_date": "2025-04-22T00:00:00Z",
"revision_history": [
{
"date": "2025-04-22T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "gopass-1.15.16-1.1.aarch64",
"product": {
"name": "gopass-1.15.16-1.1.aarch64",
"product_id": "gopass-1.15.16-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gopass-bash-completion-1.15.16-1.1.aarch64",
"product": {
"name": "gopass-bash-completion-1.15.16-1.1.aarch64",
"product_id": "gopass-bash-completion-1.15.16-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gopass-fish-completion-1.15.16-1.1.aarch64",
"product": {
"name": "gopass-fish-completion-1.15.16-1.1.aarch64",
"product_id": "gopass-fish-completion-1.15.16-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gopass-impersonate-pass-1.15.16-1.1.aarch64",
"product": {
"name": "gopass-impersonate-pass-1.15.16-1.1.aarch64",
"product_id": "gopass-impersonate-pass-1.15.16-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "gopass-zsh-completion-1.15.16-1.1.aarch64",
"product": {
"name": "gopass-zsh-completion-1.15.16-1.1.aarch64",
"product_id": "gopass-zsh-completion-1.15.16-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "gopass-1.15.16-1.1.ppc64le",
"product": {
"name": "gopass-1.15.16-1.1.ppc64le",
"product_id": "gopass-1.15.16-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gopass-bash-completion-1.15.16-1.1.ppc64le",
"product": {
"name": "gopass-bash-completion-1.15.16-1.1.ppc64le",
"product_id": "gopass-bash-completion-1.15.16-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gopass-fish-completion-1.15.16-1.1.ppc64le",
"product": {
"name": "gopass-fish-completion-1.15.16-1.1.ppc64le",
"product_id": "gopass-fish-completion-1.15.16-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gopass-impersonate-pass-1.15.16-1.1.ppc64le",
"product": {
"name": "gopass-impersonate-pass-1.15.16-1.1.ppc64le",
"product_id": "gopass-impersonate-pass-1.15.16-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "gopass-zsh-completion-1.15.16-1.1.ppc64le",
"product": {
"name": "gopass-zsh-completion-1.15.16-1.1.ppc64le",
"product_id": "gopass-zsh-completion-1.15.16-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "gopass-1.15.16-1.1.s390x",
"product": {
"name": "gopass-1.15.16-1.1.s390x",
"product_id": "gopass-1.15.16-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gopass-bash-completion-1.15.16-1.1.s390x",
"product": {
"name": "gopass-bash-completion-1.15.16-1.1.s390x",
"product_id": "gopass-bash-completion-1.15.16-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gopass-fish-completion-1.15.16-1.1.s390x",
"product": {
"name": "gopass-fish-completion-1.15.16-1.1.s390x",
"product_id": "gopass-fish-completion-1.15.16-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gopass-impersonate-pass-1.15.16-1.1.s390x",
"product": {
"name": "gopass-impersonate-pass-1.15.16-1.1.s390x",
"product_id": "gopass-impersonate-pass-1.15.16-1.1.s390x"
}
},
{
"category": "product_version",
"name": "gopass-zsh-completion-1.15.16-1.1.s390x",
"product": {
"name": "gopass-zsh-completion-1.15.16-1.1.s390x",
"product_id": "gopass-zsh-completion-1.15.16-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "gopass-1.15.16-1.1.x86_64",
"product": {
"name": "gopass-1.15.16-1.1.x86_64",
"product_id": "gopass-1.15.16-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gopass-bash-completion-1.15.16-1.1.x86_64",
"product": {
"name": "gopass-bash-completion-1.15.16-1.1.x86_64",
"product_id": "gopass-bash-completion-1.15.16-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gopass-fish-completion-1.15.16-1.1.x86_64",
"product": {
"name": "gopass-fish-completion-1.15.16-1.1.x86_64",
"product_id": "gopass-fish-completion-1.15.16-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gopass-impersonate-pass-1.15.16-1.1.x86_64",
"product": {
"name": "gopass-impersonate-pass-1.15.16-1.1.x86_64",
"product_id": "gopass-impersonate-pass-1.15.16-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "gopass-zsh-completion-1.15.16-1.1.x86_64",
"product": {
"name": "gopass-zsh-completion-1.15.16-1.1.x86_64",
"product_id": "gopass-zsh-completion-1.15.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": "gopass-1.15.16-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-1.15.16-1.1.aarch64"
},
"product_reference": "gopass-1.15.16-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-1.15.16-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-1.15.16-1.1.ppc64le"
},
"product_reference": "gopass-1.15.16-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-1.15.16-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-1.15.16-1.1.s390x"
},
"product_reference": "gopass-1.15.16-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-1.15.16-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-1.15.16-1.1.x86_64"
},
"product_reference": "gopass-1.15.16-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-bash-completion-1.15.16-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.aarch64"
},
"product_reference": "gopass-bash-completion-1.15.16-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-bash-completion-1.15.16-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.ppc64le"
},
"product_reference": "gopass-bash-completion-1.15.16-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-bash-completion-1.15.16-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.s390x"
},
"product_reference": "gopass-bash-completion-1.15.16-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-bash-completion-1.15.16-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.x86_64"
},
"product_reference": "gopass-bash-completion-1.15.16-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-fish-completion-1.15.16-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.aarch64"
},
"product_reference": "gopass-fish-completion-1.15.16-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-fish-completion-1.15.16-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.ppc64le"
},
"product_reference": "gopass-fish-completion-1.15.16-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-fish-completion-1.15.16-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.s390x"
},
"product_reference": "gopass-fish-completion-1.15.16-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-fish-completion-1.15.16-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.x86_64"
},
"product_reference": "gopass-fish-completion-1.15.16-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-impersonate-pass-1.15.16-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.aarch64"
},
"product_reference": "gopass-impersonate-pass-1.15.16-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-impersonate-pass-1.15.16-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.ppc64le"
},
"product_reference": "gopass-impersonate-pass-1.15.16-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-impersonate-pass-1.15.16-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.s390x"
},
"product_reference": "gopass-impersonate-pass-1.15.16-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-impersonate-pass-1.15.16-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.x86_64"
},
"product_reference": "gopass-impersonate-pass-1.15.16-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-zsh-completion-1.15.16-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.aarch64"
},
"product_reference": "gopass-zsh-completion-1.15.16-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-zsh-completion-1.15.16-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.ppc64le"
},
"product_reference": "gopass-zsh-completion-1.15.16-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-zsh-completion-1.15.16-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.s390x"
},
"product_reference": "gopass-zsh-completion-1.15.16-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "gopass-zsh-completion-1.15.16-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.x86_64"
},
"product_reference": "gopass-zsh-completion-1.15.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:gopass-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.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:gopass-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.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:gopass-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-bash-completion-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-fish-completion-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-impersonate-pass-1.15.16-1.1.x86_64",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.aarch64",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.ppc64le",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.s390x",
"openSUSE Tumbleweed:gopass-zsh-completion-1.15.16-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
OPENSUSE-SU-2025:15463-1
Vulnerability from csaf_opensuse - Published: 2025-08-19 00:00 - Updated: 2025-08-19 00:00Summary
docker-machine-driver-kvm2-1.36.0-2.1 on GA media
Severity
Moderate
Notes
Title of the patch: docker-machine-driver-kvm2-1.36.0-2.1 on GA media
Description of the patch: These are all security issues fixed in the docker-machine-driver-kvm2-1.36.0-2.1 package on the GA media of openSUSE Tumbleweed.
Patchnames: openSUSE-Tumbleweed-2025-15463
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
20 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-1.36.0-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-1.36.0-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-1.36.0-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-1.36.0-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.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": "docker-machine-driver-kvm2-1.36.0-2.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the docker-machine-driver-kvm2-1.36.0-2.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2025-15463",
"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_15463-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "docker-machine-driver-kvm2-1.36.0-2.1 on GA media",
"tracking": {
"current_release_date": "2025-08-19T00:00:00Z",
"generator": {
"date": "2025-08-19T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2025:15463-1",
"initial_release_date": "2025-08-19T00:00:00Z",
"revision_history": [
{
"date": "2025-08-19T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "docker-machine-driver-kvm2-1.36.0-2.1.aarch64",
"product": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.aarch64",
"product_id": "docker-machine-driver-kvm2-1.36.0-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "minikube-1.36.0-2.1.aarch64",
"product": {
"name": "minikube-1.36.0-2.1.aarch64",
"product_id": "minikube-1.36.0-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "minikube-bash-completion-1.36.0-2.1.aarch64",
"product": {
"name": "minikube-bash-completion-1.36.0-2.1.aarch64",
"product_id": "minikube-bash-completion-1.36.0-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "minikube-fish-completion-1.36.0-2.1.aarch64",
"product": {
"name": "minikube-fish-completion-1.36.0-2.1.aarch64",
"product_id": "minikube-fish-completion-1.36.0-2.1.aarch64"
}
},
{
"category": "product_version",
"name": "minikube-zsh-completion-1.36.0-2.1.aarch64",
"product": {
"name": "minikube-zsh-completion-1.36.0-2.1.aarch64",
"product_id": "minikube-zsh-completion-1.36.0-2.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "docker-machine-driver-kvm2-1.36.0-2.1.ppc64le",
"product": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.ppc64le",
"product_id": "docker-machine-driver-kvm2-1.36.0-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "minikube-1.36.0-2.1.ppc64le",
"product": {
"name": "minikube-1.36.0-2.1.ppc64le",
"product_id": "minikube-1.36.0-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "minikube-bash-completion-1.36.0-2.1.ppc64le",
"product": {
"name": "minikube-bash-completion-1.36.0-2.1.ppc64le",
"product_id": "minikube-bash-completion-1.36.0-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "minikube-fish-completion-1.36.0-2.1.ppc64le",
"product": {
"name": "minikube-fish-completion-1.36.0-2.1.ppc64le",
"product_id": "minikube-fish-completion-1.36.0-2.1.ppc64le"
}
},
{
"category": "product_version",
"name": "minikube-zsh-completion-1.36.0-2.1.ppc64le",
"product": {
"name": "minikube-zsh-completion-1.36.0-2.1.ppc64le",
"product_id": "minikube-zsh-completion-1.36.0-2.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "docker-machine-driver-kvm2-1.36.0-2.1.s390x",
"product": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.s390x",
"product_id": "docker-machine-driver-kvm2-1.36.0-2.1.s390x"
}
},
{
"category": "product_version",
"name": "minikube-1.36.0-2.1.s390x",
"product": {
"name": "minikube-1.36.0-2.1.s390x",
"product_id": "minikube-1.36.0-2.1.s390x"
}
},
{
"category": "product_version",
"name": "minikube-bash-completion-1.36.0-2.1.s390x",
"product": {
"name": "minikube-bash-completion-1.36.0-2.1.s390x",
"product_id": "minikube-bash-completion-1.36.0-2.1.s390x"
}
},
{
"category": "product_version",
"name": "minikube-fish-completion-1.36.0-2.1.s390x",
"product": {
"name": "minikube-fish-completion-1.36.0-2.1.s390x",
"product_id": "minikube-fish-completion-1.36.0-2.1.s390x"
}
},
{
"category": "product_version",
"name": "minikube-zsh-completion-1.36.0-2.1.s390x",
"product": {
"name": "minikube-zsh-completion-1.36.0-2.1.s390x",
"product_id": "minikube-zsh-completion-1.36.0-2.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "docker-machine-driver-kvm2-1.36.0-2.1.x86_64",
"product": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.x86_64",
"product_id": "docker-machine-driver-kvm2-1.36.0-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "minikube-1.36.0-2.1.x86_64",
"product": {
"name": "minikube-1.36.0-2.1.x86_64",
"product_id": "minikube-1.36.0-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "minikube-bash-completion-1.36.0-2.1.x86_64",
"product": {
"name": "minikube-bash-completion-1.36.0-2.1.x86_64",
"product_id": "minikube-bash-completion-1.36.0-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "minikube-fish-completion-1.36.0-2.1.x86_64",
"product": {
"name": "minikube-fish-completion-1.36.0-2.1.x86_64",
"product_id": "minikube-fish-completion-1.36.0-2.1.x86_64"
}
},
{
"category": "product_version",
"name": "minikube-zsh-completion-1.36.0-2.1.x86_64",
"product": {
"name": "minikube-zsh-completion-1.36.0-2.1.x86_64",
"product_id": "minikube-zsh-completion-1.36.0-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": "docker-machine-driver-kvm2-1.36.0-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.aarch64"
},
"product_reference": "docker-machine-driver-kvm2-1.36.0-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.ppc64le"
},
"product_reference": "docker-machine-driver-kvm2-1.36.0-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.s390x"
},
"product_reference": "docker-machine-driver-kvm2-1.36.0-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "docker-machine-driver-kvm2-1.36.0-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.x86_64"
},
"product_reference": "docker-machine-driver-kvm2-1.36.0-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-1.36.0-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-1.36.0-2.1.aarch64"
},
"product_reference": "minikube-1.36.0-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-1.36.0-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-1.36.0-2.1.ppc64le"
},
"product_reference": "minikube-1.36.0-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-1.36.0-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-1.36.0-2.1.s390x"
},
"product_reference": "minikube-1.36.0-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-1.36.0-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-1.36.0-2.1.x86_64"
},
"product_reference": "minikube-1.36.0-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-bash-completion-1.36.0-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.aarch64"
},
"product_reference": "minikube-bash-completion-1.36.0-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-bash-completion-1.36.0-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.ppc64le"
},
"product_reference": "minikube-bash-completion-1.36.0-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-bash-completion-1.36.0-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.s390x"
},
"product_reference": "minikube-bash-completion-1.36.0-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-bash-completion-1.36.0-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.x86_64"
},
"product_reference": "minikube-bash-completion-1.36.0-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-fish-completion-1.36.0-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.aarch64"
},
"product_reference": "minikube-fish-completion-1.36.0-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-fish-completion-1.36.0-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.ppc64le"
},
"product_reference": "minikube-fish-completion-1.36.0-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-fish-completion-1.36.0-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.s390x"
},
"product_reference": "minikube-fish-completion-1.36.0-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-fish-completion-1.36.0-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.x86_64"
},
"product_reference": "minikube-fish-completion-1.36.0-2.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-zsh-completion-1.36.0-2.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.aarch64"
},
"product_reference": "minikube-zsh-completion-1.36.0-2.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-zsh-completion-1.36.0-2.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.ppc64le"
},
"product_reference": "minikube-zsh-completion-1.36.0-2.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-zsh-completion-1.36.0-2.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.s390x"
},
"product_reference": "minikube-zsh-completion-1.36.0-2.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "minikube-zsh-completion-1.36.0-2.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.x86_64"
},
"product_reference": "minikube-zsh-completion-1.36.0-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:docker-machine-driver-kvm2-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-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:docker-machine-driver-kvm2-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-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:docker-machine-driver-kvm2-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:docker-machine-driver-kvm2-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-bash-completion-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-fish-completion-1.36.0-2.1.x86_64",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.aarch64",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.ppc64le",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.s390x",
"openSUSE Tumbleweed:minikube-zsh-completion-1.36.0-2.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-08-19T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
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…