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-17",
"epss": "0.03092",
"percentile": "0.86016"
},
"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"
}
}
}
SUSE-SU-2025:0525-1
Vulnerability from csaf_suse - Published: 2025-02-14 07:18 - Updated: 2025-02-14 07:18Summary
Security update for SUSE Manager Client Tools
Severity
Moderate
Notes
Title of the patch: Security update for SUSE Manager Client Tools
Description of the patch: This update fixes the following issues:
dracut-saltboot was updated to version 0.1.1728559936.c16d4fb:
- Added MAC based terminal naming option (jsc#SUMA-314)
golang-github-prometheus-prometheus was updated from version 2.45.6 to 2.53.3 (jsc#PED-11649):
- Security issues fixed:
* CVE-2024-51744: Updated golang-jwt to version 5.0 to fix bad error
handling (bsc#1232970)
- Highlights of other changes:
* Performance:
+ Significant enhancements to PromQL execution speed, TSDB operations (especially querying and compaction) and
remote write operations.
+ Default GOGC value lowered to 75 for better memory management.
+ Option to limit memory usage from dropped targets added.
* New Features:
+ Experimental OpenTelemetry ingestion.
+ Automatic memory limit handling.
+ Native histogram support, including new functions, UI enhancements, and improved scraping.
+ Improved alerting features, such as relabeling rules for AlertmanagerConfig and a new query_offset option.
+ Expanded service discovery options with added metadata and support for new services.
+ New promtool commands for PromQL formatting, label manipulation, metric pushing, and OpenMetrics dumping.
* Bug Fixes:
+ Numerous fixes across scraping, API, TSDB, PromQL, and service discovery.
* For a detailed list of changes consult the package changelog or
https://github.com/prometheus/prometheus/compare/v2.45.6...v2.53.3
grafana was updated from version 9.5.18 to 10.4.13 (jsc#PED-11591,jsc#PED-11649):
- Security issues fixed:
* CVE-2024-45337: Prevent possible misuse of ServerConfig.PublicKeyCallback by upgrading
golang.org/x/crypto (bsc#1234554)
* CVE-2023-3128: Fixed authentication bypass using Azure AD OAuth (bsc#1212641)
* CVE-2023-6152: Add email verification when updating user email (bsc#1219912)
* CVE-2024-6837: Fixed potential data source permission escalation (bsc#1236301)
* CVE-2024-8118: Fixed permission on external alerting rule write endpoint (bsc#1231024)
- Potential breaking changes in version 10:
* In panels using the `extract fields` transformation, where one
of the extracted names collides with one of the already
existing ields, the extracted field will be renamed.
* For the existing backend mode users who have table
visualization might see some inconsistencies on their panels.
We have updated the table column naming. This will
potentially affect field transformations and/or field
overrides. To resolve this either: update transformation or
field override.
* For the existing backend mode users who have Transformations
with the `time` field, might see their transformations are
not working. Those panels that have broken transformations
will fail to render. This is because we changed the field
key. To resolve this either: Remove the affected panel and
re-create it; Select the `Time` field again; Edit the `time`
field as `Time` for transformation in `panel.json` or
`dashboard.json`
* The following data source permission endpoints have been removed:
`GET /datasources/:datasourceId/permissions`
`POST /api/datasources/:datasourceId/permissions`
`DELETE /datasources/:datasourceId/permissions`
`POST /datasources/:datasourceId/enable-permissions`
`POST /datasources/:datasourceId/disable-permissions`
+ Please use the following endpoints instead:
`GET /api/access-control/datasources/:uid` for listing data
source permissions
`POST /api/access-control/datasources/:uid/users/:id`,
`POST /api/access-control/datasources/:uid/teams/:id` and
`POST /api/access-control/datasources/:uid/buildInRoles/:id`
for adding or removing data source permissions
* If you are using Terraform Grafana provider to manage data source permissions, you will need to upgrade your
provider.
* For the existing backend mode users who have table visualization might see some inconsistencies on their panels.
We have updated the table column naming. This will potentially affect field transformations and/or field overrides.
* The deprecated `/playlists/{uid}/dashboards` API endpoint has been removed.
Dashboard information can be retrieved from the `/dashboard/...` APIs.
* The `PUT /api/folders/:uid` endpoint no more supports modifying the folder's `UID`
* Removed all components for the old panel header design.
* Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-3/
for more details
* OAuth role mapping enforcement: This change impacts GitHub,
Gitlab, Okta, and Generic OAuth. To avoid overriding manually
set roles, enable the skip_org_role_sync option in the
Grafana configuration for your OAuth provider before
upgrading
* Angular has been deprecated
* Grafana legacy alerting has been deprecated
* API keys are migrating to service accounts
* The experimental “dashboard previews” feature is removed
* Usernames are now case-insensitive by default
* Grafana OAuth integrations do not work anymore with email lookups
* The “Alias” field in the CloudWatch data source is removed
* Athena data source plugin must be updated to version >=2.9.3
* Redshift data source plugin must be updated to version >=1.8.3
* DoiT International BigQuery plugin no longer supported
* Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-0
for more details
- This update brings many new features, enhancements and fixes highlighted at:
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-4/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-3/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-2/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-1/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-0/:
spacecmd was updated to version 5.0.11-0:
- Updated translation strings
supportutils-plugin-salt was updated to version 1.2.3:
- Adjusted requirements for plugin to allow compatibility with supportutils 3.2.9 release (bsc#1235145)
- Provide backwards-compatible scripts version
supportutils-plugin-susemanager-client was updated to version 5.0.4-0:
- Adjusted requirements for plugin to allow compatibility with supportutils 3.2.9 release (bsc#1235145)
uyuni-tools was updated from version 0.1.23-0 to 0.1.27-0:
- Security issues fixed:
* CVE-2024-22037: Use podman secret to store the database credentials (bsc#1231497)
- Other changes and bugs fixed:
* Version 0.1.27-0
+ Bump the default image tag to 5.0.3
+ IsInstalled function fix
+ Run systemctl daemon-reload after changing the container image config (bsc#1233279)
+ Coco-replicas-upgrade
+ Persist search server indexes (bsc#1231759)
+ Sync deletes files during migration (bsc#1233660)
+ Ignore coco and hub images when applying PTF if they are not ailable (bsc#1229079)
+ Add --registry back to mgrpxy (bsc#1233202)
+ Only add java.hostname on migrated server if not present
+ Consider the configuration file to detect the coco or hub api images should be pulled (bsc#1229104)
+ Only raise an error if cloudguestregistryauth fails for PAYG (bsc#1233630)
+ Add registry.suse.com login to mgradm upgrade podman list (bsc#1234123)
* Version 0.1.26-0
+ Ignore all zypper caches during migration (bsc#1232769)
+ Use the uyuni network for all podman containers (bsc#1232817)
* Version 0.1.25-0
+ Don't migrate enabled systemd services, recreate them (bsc#1232575)
* Version 0.1.24-0
+ Redact JSESSIONID and pxt-session-cookie values from logs and
console output (bsc#1231568)
Patchnames: SUSE-2025-525,SUSE-SLE-Manager-Tools-15-2025-525,SUSE-SLE-Manager-Tools-For-Micro-5-2025-525,SUSE-SLE-Module-Basesystem-15-SP6-2025-525,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-525,SUSE-SLE-Product-HPC-15-SP3-LTSS-2025-525,SUSE-SLE-Product-HPC-15-SP4-ESPOS-2025-525,SUSE-SLE-Product-HPC-15-SP4-LTSS-2025-525,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2025-525,SUSE-SLE-Product-HPC-15-SP5-LTSS-2025-525,SUSE-SLE-Product-SLES-15-SP3-LTSS-2025-525,SUSE-SLE-Product-SLES-15-SP4-LTSS-2025-525,SUSE-SLE-Product-SLES-15-SP5-LTSS-2025-525,SUSE-SLE-Product-SLES_SAP-15-SP3-2025-525,SUSE-SLE-Product-SLES_SAP-15-SP4-2025-525,SUSE-SLE-Product-SLES_SAP-15-SP5-2025-525,SUSE-SLE-Product-SUSE-Manager-Proxy-4.3-2025-525,SUSE-SLE-Product-SUSE-Manager-Server-4.3-2025-525,SUSE-Storage-7.1-2025-525,openSUSE-SLE-15.6-2025-525
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.4 (Critical)
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
critical
5.4 (Medium)
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
5.5 (Medium)
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
5.4 (Medium)
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
4.7 (Medium)
Affected products
Recommended
57 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
References
45 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for SUSE Manager Client Tools",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update fixes the following issues:\n\ndracut-saltboot was updated to version 0.1.1728559936.c16d4fb:\n\n- Added MAC based terminal naming option (jsc#SUMA-314)\n\ngolang-github-prometheus-prometheus was updated from version 2.45.6 to 2.53.3 (jsc#PED-11649):\n\n- Security issues fixed:\n * CVE-2024-51744: Updated golang-jwt to version 5.0 to fix bad error\n handling (bsc#1232970)\n\n- Highlights of other changes:\n * Performance: \n + Significant enhancements to PromQL execution speed, TSDB operations (especially querying and compaction) and \n remote write operations.\n + Default GOGC value lowered to 75 for better memory management. \n + Option to limit memory usage from dropped targets added.\n * New Features:\n + Experimental OpenTelemetry ingestion.\n + Automatic memory limit handling.\n + Native histogram support, including new functions, UI enhancements, and improved scraping.\n + Improved alerting features, such as relabeling rules for AlertmanagerConfig and a new query_offset option.\n + Expanded service discovery options with added metadata and support for new services.\n + New promtool commands for PromQL formatting, label manipulation, metric pushing, and OpenMetrics dumping.\n * Bug Fixes: \n + Numerous fixes across scraping, API, TSDB, PromQL, and service discovery.\n * For a detailed list of changes consult the package changelog or \n https://github.com/prometheus/prometheus/compare/v2.45.6...v2.53.3\n\ngrafana was updated from version 9.5.18 to 10.4.13 (jsc#PED-11591,jsc#PED-11649):\n\n- Security issues fixed:\n * CVE-2024-45337: Prevent possible misuse of ServerConfig.PublicKeyCallback by upgrading \n golang.org/x/crypto (bsc#1234554)\n * CVE-2023-3128: Fixed authentication bypass using Azure AD OAuth (bsc#1212641)\n * CVE-2023-6152: Add email verification when updating user email (bsc#1219912)\n * CVE-2024-6837: Fixed potential data source permission escalation (bsc#1236301)\n * CVE-2024-8118: Fixed permission on external alerting rule write endpoint (bsc#1231024)\n\n- Potential breaking changes in version 10:\n * In panels using the `extract fields` transformation, where one\n of the extracted names collides with one of the already\n existing ields, the extracted field will be renamed.\n * For the existing backend mode users who have table\n visualization might see some inconsistencies on their panels.\n We have updated the table column naming. This will\n potentially affect field transformations and/or field\n overrides. To resolve this either: update transformation or\n field override.\n * For the existing backend mode users who have Transformations\n with the `time` field, might see their transformations are\n not working. Those panels that have broken transformations\n will fail to render. This is because we changed the field\n key. To resolve this either: Remove the affected panel and\n re-create it; Select the `Time` field again; Edit the `time`\n field as `Time` for transformation in `panel.json` or\n `dashboard.json` \n * The following data source permission endpoints have been removed:\n `GET /datasources/:datasourceId/permissions`\n `POST /api/datasources/:datasourceId/permissions`\n `DELETE /datasources/:datasourceId/permissions`\n `POST /datasources/:datasourceId/enable-permissions`\n `POST /datasources/:datasourceId/disable-permissions`\n + Please use the following endpoints instead:\n `GET /api/access-control/datasources/:uid` for listing data\n source permissions\n `POST /api/access-control/datasources/:uid/users/:id`,\n `POST /api/access-control/datasources/:uid/teams/:id` and\n `POST /api/access-control/datasources/:uid/buildInRoles/:id` \n for adding or removing data source permissions\n * If you are using Terraform Grafana provider to manage data source permissions, you will need to upgrade your\n provider.\n * For the existing backend mode users who have table visualization might see some inconsistencies on their panels. \n We have updated the table column naming. This will potentially affect field transformations and/or field overrides.\n * The deprecated `/playlists/{uid}/dashboards` API endpoint has been removed. \n Dashboard information can be retrieved from the `/dashboard/...` APIs.\n * The `PUT /api/folders/:uid` endpoint no more supports modifying the folder\u0027s `UID`\n * Removed all components for the old panel header design.\n * Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-3/\n for more details\n * OAuth role mapping enforcement: This change impacts GitHub,\n Gitlab, Okta, and Generic OAuth. To avoid overriding manually\n set roles, enable the skip_org_role_sync option in the\n Grafana configuration for your OAuth provider before\n upgrading\n * Angular has been deprecated\n * Grafana legacy alerting has been deprecated\n * API keys are migrating to service accounts\n * The experimental \u201cdashboard previews\u201d feature is removed\n * Usernames are now case-insensitive by default\n * Grafana OAuth integrations do not work anymore with email lookups\n * The \u201cAlias\u201d field in the CloudWatch data source is removed\n * Athena data source plugin must be updated to version \u003e=2.9.3\n * Redshift data source plugin must be updated to version \u003e=1.8.3\n * DoiT International BigQuery plugin no longer supported\n * Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-0\n for more details\n\n- This update brings many new features, enhancements and fixes highlighted at:\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-4/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-3/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-2/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-1/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-0/:\n\nspacecmd was updated to version 5.0.11-0:\n\n- Updated translation strings\n\nsupportutils-plugin-salt was updated to version 1.2.3:\n\n- Adjusted requirements for plugin to allow compatibility with supportutils 3.2.9 release (bsc#1235145)\n- Provide backwards-compatible scripts version\n\nsupportutils-plugin-susemanager-client was updated to version 5.0.4-0:\n\n- Adjusted requirements for plugin to allow compatibility with supportutils 3.2.9 release (bsc#1235145)\n\nuyuni-tools was updated from version 0.1.23-0 to 0.1.27-0:\n\n- Security issues fixed:\n * CVE-2024-22037: Use podman secret to store the database credentials (bsc#1231497)\n- Other changes and bugs fixed:\n * Version 0.1.27-0\n + Bump the default image tag to 5.0.3\n + IsInstalled function fix\n + Run systemctl daemon-reload after changing the container image config (bsc#1233279)\n + Coco-replicas-upgrade\n + Persist search server indexes (bsc#1231759)\n + Sync deletes files during migration (bsc#1233660)\n + Ignore coco and hub images when applying PTF if they are not ailable (bsc#1229079)\n + Add --registry back to mgrpxy (bsc#1233202)\n + Only add java.hostname on migrated server if not present\n + Consider the configuration file to detect the coco or hub api images should be pulled (bsc#1229104)\n + Only raise an error if cloudguestregistryauth fails for PAYG (bsc#1233630)\n + Add registry.suse.com login to mgradm upgrade podman list (bsc#1234123)\n * Version 0.1.26-0\n + Ignore all zypper caches during migration (bsc#1232769)\n + Use the uyuni network for all podman containers (bsc#1232817)\n * Version 0.1.25-0\n + Don\u0027t migrate enabled systemd services, recreate them (bsc#1232575)\n * Version 0.1.24-0\n + Redact JSESSIONID and pxt-session-cookie values from logs and\n console output (bsc#1231568)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-525,SUSE-SLE-Manager-Tools-15-2025-525,SUSE-SLE-Manager-Tools-For-Micro-5-2025-525,SUSE-SLE-Module-Basesystem-15-SP6-2025-525,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-525,SUSE-SLE-Product-HPC-15-SP3-LTSS-2025-525,SUSE-SLE-Product-HPC-15-SP4-ESPOS-2025-525,SUSE-SLE-Product-HPC-15-SP4-LTSS-2025-525,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2025-525,SUSE-SLE-Product-HPC-15-SP5-LTSS-2025-525,SUSE-SLE-Product-SLES-15-SP3-LTSS-2025-525,SUSE-SLE-Product-SLES-15-SP4-LTSS-2025-525,SUSE-SLE-Product-SLES-15-SP5-LTSS-2025-525,SUSE-SLE-Product-SLES_SAP-15-SP3-2025-525,SUSE-SLE-Product-SLES_SAP-15-SP4-2025-525,SUSE-SLE-Product-SLES_SAP-15-SP5-2025-525,SUSE-SLE-Product-SUSE-Manager-Proxy-4.3-2025-525,SUSE-SLE-Product-SUSE-Manager-Server-4.3-2025-525,SUSE-Storage-7.1-2025-525,openSUSE-SLE-15.6-2025-525",
"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/suse-su-2025_0525-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:0525-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20250525-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:0525-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020347.html"
},
{
"category": "self",
"summary": "SUSE Bug 1212641",
"url": "https://bugzilla.suse.com/1212641"
},
{
"category": "self",
"summary": "SUSE Bug 1219912",
"url": "https://bugzilla.suse.com/1219912"
},
{
"category": "self",
"summary": "SUSE Bug 1229079",
"url": "https://bugzilla.suse.com/1229079"
},
{
"category": "self",
"summary": "SUSE Bug 1229104",
"url": "https://bugzilla.suse.com/1229104"
},
{
"category": "self",
"summary": "SUSE Bug 1231024",
"url": "https://bugzilla.suse.com/1231024"
},
{
"category": "self",
"summary": "SUSE Bug 1231497",
"url": "https://bugzilla.suse.com/1231497"
},
{
"category": "self",
"summary": "SUSE Bug 1231568",
"url": "https://bugzilla.suse.com/1231568"
},
{
"category": "self",
"summary": "SUSE Bug 1231759",
"url": "https://bugzilla.suse.com/1231759"
},
{
"category": "self",
"summary": "SUSE Bug 1232575",
"url": "https://bugzilla.suse.com/1232575"
},
{
"category": "self",
"summary": "SUSE Bug 1232769",
"url": "https://bugzilla.suse.com/1232769"
},
{
"category": "self",
"summary": "SUSE Bug 1232817",
"url": "https://bugzilla.suse.com/1232817"
},
{
"category": "self",
"summary": "SUSE Bug 1232970",
"url": "https://bugzilla.suse.com/1232970"
},
{
"category": "self",
"summary": "SUSE Bug 1233202",
"url": "https://bugzilla.suse.com/1233202"
},
{
"category": "self",
"summary": "SUSE Bug 1233279",
"url": "https://bugzilla.suse.com/1233279"
},
{
"category": "self",
"summary": "SUSE Bug 1233630",
"url": "https://bugzilla.suse.com/1233630"
},
{
"category": "self",
"summary": "SUSE Bug 1233660",
"url": "https://bugzilla.suse.com/1233660"
},
{
"category": "self",
"summary": "SUSE Bug 1234123",
"url": "https://bugzilla.suse.com/1234123"
},
{
"category": "self",
"summary": "SUSE Bug 1234554",
"url": "https://bugzilla.suse.com/1234554"
},
{
"category": "self",
"summary": "SUSE Bug 1235145",
"url": "https://bugzilla.suse.com/1235145"
},
{
"category": "self",
"summary": "SUSE Bug 1236301",
"url": "https://bugzilla.suse.com/1236301"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-3128 page",
"url": "https://www.suse.com/security/cve/CVE-2023-3128/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-6152 page",
"url": "https://www.suse.com/security/cve/CVE-2023-6152/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-22037 page",
"url": "https://www.suse.com/security/cve/CVE-2024-22037/"
},
{
"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-51744 page",
"url": "https://www.suse.com/security/cve/CVE-2024-51744/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-6837 page",
"url": "https://www.suse.com/security/cve/CVE-2024-6837/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-8118 page",
"url": "https://www.suse.com/security/cve/CVE-2024-8118/"
}
],
"title": "Security update for SUSE Manager Client Tools",
"tracking": {
"current_release_date": "2025-02-14T07:18:27Z",
"generator": {
"date": "2025-02-14T07:18:27Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:0525-1",
"initial_release_date": "2025-02-14T07:18:27Z",
"revision_history": [
{
"date": "2025-02-14T07:18:27Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"product": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"product_id": "firewalld-prometheus-config-0.1-150000.3.59.1.aarch64"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"product": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"product_id": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"product": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"product_id": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64"
}
},
{
"category": "product_version",
"name": "grafana-10.4.13-150000.1.66.1.aarch64",
"product": {
"name": "grafana-10.4.13-150000.1.66.1.aarch64",
"product_id": "grafana-10.4.13-150000.1.66.1.aarch64"
}
},
{
"category": "product_version",
"name": "mgrctl-0.1.28-150000.1.16.1.aarch64",
"product": {
"name": "mgrctl-0.1.28-150000.1.16.1.aarch64",
"product_id": "mgrctl-0.1.28-150000.1.16.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.i586",
"product": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.i586",
"product_id": "firewalld-prometheus-config-0.1-150000.3.59.1.i586"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.i586",
"product": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.i586",
"product_id": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.i586"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.i586",
"product": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.i586",
"product_id": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.i586"
}
},
{
"category": "product_version",
"name": "grafana-10.4.13-150000.1.66.1.i586",
"product": {
"name": "grafana-10.4.13-150000.1.66.1.i586",
"product_id": "grafana-10.4.13-150000.1.66.1.i586"
}
},
{
"category": "product_version",
"name": "mgrctl-0.1.28-150000.1.16.1.i586",
"product": {
"name": "mgrctl-0.1.28-150000.1.16.1.i586",
"product_id": "mgrctl-0.1.28-150000.1.16.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"product": {
"name": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"product_id": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch"
}
},
{
"category": "product_version",
"name": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"product": {
"name": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"product_id": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch"
}
},
{
"category": "product_version",
"name": "mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"product": {
"name": "mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"product_id": "mgrctl-lang-0.1.28-150000.1.16.1.noarch"
}
},
{
"category": "product_version",
"name": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"product": {
"name": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"product_id": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch"
}
},
{
"category": "product_version",
"name": "spacecmd-5.0.11-150000.3.130.1.noarch",
"product": {
"name": "spacecmd-5.0.11-150000.3.130.1.noarch",
"product_id": "spacecmd-5.0.11-150000.3.130.1.noarch"
}
},
{
"category": "product_version",
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"product": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"product_id": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
}
},
{
"category": "product_version",
"name": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"product": {
"name": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"product_id": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"product": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"product_id": "firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"product": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"product_id": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"product": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"product_id": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le"
}
},
{
"category": "product_version",
"name": "grafana-10.4.13-150000.1.66.1.ppc64le",
"product": {
"name": "grafana-10.4.13-150000.1.66.1.ppc64le",
"product_id": "grafana-10.4.13-150000.1.66.1.ppc64le"
}
},
{
"category": "product_version",
"name": "mgrctl-0.1.28-150000.1.16.1.ppc64le",
"product": {
"name": "mgrctl-0.1.28-150000.1.16.1.ppc64le",
"product_id": "mgrctl-0.1.28-150000.1.16.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"product": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"product_id": "firewalld-prometheus-config-0.1-150000.3.59.1.s390x"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"product": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"product_id": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"product": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"product_id": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x"
}
},
{
"category": "product_version",
"name": "grafana-10.4.13-150000.1.66.1.s390x",
"product": {
"name": "grafana-10.4.13-150000.1.66.1.s390x",
"product_id": "grafana-10.4.13-150000.1.66.1.s390x"
}
},
{
"category": "product_version",
"name": "mgrctl-0.1.28-150000.1.16.1.s390x",
"product": {
"name": "mgrctl-0.1.28-150000.1.16.1.s390x",
"product_id": "mgrctl-0.1.28-150000.1.16.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"product": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"product_id": "firewalld-prometheus-config-0.1-150000.3.59.1.x86_64"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"product": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"product_id": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64"
}
},
{
"category": "product_version",
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"product": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"product_id": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64"
}
},
{
"category": "product_version",
"name": "grafana-10.4.13-150000.1.66.1.x86_64",
"product": {
"name": "grafana-10.4.13-150000.1.66.1.x86_64",
"product_id": "grafana-10.4.13-150000.1.66.1.x86_64"
}
},
{
"category": "product_version",
"name": "mgrctl-0.1.28-150000.1.16.1.x86_64",
"product": {
"name": "mgrctl-0.1.28-150000.1.16.1.x86_64",
"product_id": "mgrctl-0.1.28-150000.1.16.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Manager Client Tools 15",
"product": {
"name": "SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15"
}
},
{
"category": "product_name",
"name": "SUSE Manager Client Tools for SLE Micro 5",
"product": {
"name": "SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-manager-tools-micro:5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-basesystem:15:sp6"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:packagehub:15:sp6"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Manager Proxy 4.3",
"product": {
"name": "SUSE Manager Proxy 4.3",
"product_id": "SUSE Manager Proxy 4.3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-manager-proxy:4.3"
}
}
},
{
"category": "product_name",
"name": "SUSE Manager Server 4.3",
"product": {
"name": "SUSE Manager Server 4.3",
"product_id": "SUSE Manager Server 4.3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-manager-server:4.3"
}
}
},
{
"category": "product_name",
"name": "SUSE Enterprise Storage 7.1",
"product": {
"name": "SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1",
"product_identification_helper": {
"cpe": "cpe:/o:suse:ses:7.1"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch"
},
"product_reference": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.aarch64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64"
},
"product_reference": "firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le"
},
"product_reference": "firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.s390x as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x"
},
"product_reference": "firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "firewalld-prometheus-config-0.1-150000.3.59.1.x86_64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64"
},
"product_reference": "firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64"
},
"product_reference": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le"
},
"product_reference": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x"
},
"product_reference": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64"
},
"product_reference": "golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150000.1.66.1.aarch64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64"
},
"product_reference": "grafana-10.4.13-150000.1.66.1.aarch64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150000.1.66.1.ppc64le as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le"
},
"product_reference": "grafana-10.4.13-150000.1.66.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150000.1.66.1.s390x as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x"
},
"product_reference": "grafana-10.4.13-150000.1.66.1.s390x",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150000.1.66.1.x86_64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64"
},
"product_reference": "grafana-10.4.13-150000.1.66.1.x86_64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.aarch64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.aarch64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.ppc64le as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.s390x as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.s390x",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.x86_64 as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.x86_64",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch"
},
"product_reference": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-lang-0.1.28-150000.1.16.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch"
},
"product_reference": "mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch"
},
"product_reference": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "spacecmd-5.0.11-150000.3.130.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch"
},
"product_reference": "spacecmd-5.0.11-150000.3.130.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch as component of SUSE Manager Client Tools 15",
"product_id": "SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
},
"product_reference": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools 15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch"
},
"product_reference": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.aarch64 as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.aarch64",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.s390x as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.s390x",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-0.1.28-150000.1.16.1.x86_64 as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64"
},
"product_reference": "mgrctl-0.1.28-150000.1.16.1.x86_64",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch"
},
"product_reference": "mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-lang-0.1.28-150000.1.16.1.noarch as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch"
},
"product_reference": "mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch as component of SUSE Manager Client Tools for SLE Micro 5",
"product_id": "SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch"
},
"product_reference": "mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Client Tools for SLE Micro 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Module for Basesystem 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Manager Proxy 4.3",
"product_id": "SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Proxy 4.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Manager Server 4.3",
"product_id": "SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Manager Server 4.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch"
},
"product_reference": "dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64"
},
"product_reference": "golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "spacecmd-5.0.11-150000.3.130.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch"
},
"product_reference": "spacecmd-5.0.11-150000.3.130.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch"
},
"product_reference": "supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
},
"product_reference": "supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-3128",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-3128"
}
],
"notes": [
{
"category": "general",
"text": "Grafana is validating Azure AD accounts based on the email claim. \n\nOn Azure AD, the profile email field is not unique and can be easily modified. \n\nThis leads to account takeover and authentication bypass when Azure AD OAuth is configured with a multi-tenant app.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-3128",
"url": "https://www.suse.com/security/cve/CVE-2023-3128"
},
{
"category": "external",
"summary": "SUSE Bug 1212641 for CVE-2023-3128",
"url": "https://bugzilla.suse.com/1212641"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.4,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "critical"
}
],
"title": "CVE-2023-3128"
},
{
"cve": "CVE-2023-6152",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-6152"
}
],
"notes": [
{
"category": "general",
"text": "A user changing their email after signing up and verifying it can change it without verification in profile settings.\n\nThe configuration option \"verify_email_enabled\" will only validate email only on sign up.\n\n",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-6152",
"url": "https://www.suse.com/security/cve/CVE-2023-6152"
},
{
"category": "external",
"summary": "SUSE Bug 1219912 for CVE-2023-6152",
"url": "https://bugzilla.suse.com/1219912"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "moderate"
}
],
"title": "CVE-2023-6152"
},
{
"cve": "CVE-2024-22037",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-22037"
}
],
"notes": [
{
"category": "general",
"text": "The uyuni-server-attestation systemd service needs a database_password environment variable. This file has 640 permission, and cannot be shown users, but the environment is still exposed by systemd to non-privileged users.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-22037",
"url": "https://www.suse.com/security/cve/CVE-2024-22037"
},
{
"category": "external",
"summary": "SUSE Bug 1231497 for CVE-2024-22037",
"url": "https://bugzilla.suse.com/1231497"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "moderate"
}
],
"title": "CVE-2024-22037"
},
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-51744",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-51744"
}
],
"notes": [
{
"category": "general",
"text": "golang-jwt is a Go implementation of JSON Web Tokens. Unclear documentation of the error behavior in `ParseWithClaims` can lead to situation where users are potentially not checking errors in the way they should be. Especially, if a token is both expired and invalid, the errors returned by `ParseWithClaims` return both error codes. If users only check for the `jwt.ErrTokenExpired ` using `error.Is`, they will ignore the embedded `jwt.ErrTokenSignatureInvalid` and thus potentially accept invalid tokens. A fix has been back-ported with the error handling logic from the `v5` branch to the `v4` branch. In this logic, the `ParseWithClaims` function will immediately return in \"dangerous\" situations (e.g., an invalid signature), limiting the combined errors only to situations where the signature is valid, but further validation failed (e.g., if the signature is valid, but is expired AND has the wrong audience). This fix is part of the 4.5.1 release. We are aware that this changes the behaviour of an established function and is not 100 % backwards compatible, so updating to 4.5.1 might break your code. In case you cannot update to 4.5.0, please make sure that you are properly checking for all errors (\"dangerous\" ones first), so that you are not running in the case detailed above.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-51744",
"url": "https://www.suse.com/security/cve/CVE-2024-51744"
},
{
"category": "external",
"summary": "SUSE Bug 1232936 for CVE-2024-51744",
"url": "https://bugzilla.suse.com/1232936"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 3.1,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "moderate"
}
],
"title": "CVE-2024-51744"
},
{
"cve": "CVE-2024-6837",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-6837"
}
],
"notes": [
{
"category": "general",
"text": "unknown",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-6837",
"url": "https://www.suse.com/security/cve/CVE-2024-6837"
},
{
"category": "external",
"summary": "SUSE Bug 1236301 for CVE-2024-6837",
"url": "https://bugzilla.suse.com/1236301"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "moderate"
}
],
"title": "CVE-2024-6837"
},
{
"cve": "CVE-2024-8118",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-8118"
}
],
"notes": [
{
"category": "general",
"text": "In Grafana, the wrong permission is applied to the alert rule write API endpoint, allowing users with permission to write external alert instances to also write alert rules.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-8118",
"url": "https://www.suse.com/security/cve/CVE-2024-8118"
},
{
"category": "external",
"summary": "SUSE Bug 1231024 for CVE-2024-8118",
"url": "https://bugzilla.suse.com/1231024"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Basesystem 15 SP6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:firewalld-prometheus-config-0.1-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.aarch64",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.ppc64le",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.s390x",
"SUSE Manager Client Tools 15:golang-github-prometheus-prometheus-2.53.3-150000.3.59.1.x86_64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.aarch64",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.ppc64le",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.s390x",
"SUSE Manager Client Tools 15:grafana-10.4.13-150000.1.66.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.ppc64le",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools 15:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools 15:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools 15:spacecmd-5.0.11-150000.3.130.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Client Tools 15:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.aarch64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.s390x",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-0.1.28-150000.1.16.1.x86_64",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-bash-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-lang-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Client Tools for SLE Micro 5:mgrctl-zsh-completion-0.1.28-150000.1.16.1.noarch",
"SUSE Manager Proxy 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"SUSE Manager Server 4.3:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:dracut-saltboot-0.1.1728559936.c16d4fb-150000.1.56.1.noarch",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.aarch64",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.ppc64le",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.s390x",
"openSUSE Leap 15.6:golang-github-prometheus-promu-0.17.0-150000.3.24.1.x86_64",
"openSUSE Leap 15.6:spacecmd-5.0.11-150000.3.130.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-salt-1.2.3-150000.3.16.1.noarch",
"openSUSE Leap 15.6:supportutils-plugin-susemanager-client-5.0.4-150000.3.27.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:18:27Z",
"details": "moderate"
}
],
"title": "CVE-2024-8118"
}
]
}
SUSE-SU-2025:0545-1
Vulnerability from csaf_suse - Published: 2025-02-14 07:24 - Updated: 2025-02-14 07:24Summary
Security update for grafana
Severity
Moderate
Notes
Title of the patch: Security update for grafana
Description of the patch: This update for grafana fixes the following issues:
grafana was updated from version 9.5.18 to 10.4.13 (jsc#PED-11591,jsc#PED-11649):
- Security issues fixed:
* CVE-2024-45337: Prevent possible misuse of ServerConfig.PublicKeyCallback by upgrading
golang.org/x/crypto (bsc#1234554)
* CVE-2023-3128: Fixed authentication bypass using Azure AD OAuth (bsc#1212641)
* CVE-2023-6152: Add email verification when updating user email (bsc#1219912)
* CVE-2024-6837: Fixed potential data source permission escalation (bsc#1236301)
* CVE-2024-8118: Fixed permission on external alerting rule write endpoint (bsc#1231024)
- Potential breaking changes in version 10:
* In panels using the `extract fields` transformation, where one
of the extracted names collides with one of the already
existing ields, the extracted field will be renamed.
* For the existing backend mode users who have table
visualization might see some inconsistencies on their panels.
We have updated the table column naming. This will
potentially affect field transformations and/or field
overrides. To resolve this either: update transformation or
field override.
* For the existing backend mode users who have Transformations
with the `time` field, might see their transformations are
not working. Those panels that have broken transformations
will fail to render. This is because we changed the field
key. To resolve this either: Remove the affected panel and
re-create it; Select the `Time` field again; Edit the `time`
field as `Time` for transformation in `panel.json` or
`dashboard.json`
* The following data source permission endpoints have been removed:
`GET /datasources/:datasourceId/permissions`
`POST /api/datasources/:datasourceId/permissions`
`DELETE /datasources/:datasourceId/permissions`
`POST /datasources/:datasourceId/enable-permissions`
`POST /datasources/:datasourceId/disable-permissions`
+ Please use the following endpoints instead:
`GET /api/access-control/datasources/:uid` for listing data
source permissions
`POST /api/access-control/datasources/:uid/users/:id`,
`POST /api/access-control/datasources/:uid/teams/:id` and
`POST /api/access-control/datasources/:uid/buildInRoles/:id`
for adding or removing data source permissions
* If you are using Terraform Grafana provider to manage data source permissions, you will need to upgrade your
provider.
* For the existing backend mode users who have table visualization might see some inconsistencies on their panels.
We have updated the table column naming. This will potentially affect field transformations and/or field overrides.
* The deprecated `/playlists/{uid}/dashboards` API endpoint has been removed.
Dashboard information can be retrieved from the `/dashboard/...` APIs.
* The `PUT /api/folders/:uid` endpoint no more supports modifying the folder's `UID`
* Removed all components for the old panel header design.
* Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-3/
for more details
* OAuth role mapping enforcement: This change impacts GitHub,
Gitlab, Okta, and Generic OAuth. To avoid overriding manually
set roles, enable the skip_org_role_sync option in the
Grafana configuration for your OAuth provider before
upgrading
* Angular has been deprecated
* Grafana legacy alerting has been deprecated
* API keys are migrating to service accounts
* The experimental “dashboard previews” feature is removed
* Usernames are now case-insensitive by default
* Grafana OAuth integrations do not work anymore with email lookups
* The “Alias” field in the CloudWatch data source is removed
* Athena data source plugin must be updated to version >=2.9.3
* Redshift data source plugin must be updated to version >=1.8.3
* DoiT International BigQuery plugin no longer supported
* Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-0
for more details
- This update brings many new features, enhancements and fixes highlighted at:
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-4/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-3/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-2/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-1/
* https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-0/
Patchnames: SUSE-2025-545,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-545,openSUSE-SLE-15.6-2025-545
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.4 (Critical)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
critical
5.4 (Medium)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.4 (Medium)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
4.7 (Medium)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
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": "Security update for grafana",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for grafana fixes the following issues:\n\ngrafana was updated from version 9.5.18 to 10.4.13 (jsc#PED-11591,jsc#PED-11649):\n\n- Security issues fixed:\n * CVE-2024-45337: Prevent possible misuse of ServerConfig.PublicKeyCallback by upgrading \n golang.org/x/crypto (bsc#1234554)\n * CVE-2023-3128: Fixed authentication bypass using Azure AD OAuth (bsc#1212641)\n * CVE-2023-6152: Add email verification when updating user email (bsc#1219912)\n * CVE-2024-6837: Fixed potential data source permission escalation (bsc#1236301)\n * CVE-2024-8118: Fixed permission on external alerting rule write endpoint (bsc#1231024)\n\n- Potential breaking changes in version 10:\n * In panels using the `extract fields` transformation, where one\n of the extracted names collides with one of the already\n existing ields, the extracted field will be renamed.\n * For the existing backend mode users who have table\n visualization might see some inconsistencies on their panels.\n We have updated the table column naming. This will\n potentially affect field transformations and/or field\n overrides. To resolve this either: update transformation or\n field override.\n * For the existing backend mode users who have Transformations\n with the `time` field, might see their transformations are\n not working. Those panels that have broken transformations\n will fail to render. This is because we changed the field\n key. To resolve this either: Remove the affected panel and\n re-create it; Select the `Time` field again; Edit the `time`\n field as `Time` for transformation in `panel.json` or\n `dashboard.json` \n * The following data source permission endpoints have been removed:\n `GET /datasources/:datasourceId/permissions`\n `POST /api/datasources/:datasourceId/permissions`\n `DELETE /datasources/:datasourceId/permissions`\n `POST /datasources/:datasourceId/enable-permissions`\n `POST /datasources/:datasourceId/disable-permissions`\n + Please use the following endpoints instead:\n `GET /api/access-control/datasources/:uid` for listing data\n source permissions\n `POST /api/access-control/datasources/:uid/users/:id`,\n `POST /api/access-control/datasources/:uid/teams/:id` and\n `POST /api/access-control/datasources/:uid/buildInRoles/:id` \n for adding or removing data source permissions\n * If you are using Terraform Grafana provider to manage data source permissions, you will need to upgrade your\n provider.\n * For the existing backend mode users who have table visualization might see some inconsistencies on their panels. \n We have updated the table column naming. This will potentially affect field transformations and/or field overrides.\n * The deprecated `/playlists/{uid}/dashboards` API endpoint has been removed. \n Dashboard information can be retrieved from the `/dashboard/...` APIs.\n * The `PUT /api/folders/:uid` endpoint no more supports modifying the folder\u0027s `UID`\n * Removed all components for the old panel header design.\n * Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-3/\n for more details\n * OAuth role mapping enforcement: This change impacts GitHub,\n Gitlab, Okta, and Generic OAuth. To avoid overriding manually\n set roles, enable the skip_org_role_sync option in the\n Grafana configuration for your OAuth provider before\n upgrading\n * Angular has been deprecated\n * Grafana legacy alerting has been deprecated\n * API keys are migrating to service accounts\n * The experimental \u0026#8220;dashboard previews\u0026#8221; feature is removed\n * Usernames are now case-insensitive by default\n * Grafana OAuth integrations do not work anymore with email lookups\n * The \u0026#8220;Alias\u0026#8221; field in the CloudWatch data source is removed\n * Athena data source plugin must be updated to version \u0026gt;=2.9.3\n * Redshift data source plugin must be updated to version \u0026gt;=1.8.3\n * DoiT International BigQuery plugin no longer supported\n * Please review https://grafana.com/docs/grafana/next/breaking-changes/breaking-changes-v10-0\n for more details\n\n- This update brings many new features, enhancements and fixes highlighted at:\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-4/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-3/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-2/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-1/\n * https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-0/\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-545,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-545,openSUSE-SLE-15.6-2025-545",
"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/suse-su-2025_0545-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:0545-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20250545-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:0545-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020341.html"
},
{
"category": "self",
"summary": "SUSE Bug 1212641",
"url": "https://bugzilla.suse.com/1212641"
},
{
"category": "self",
"summary": "SUSE Bug 1219912",
"url": "https://bugzilla.suse.com/1219912"
},
{
"category": "self",
"summary": "SUSE Bug 1231024",
"url": "https://bugzilla.suse.com/1231024"
},
{
"category": "self",
"summary": "SUSE Bug 1234554",
"url": "https://bugzilla.suse.com/1234554"
},
{
"category": "self",
"summary": "SUSE Bug 1236301",
"url": "https://bugzilla.suse.com/1236301"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-3128 page",
"url": "https://www.suse.com/security/cve/CVE-2023-3128/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-6152 page",
"url": "https://www.suse.com/security/cve/CVE-2023-6152/"
},
{
"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-6837 page",
"url": "https://www.suse.com/security/cve/CVE-2024-6837/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-8118 page",
"url": "https://www.suse.com/security/cve/CVE-2024-8118/"
}
],
"title": "Security update for grafana",
"tracking": {
"current_release_date": "2025-02-14T07:24:15Z",
"generator": {
"date": "2025-02-14T07:24:15Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:0545-1",
"initial_release_date": "2025-02-14T07:24:15Z",
"revision_history": [
{
"date": "2025-02-14T07:24:15Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "grafana-10.4.13-150200.3.59.1.aarch64",
"product": {
"name": "grafana-10.4.13-150200.3.59.1.aarch64",
"product_id": "grafana-10.4.13-150200.3.59.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-10.4.13-150200.3.59.1.i586",
"product": {
"name": "grafana-10.4.13-150200.3.59.1.i586",
"product_id": "grafana-10.4.13-150200.3.59.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-10.4.13-150200.3.59.1.ppc64le",
"product": {
"name": "grafana-10.4.13-150200.3.59.1.ppc64le",
"product_id": "grafana-10.4.13-150200.3.59.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-10.4.13-150200.3.59.1.s390x",
"product": {
"name": "grafana-10.4.13-150200.3.59.1.s390x",
"product_id": "grafana-10.4.13-150200.3.59.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "grafana-10.4.13-150200.3.59.1.x86_64",
"product": {
"name": "grafana-10.4.13-150200.3.59.1.x86_64",
"product_id": "grafana-10.4.13-150200.3.59.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:packagehub:15:sp6"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.aarch64 as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.ppc64le as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.s390x as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.x86_64 as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "grafana-10.4.13-150200.3.59.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
},
"product_reference": "grafana-10.4.13-150200.3.59.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-3128",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-3128"
}
],
"notes": [
{
"category": "general",
"text": "Grafana is validating Azure AD accounts based on the email claim. \n\nOn Azure AD, the profile email field is not unique and can be easily modified. \n\nThis leads to account takeover and authentication bypass when Azure AD OAuth is configured with a multi-tenant app.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-3128",
"url": "https://www.suse.com/security/cve/CVE-2023-3128"
},
{
"category": "external",
"summary": "SUSE Bug 1212641 for CVE-2023-3128",
"url": "https://bugzilla.suse.com/1212641"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.4,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:24:15Z",
"details": "critical"
}
],
"title": "CVE-2023-3128"
},
{
"cve": "CVE-2023-6152",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-6152"
}
],
"notes": [
{
"category": "general",
"text": "A user changing their email after signing up and verifying it can change it without verification in profile settings.\n\nThe configuration option \"verify_email_enabled\" will only validate email only on sign up.\n\n",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-6152",
"url": "https://www.suse.com/security/cve/CVE-2023-6152"
},
{
"category": "external",
"summary": "SUSE Bug 1219912 for CVE-2023-6152",
"url": "https://bugzilla.suse.com/1219912"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:24:15Z",
"details": "moderate"
}
],
"title": "CVE-2023-6152"
},
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:24:15Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-6837",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-6837"
}
],
"notes": [
{
"category": "general",
"text": "unknown",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-6837",
"url": "https://www.suse.com/security/cve/CVE-2024-6837"
},
{
"category": "external",
"summary": "SUSE Bug 1236301 for CVE-2024-6837",
"url": "https://bugzilla.suse.com/1236301"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:24:15Z",
"details": "moderate"
}
],
"title": "CVE-2024-6837"
},
{
"cve": "CVE-2024-8118",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-8118"
}
],
"notes": [
{
"category": "general",
"text": "In Grafana, the wrong permission is applied to the alert rule write API endpoint, allowing users with permission to write external alert instances to also write alert rules.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-8118",
"url": "https://www.suse.com/security/cve/CVE-2024-8118"
},
{
"category": "external",
"summary": "SUSE Bug 1231024 for CVE-2024-8118",
"url": "https://bugzilla.suse.com/1231024"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.aarch64",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.ppc64le",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.s390x",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:grafana-10.4.13-150200.3.59.1.x86_64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.aarch64",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.ppc64le",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.s390x",
"openSUSE Leap 15.6:grafana-10.4.13-150200.3.59.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-14T07:24:15Z",
"details": "moderate"
}
],
"title": "CVE-2024-8118"
}
]
}
SUSE-SU-2025:0601-1
Vulnerability from csaf_suse - Published: 2025-02-20 09:14 - Updated: 2025-02-20 09:14Summary
Security update for brise
Severity
Important
Notes
Title of the patch: Security update for brise
Description of the patch: This update for brise fixes the following issues:
- CVE-2025-21613: Fixed argument injection via the URL field (bsc#1235573).
- CVE-2024-45337: Fixed authorization bypass in golang.org/x/crypto via the ServerConfig.PublicKeyCallback callback
(bsc#1234597).
Patchnames: SUSE-2025-601,SUSE-SLE-Module-Desktop-Applications-15-SP6-2025-601,openSUSE-SLE-15.6-2025-601
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
52 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
8.1 (High)
Affected products
Recommended
52 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
References
12 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for brise",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for brise fixes the following issues:\n\n- CVE-2025-21613: Fixed argument injection via the URL field (bsc#1235573).\n- CVE-2024-45337: Fixed authorization bypass in golang.org/x/crypto via the ServerConfig.PublicKeyCallback callback\n (bsc#1234597).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-601,SUSE-SLE-Module-Desktop-Applications-15-SP6-2025-601,openSUSE-SLE-15.6-2025-601",
"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/suse-su-2025_0601-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:0601-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20250601-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:0601-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020385.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234597",
"url": "https://bugzilla.suse.com/1234597"
},
{
"category": "self",
"summary": "SUSE Bug 1235573",
"url": "https://bugzilla.suse.com/1235573"
},
{
"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-21613 page",
"url": "https://www.suse.com/security/cve/CVE-2025-21613/"
}
],
"title": "Security update for brise",
"tracking": {
"current_release_date": "2025-02-20T09:14:11Z",
"generator": {
"date": "2025-02-20T09:14:11Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:0601-1",
"initial_release_date": "2025-02-20T09:14:11Z",
"revision_history": [
{
"date": "2025-02-20T09:14:11Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
},
{
"category": "product_version",
"name": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product": {
"name": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"product_id": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-desktop-applications:15:sp6"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of SUSE Linux Enterprise Module for Desktop Applications 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Desktop Applications 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
},
"product_reference": "rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-20T09:14:11Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2025-21613",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-21613"
}
],
"notes": [
{
"category": "general",
"text": "go-git is a highly extensible git implementation library written in pure Go. An argument injection vulnerability was discovered in go-git versions prior to v5.13. Successful exploitation of this vulnerability could allow an attacker to set arbitrary values to git-upload-pack flags. This only happens when the file transport protocol is being used, as that is the only protocol that shells out to git binaries. This vulnerability is fixed in 5.13.0.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-21613",
"url": "https://www.suse.com/security/cve/CVE-2025-21613"
},
{
"category": "external",
"summary": "SUSE Bug 1235572 for CVE-2025-21613",
"url": "https://bugzilla.suse.com/1235572"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1.noarch",
"openSUSE Leap 15.6:rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-20T09:14:11Z",
"details": "important"
}
],
"title": "CVE-2025-21613"
}
]
}
SUSE-SU-2025:0602-1
Vulnerability from csaf_suse - Published: 2025-02-20 09:15 - Updated: 2025-02-20 09:15Summary
Security update for helm
Severity
Important
Notes
Title of the patch: Security update for helm
Description of the patch: This update for helm fixes the following issues:
Update to version 3.17.1:
- CVE-2024-45338: Fixed denial of service due to non-linear parsing of case-insensitive content (bsc#1235318).
- CVE-2024-45337: Fixed misuse of ServerConfig.PublicKeyCallback to prevent authorization bypass in golang.org/x/crypto (bsc#1234482).
Patchnames: SUSE-2025-602,SUSE-SLE-Micro-5.5-2025-602,SUSE-SLE-Module-Containers-15-SP6-2025-602,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-602,SUSE-SLE-Product-HPC-15-SP3-LTSS-2025-602,SUSE-SLE-Product-HPC-15-SP4-ESPOS-2025-602,SUSE-SLE-Product-HPC-15-SP4-LTSS-2025-602,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2025-602,SUSE-SLE-Product-HPC-15-SP5-LTSS-2025-602,SUSE-SLE-Product-SLES-15-SP3-LTSS-2025-602,SUSE-SLE-Product-SLES-15-SP4-LTSS-2025-602,SUSE-SLE-Product-SLES-15-SP5-LTSS-2025-602,SUSE-SLE-Product-SLES_SAP-15-SP3-2025-602,SUSE-SLE-Product-SLES_SAP-15-SP4-2025-602,SUSE-SLE-Product-SLES_SAP-15-SP5-2025-602,SUSE-Storage-7.1-2025-602,openSUSE-SLE-15.6-2025-602
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
73 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
73 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
References
12 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for helm",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for helm fixes the following issues:\n\nUpdate to version 3.17.1:\n\n- CVE-2024-45338: Fixed denial of service due to non-linear parsing of case-insensitive content (bsc#1235318).\n- CVE-2024-45337: Fixed misuse of ServerConfig.PublicKeyCallback to prevent authorization bypass in golang.org/x/crypto (bsc#1234482).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-602,SUSE-SLE-Micro-5.5-2025-602,SUSE-SLE-Module-Containers-15-SP6-2025-602,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-602,SUSE-SLE-Product-HPC-15-SP3-LTSS-2025-602,SUSE-SLE-Product-HPC-15-SP4-ESPOS-2025-602,SUSE-SLE-Product-HPC-15-SP4-LTSS-2025-602,SUSE-SLE-Product-HPC-15-SP5-ESPOS-2025-602,SUSE-SLE-Product-HPC-15-SP5-LTSS-2025-602,SUSE-SLE-Product-SLES-15-SP3-LTSS-2025-602,SUSE-SLE-Product-SLES-15-SP4-LTSS-2025-602,SUSE-SLE-Product-SLES-15-SP5-LTSS-2025-602,SUSE-SLE-Product-SLES_SAP-15-SP3-2025-602,SUSE-SLE-Product-SLES_SAP-15-SP4-2025-602,SUSE-SLE-Product-SLES_SAP-15-SP5-2025-602,SUSE-Storage-7.1-2025-602,openSUSE-SLE-15.6-2025-602",
"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/suse-su-2025_0602-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:0602-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20250602-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:0602-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-February/020384.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234482",
"url": "https://bugzilla.suse.com/1234482"
},
{
"category": "self",
"summary": "SUSE Bug 1235318",
"url": "https://bugzilla.suse.com/1235318"
},
{
"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": "Security update for helm",
"tracking": {
"current_release_date": "2025-02-20T09:15:28Z",
"generator": {
"date": "2025-02-20T09:15:28Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:0602-1",
"initial_release_date": "2025-02-20T09:15:28Z",
"revision_history": [
{
"date": "2025-02-20T09:15:28Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.1-150000.1.41.1.aarch64",
"product": {
"name": "helm-3.17.1-150000.1.41.1.aarch64",
"product_id": "helm-3.17.1-150000.1.41.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.1-150000.1.41.1.i586",
"product": {
"name": "helm-3.17.1-150000.1.41.1.i586",
"product_id": "helm-3.17.1-150000.1.41.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"product": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"product_id": "helm-bash-completion-3.17.1-150000.1.41.1.noarch"
}
},
{
"category": "product_version",
"name": "helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"product": {
"name": "helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"product_id": "helm-fish-completion-3.17.1-150000.1.41.1.noarch"
}
},
{
"category": "product_version",
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"product": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"product_id": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.1-150000.1.41.1.ppc64le",
"product": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le",
"product_id": "helm-3.17.1-150000.1.41.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.1-150000.1.41.1.s390x",
"product": {
"name": "helm-3.17.1-150000.1.41.1.s390x",
"product_id": "helm-3.17.1-150000.1.41.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.1-150000.1.41.1.x86_64",
"product": {
"name": "helm-3.17.1-150000.1.41.1.x86_64",
"product_id": "helm-3.17.1-150000.1.41.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.5",
"product": {
"name": "SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-micro:5.5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Containers 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-containers:15:sp6"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:packagehub:15:sp6"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Enterprise Storage 7.1",
"product": {
"name": "SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1",
"product_identification_helper": {
"cpe": "cpe:/o:suse:ses:7.1"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.s390x as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x"
},
"product_reference": "helm-3.17.1-150000.1.41.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Containers 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Containers 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.s390x as component of SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x"
},
"product_reference": "helm-3.17.1-150000.1.41.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Containers 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Containers 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Containers 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Module for Containers 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Containers 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-fish-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.s390x as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x"
},
"product_reference": "helm-3.17.1-150000.1.41.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.s390x as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x"
},
"product_reference": "helm-3.17.1-150000.1.41.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server 15 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.s390x as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x"
},
"product_reference": "helm-3.17.1-150000.1.41.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server 15 SP5-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP5-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le"
},
"product_reference": "helm-3.17.1-150000.1.41.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x"
},
"product_reference": "helm-3.17.1-150000.1.41.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.1-150000.1.41.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64"
},
"product_reference": "helm-3.17.1-150000.1.41.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.1-150000.1.41.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-fish-completion-3.17.1-150000.1.41.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
},
"product_reference": "helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64",
"openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64",
"openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64",
"openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-20T09:15:28Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64",
"openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64",
"openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Enterprise Storage 7.1:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Enterprise Storage 7.1:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Enterprise Storage 7.1:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Micro 5.5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Micro 5.5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Containers 15 SP6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Module for Package Hub 15 SP6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP3-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP4-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.aarch64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.s390x",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server 15 SP5-LTSS:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP4:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-3.17.1-150000.1.41.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP5:helm-zsh-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.aarch64",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.ppc64le",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.s390x",
"openSUSE Leap 15.6:helm-3.17.1-150000.1.41.1.x86_64",
"openSUSE Leap 15.6:helm-bash-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-fish-completion-3.17.1-150000.1.41.1.noarch",
"openSUSE Leap 15.6:helm-zsh-completion-3.17.1-150000.1.41.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-02-20T09:15:28Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
}
]
}
SUSE-SU-2025:0770-1
Vulnerability from csaf_suse - Published: 2025-03-03 13:41 - Updated: 2025-03-03 13:41Summary
Security update for govulncheck-vulndb
Severity
Moderate
Notes
Title of the patch: Security update for govulncheck-vulndb
Description of the patch: This update for govulncheck-vulndb fixes the following issues:
- Update to version 0.0.20250226T025151 2025-02-26T02:51:51Z.
(jsc#PED-11136)
* GO-2025-3487 CVE-2025-22869
* GO-2025-3488 CVE-2025-22868
- Update to version 0.0.20250218T203201 2025-02-18T20:32:01Z.
(jsc#PED-11136)
* GO-2024-3321 CVE-2024-45337 GHSA-v778-237x-gjrc
Patchnames: SUSE-2025-770,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-770,openSUSE-SLE-15.6-2025-770
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
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
2 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
References
13 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for govulncheck-vulndb",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for govulncheck-vulndb fixes the following issues:\n\n- Update to version 0.0.20250226T025151 2025-02-26T02:51:51Z.\n (jsc#PED-11136)\n\n * GO-2025-3487 CVE-2025-22869\n * GO-2025-3488 CVE-2025-22868\n\n- Update to version 0.0.20250218T203201 2025-02-18T20:32:01Z.\n (jsc#PED-11136)\n\n * GO-2024-3321 CVE-2024-45337 GHSA-v778-237x-gjrc\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-770,SUSE-SLE-Module-Packagehub-Subpackages-15-SP6-2025-770,openSUSE-SLE-15.6-2025-770",
"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/suse-su-2025_0770-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:0770-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20250770-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:0770-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020477.html"
},
{
"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-22868 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22868/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-22869 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22869/"
}
],
"title": "Security update for govulncheck-vulndb",
"tracking": {
"current_release_date": "2025-03-03T13:41:31Z",
"generator": {
"date": "2025-03-03T13:41:31Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:0770-1",
"initial_release_date": "2025-03-03T13:41:31Z",
"revision_history": [
{
"date": "2025-03-03T13:41:31Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"product": {
"name": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"product_id": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:packagehub:15:sp6"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch as component of SUSE Linux Enterprise Module for Package Hub 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
},
"product_reference": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Package Hub 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
},
"product_reference": "govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-03T13:41:31Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2025-22868",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22868"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can pass a malicious malformed token which causes unexpected memory to be consumed during parsing.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22868",
"url": "https://www.suse.com/security/cve/CVE-2025-22868"
},
{
"category": "external",
"summary": "SUSE Bug 1239186 for CVE-2025-22868",
"url": "https://bugzilla.suse.com/1239186"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-03T13:41:31Z",
"details": "important"
}
],
"title": "CVE-2025-22868"
},
{
"cve": "CVE-2025-22869",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22869"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which implement file transfer protocols are vulnerable to a denial of service attack from clients which complete the key exchange slowly, or not at all, causing pending content to be read into memory, but never transmitted.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Package Hub 15 SP6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch",
"openSUSE Leap 15.6:govulncheck-vulndb-0.0.20250226T025151-150000.1.35.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-03T13:41:31Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
}
]
}
SUSE-SU-2025:0980-1
Vulnerability from csaf_suse - Published: 2025-03-21 14:15 - Updated: 2025-03-21 14:15Summary
Security update for apptainer
Severity
Critical
Notes
Title of the patch: Security update for apptainer
Description of the patch: This update for apptainer fixes the following issues:
- CVE-2025-27144: Fixed Denial of Service in Go JOSE's Parsing (bsc#1237679).
- CVE-2024-45338: Fixed denial of service due to non-linear parsing of case-insensitive content (bsc#1234794).
- CVE-2024-45337: Fixed Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto (bsc#1234595).
- CVE-2025-22870: Fixed proxy bypass using IPv6 zone IDs (bsc#1238611).
- CVE-2025-22869: Fixed Denial of Service in the Key Exchange of golang.org/x/crypto/ssh (bsc#1239341).
- CVE-2024-41110: Fixed Authz zero length regression (bsc#1228324).
Patchnames: SUSE-2025-980,SUSE-SLE-Module-HPC-15-SP6-2025-980,openSUSE-SLE-15.6-2025-980
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
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
Threats
Impact
critical
8.1 (High)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
7.5 (High)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
4.4 (Medium)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
7.5 (High)
Affected products
Recommended
8 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
References
30 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "critical"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for apptainer",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for apptainer fixes the following issues:\n\n- CVE-2025-27144: Fixed Denial of Service in Go JOSE\u0027s Parsing (bsc#1237679).\n- CVE-2024-45338: Fixed denial of service due to non-linear parsing of case-insensitive content (bsc#1234794).\n- CVE-2024-45337: Fixed Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto (bsc#1234595).\n- CVE-2025-22870: Fixed proxy bypass using IPv6 zone IDs (bsc#1238611).\n- CVE-2025-22869: Fixed Denial of Service in the Key Exchange of golang.org/x/crypto/ssh (bsc#1239341).\n- CVE-2024-41110: Fixed Authz zero length regression (bsc#1228324).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-980,SUSE-SLE-Module-HPC-15-SP6-2025-980,openSUSE-SLE-15.6-2025-980",
"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/suse-su-2025_0980-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:0980-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20250980-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:0980-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020574.html"
},
{
"category": "self",
"summary": "SUSE Bug 1228324",
"url": "https://bugzilla.suse.com/1228324"
},
{
"category": "self",
"summary": "SUSE Bug 1234595",
"url": "https://bugzilla.suse.com/1234595"
},
{
"category": "self",
"summary": "SUSE Bug 1234794",
"url": "https://bugzilla.suse.com/1234794"
},
{
"category": "self",
"summary": "SUSE Bug 1237679",
"url": "https://bugzilla.suse.com/1237679"
},
{
"category": "self",
"summary": "SUSE Bug 1238611",
"url": "https://bugzilla.suse.com/1238611"
},
{
"category": "self",
"summary": "SUSE Bug 1239341",
"url": "https://bugzilla.suse.com/1239341"
},
{
"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": "Security update for apptainer",
"tracking": {
"current_release_date": "2025-03-21T14:15:19Z",
"generator": {
"date": "2025-03-21T14:15:19Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:0980-1",
"initial_release_date": "2025-03-21T14:15:19Z",
"revision_history": [
{
"date": "2025-03-21T14:15:19Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "apptainer-1.3.6-150600.4.9.1.aarch64",
"product": {
"name": "apptainer-1.3.6-150600.4.9.1.aarch64",
"product_id": "apptainer-1.3.6-150600.4.9.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "apptainer-leap-1.3.6-150600.4.9.1.noarch",
"product": {
"name": "apptainer-leap-1.3.6-150600.4.9.1.noarch",
"product_id": "apptainer-leap-1.3.6-150600.4.9.1.noarch"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"product": {
"name": "apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"product_id": "apptainer-sle15_5-1.3.6-150600.4.9.1.noarch"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"product": {
"name": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"product_id": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
}
},
{
"category": "product_version",
"name": "apptainer-sle15_7-1.3.6-150600.4.9.1.noarch",
"product": {
"name": "apptainer-sle15_7-1.3.6-150600.4.9.1.noarch",
"product_id": "apptainer-sle15_7-1.3.6-150600.4.9.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "apptainer-1.3.6-150600.4.9.1.x86_64",
"product": {
"name": "apptainer-1.3.6-150600.4.9.1.x86_64",
"product_id": "apptainer-1.3.6-150600.4.9.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for HPC 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for HPC 15 SP6",
"product_id": "SUSE Linux Enterprise Module for HPC 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-hpc:15:sp6"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-150600.4.9.1.aarch64 as component of SUSE Linux Enterprise Module for HPC 15 SP6",
"product_id": "SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64"
},
"product_reference": "apptainer-1.3.6-150600.4.9.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for HPC 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-150600.4.9.1.x86_64 as component of SUSE Linux Enterprise Module for HPC 15 SP6",
"product_id": "SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64"
},
"product_reference": "apptainer-1.3.6-150600.4.9.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for HPC 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch as component of SUSE Linux Enterprise Module for HPC 15 SP6",
"product_id": "SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
},
"product_reference": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Module for HPC 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-150600.4.9.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64"
},
"product_reference": "apptainer-1.3.6-150600.4.9.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-1.3.6-150600.4.9.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64"
},
"product_reference": "apptainer-1.3.6-150600.4.9.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-leap-1.3.6-150600.4.9.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch"
},
"product_reference": "apptainer-leap-1.3.6-150600.4.9.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_5-1.3.6-150600.4.9.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch"
},
"product_reference": "apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
},
"product_reference": "apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
},
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-21T14:15:19Z",
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-21T14:15:19Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-21T14:15:19Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
},
{
"cve": "CVE-2025-22869",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22869"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which implement file transfer protocols are vulnerable to a denial of service attack from clients which complete the key exchange slowly, or not at all, causing pending content to be read into memory, but never transmitted.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-21T14:15:19Z",
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
},
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-21T14:15:19Z",
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
},
"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": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.aarch64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-1.3.6-150600.4.9.1.x86_64",
"SUSE Linux Enterprise Module for HPC 15 SP6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.aarch64",
"openSUSE Leap 15.6:apptainer-1.3.6-150600.4.9.1.x86_64",
"openSUSE Leap 15.6:apptainer-leap-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_5-1.3.6-150600.4.9.1.noarch",
"openSUSE Leap 15.6:apptainer-sle15_6-1.3.6-150600.4.9.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-03-21T14:15:19Z",
"details": "important"
}
],
"title": "CVE-2025-27144"
}
]
}
SUSE-SU-2025:1142-1
Vulnerability from csaf_suse - Published: 2025-04-04 13:30 - Updated: 2025-04-04 13:30Summary
Security update for google-guest-agent
Severity
Important
Notes
Title of the patch: Security update for google-guest-agent
Description of the patch: This update for google-guest-agent fixes the following issues:
- CVE-2024-45337: golang.org/x/crypto/ssh: Fixed misuse of ServerConfig.PublicKeyCallback leading to authorization bypass (bsc#1234563).
Other fixes:
- Updated to version 20250327.01 (bsc#1239763, bsc#1239866)
* Remove error messages from gce_workload_cert_refresh and
metadata script runner (#527)
- from version 20250327.00
* Update guest-logging-go dependency (#526)
* Add 'created-by' metadata, and pass it as option to logging library (#508)
* Revert 'oslogin: Correctly handle newlines at the end of
modified files (#520)' (#523)
* Re-enable disabled services if the core plugin was enabled (#522)
* Enable guest services on package upgrade (#519)
* oslogin: Correctly handle newlines at the end of modified files (#520)
* Fix core plugin path (#518)
* Fix package build issues (#517)
* Fix dependencies ran go mod tidy -v (#515)
* Fix debian build path (#514)
* Bundle compat metadata script runner binary in package (#513)
* Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)
* Update startup/shutdown services to launch compat manager (#503)
* Bundle new gce metadata script runner binary in agent package (#502)
* Revert 'Revert bundling new binaries in the package (#509)' (#511)
- from version 20250326.00
* Re-enable disabled services if the core plugin was enabled (#521)
- from version 20250324.00
* Enable guest services on package upgrade (#519)
* oslogin: Correctly handle newlines at the end of modified files (#520)
* Fix core plugin path (#518)
* Fix package build issues (#517)
* Fix dependencies ran go mod tidy -v (#515)
* Fix debian build path (#514)
* Bundle compat metadata script runner binary in package (#513)
* Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)
* Update startup/shutdown services to launch compat manager (#503)
* Bundle new gce metadata script runner binary in agent package (#502)
* Revert 'Revert bundling new binaries in the package (#509)' (#511)
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250317.00
* Revert 'Revert bundling new binaries in the package (#509)' (#511)
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250312.00
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250305.00
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250304.01
* Fix typo in windows build script (#501)
- from version 20250214.01
* Include core plugin binary for all packages (#500)
- from version 20250212.00
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
- from version 20250211.00
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250207.00
* vlan: toggle vlan configuration in debian packaging (#495)
* vlan: move config out of unstable section (#494)
* Add clarification to comments regarding invalid NICs and the
`invalid` tag. (#493)
* Include interfaces in lists even if it has an invalid MAC. (#489)
* Fix windows package build failures (#491)
* vlan: don't index based on the vlan ID (#486)
* Revert PR #482 (#488)
* Remove Amy and Zach from OWNERS (#487)
* Skip interfaces in interfaceNames() instead of erroring if there is an (#482)
* Fix Debian packaging if guest agent manager is not checked out (#485)
- from version 20250204.02
* force concourse to move version forward.
- from version 20250204.01
* vlan: toggle vlan configuration in debian packaging (#495)
- from version 20250204.00
* vlan: move config out of unstable section (#494)
* Add clarification to comments regarding invalid NICs and the
`invalid` tag. (#493)
- from version 20250203.01
* Include interfaces in lists even if it has an invalid MAC. (#489)
- from version 20250203.00
* Fix windows package build failures (#491)
* vlan: don't index based on the vlan ID (#486)
* Revert PR #482 (#488)
* Remove Amy and Zach from OWNERS (#487)
* Skip interfaces in interfaceNames() instead of erroring if there is an (#482)
* Fix Debian packaging if guest agent manager is not checked out (#485)
- from version 20250122.00
* networkd(vlan): remove the interface in addition to config (#468)
* Implement support for vlan dynamic removal, update dhclient to
remove only if configured (#465)
* Update logging library (#479)
* Remove Pat from owners file. (#478)
Patchnames: SUSE-2025-1142,SUSE-SLE-Module-Public-Cloud-12-2025-1142
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: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
10 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for google-guest-agent",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for google-guest-agent fixes the following issues:\n\n- CVE-2024-45337: golang.org/x/crypto/ssh: Fixed misuse of ServerConfig.PublicKeyCallback leading to authorization bypass (bsc#1234563).\n\nOther fixes:\n- Updated to version 20250327.01 (bsc#1239763, bsc#1239866)\n * Remove error messages from gce_workload_cert_refresh and\n metadata script runner (#527)\n- from version 20250327.00\n * Update guest-logging-go dependency (#526)\n * Add \u0027created-by\u0027 metadata, and pass it as option to logging library (#508)\n * Revert \u0027oslogin: Correctly handle newlines at the end of\n modified files (#520)\u0027 (#523)\n * Re-enable disabled services if the core plugin was enabled (#522)\n * Enable guest services on package upgrade (#519)\n * oslogin: Correctly handle newlines at the end of modified files (#520)\n * Fix core plugin path (#518)\n * Fix package build issues (#517)\n * Fix dependencies ran go mod tidy -v (#515)\n * Fix debian build path (#514)\n * Bundle compat metadata script runner binary in package (#513)\n * Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)\n * Update startup/shutdown services to launch compat manager (#503)\n * Bundle new gce metadata script runner binary in agent package (#502)\n * Revert \u0027Revert bundling new binaries in the package (#509)\u0027 (#511)\n- from version 20250326.00\n * Re-enable disabled services if the core plugin was enabled (#521)\n- from version 20250324.00\n * Enable guest services on package upgrade (#519)\n * oslogin: Correctly handle newlines at the end of modified files (#520)\n * Fix core plugin path (#518)\n * Fix package build issues (#517)\n * Fix dependencies ran go mod tidy -v (#515)\n * Fix debian build path (#514)\n * Bundle compat metadata script runner binary in package (#513)\n * Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)\n * Update startup/shutdown services to launch compat manager (#503)\n * Bundle new gce metadata script runner binary in agent package (#502)\n * Revert \u0027Revert bundling new binaries in the package (#509)\u0027 (#511)\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250317.00\n * Revert \u0027Revert bundling new binaries in the package (#509)\u0027 (#511)\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250312.00\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250305.00\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250304.01\n * Fix typo in windows build script (#501)\n- from version 20250214.01\n * Include core plugin binary for all packages (#500)\n- from version 20250212.00\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n- from version 20250211.00\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250207.00\n * vlan: toggle vlan configuration in debian packaging (#495)\n * vlan: move config out of unstable section (#494)\n * Add clarification to comments regarding invalid NICs and the\n `invalid` tag. (#493)\n * Include interfaces in lists even if it has an invalid MAC. (#489)\n * Fix windows package build failures (#491)\n * vlan: don\u0027t index based on the vlan ID (#486)\n * Revert PR #482 (#488)\n * Remove Amy and Zach from OWNERS (#487)\n * Skip interfaces in interfaceNames() instead of erroring if there is an (#482)\n * Fix Debian packaging if guest agent manager is not checked out (#485)\n- from version 20250204.02\n * force concourse to move version forward.\n- from version 20250204.01\n * vlan: toggle vlan configuration in debian packaging (#495)\n- from version 20250204.00\n * vlan: move config out of unstable section (#494)\n * Add clarification to comments regarding invalid NICs and the\n `invalid` tag. (#493)\n- from version 20250203.01\n * Include interfaces in lists even if it has an invalid MAC. (#489)\n- from version 20250203.00\n * Fix windows package build failures (#491)\n * vlan: don\u0027t index based on the vlan ID (#486)\n * Revert PR #482 (#488)\n * Remove Amy and Zach from OWNERS (#487)\n * Skip interfaces in interfaceNames() instead of erroring if there is an (#482)\n * Fix Debian packaging if guest agent manager is not checked out (#485)\n- from version 20250122.00\n * networkd(vlan): remove the interface in addition to config (#468)\n * Implement support for vlan dynamic removal, update dhclient to\n remove only if configured (#465)\n * Update logging library (#479)\n * Remove Pat from owners file. (#478)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-1142,SUSE-SLE-Module-Public-Cloud-12-2025-1142",
"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/suse-su-2025_1142-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:1142-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251142-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:1142-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2025-April/038915.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234563",
"url": "https://bugzilla.suse.com/1234563"
},
{
"category": "self",
"summary": "SUSE Bug 1239763",
"url": "https://bugzilla.suse.com/1239763"
},
{
"category": "self",
"summary": "SUSE Bug 1239866",
"url": "https://bugzilla.suse.com/1239866"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "Security update for google-guest-agent",
"tracking": {
"current_release_date": "2025-04-04T13:30:47Z",
"generator": {
"date": "2025-04-04T13:30:47Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:1142-1",
"initial_release_date": "2025-04-04T13:30:47Z",
"revision_history": [
{
"date": "2025-04-04T13:30:47Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.50.1.aarch64",
"product": {
"name": "google-guest-agent-20250327.01-1.50.1.aarch64",
"product_id": "google-guest-agent-20250327.01-1.50.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.50.1.i586",
"product": {
"name": "google-guest-agent-20250327.01-1.50.1.i586",
"product_id": "google-guest-agent-20250327.01-1.50.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.50.1.ppc64le",
"product": {
"name": "google-guest-agent-20250327.01-1.50.1.ppc64le",
"product_id": "google-guest-agent-20250327.01-1.50.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.50.1.s390x",
"product": {
"name": "google-guest-agent-20250327.01-1.50.1.s390x",
"product_id": "google-guest-agent-20250327.01-1.50.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-1.50.1.x86_64",
"product": {
"name": "google-guest-agent-20250327.01-1.50.1.x86_64",
"product_id": "google-guest-agent-20250327.01-1.50.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Public Cloud 12",
"product": {
"name": "SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-public-cloud:12"
}
}
}
],
"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.50.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-1.50.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-1.50.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-1.50.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-1.50.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-1.50.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-1.50.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-1.50.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20250327.01-1.50.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-04T13:30:47Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
SUSE-SU-2025:1143-1
Vulnerability from csaf_suse - Published: 2025-04-04 13:31 - Updated: 2025-04-04 13:31Summary
Security update for google-guest-agent
Severity
Important
Notes
Title of the patch: Security update for google-guest-agent
Description of the patch: This update for google-guest-agent fixes the following issues:
- CVE-2024-45337: golang.org/x/crypto/ssh: Fixed misuse of ServerConfig.PublicKeyCallback leading to authorization bypass (bsc#1234563).
Other fixes:
- Updated to version 20250327.01 (bsc#1239763, bsc#1239866)
* Remove error messages from gce_workload_cert_refresh and
metadata script runner (#527)
- from version 20250327.00
* Update guest-logging-go dependency (#526)
* Add 'created-by' metadata, and pass it as option to logging library (#508)
* Revert 'oslogin: Correctly handle newlines at the end of
modified files (#520)' (#523)
* Re-enable disabled services if the core plugin was enabled (#522)
* Enable guest services on package upgrade (#519)
* oslogin: Correctly handle newlines at the end of modified files (#520)
* Fix core plugin path (#518)
* Fix package build issues (#517)
* Fix dependencies ran go mod tidy -v (#515)
* Fix debian build path (#514)
* Bundle compat metadata script runner binary in package (#513)
* Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)
* Update startup/shutdown services to launch compat manager (#503)
* Bundle new gce metadata script runner binary in agent package (#502)
* Revert 'Revert bundling new binaries in the package (#509)' (#511)
- from version 20250326.00
* Re-enable disabled services if the core plugin was enabled (#521)
- from version 20250324.00
* Enable guest services on package upgrade (#519)
* oslogin: Correctly handle newlines at the end of modified files (#520)
* Fix core plugin path (#518)
* Fix package build issues (#517)
* Fix dependencies ran go mod tidy -v (#515)
* Fix debian build path (#514)
* Bundle compat metadata script runner binary in package (#513)
* Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)
* Update startup/shutdown services to launch compat manager (#503)
* Bundle new gce metadata script runner binary in agent package (#502)
* Revert 'Revert bundling new binaries in the package (#509)' (#511)
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250317.00
* Revert 'Revert bundling new binaries in the package (#509)' (#511)
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250312.00
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Update crypto library to fix CVE-2024-45337 (#499)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250305.00
* Revert bundling new binaries in the package (#509)
* Fix typo in windows build script (#501)
* Include core plugin binary for all packages (#500)
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250304.01
* Fix typo in windows build script (#501)
- from version 20250214.01
* Include core plugin binary for all packages (#500)
- from version 20250214.00
* Update crypto library to fix CVE-2024-45337 (#499)
- from version 20250212.00
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
- from version 20250211.00
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- from version 20250207.00
* vlan: toggle vlan configuration in debian packaging (#495)
* vlan: move config out of unstable section (#494)
* Add clarification to comments regarding invalid NICs and the
`invalid` tag. (#493)
* Include interfaces in lists even if it has an invalid MAC. (#489)
* Fix windows package build failures (#491)
* vlan: don't index based on the vlan ID (#486)
* Revert PR #482 (#488)
* Remove Amy and Zach from OWNERS (#487)
* Skip interfaces in interfaceNames() instead of erroring if there is an (#482)
* Fix Debian packaging if guest agent manager is not checked out (#485)
- from version 20250204.02
* force concourse to move version forward.
- from version 20250204.01
* vlan: toggle vlan configuration in debian packaging (#495)
- from version 20250204.00
* vlan: move config out of unstable section (#494)
* Add clarification to comments regarding invalid NICs and the
`invalid` tag. (#493)
- from version 20250203.01
* Include interfaces in lists even if it has an invalid MAC. (#489)
- from version 20250203.00
* Fix windows package build failures (#491)
* vlan: don't index based on the vlan ID (#486)
* Revert PR #482 (#488)
* Remove Amy and Zach from OWNERS (#487)
* Skip interfaces in interfaceNames() instead of erroring if there is an (#482)
* Fix Debian packaging if guest agent manager is not checked out (#485)
- from version 20250122.00
* networkd(vlan): remove the interface in addition to config (#468)
* Implement support for vlan dynamic removal, update dhclient to
remove only if configured (#465)
* Update logging library (#479)
* Remove Pat from owners file. (#478)
Patchnames: SUSE-2025-1143,SUSE-SLE-Micro-5.5-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP3-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP4-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP5-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP6-2025-1143,openSUSE-SLE-15.6-2025-1143
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
24 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
10 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for google-guest-agent",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for google-guest-agent fixes the following issues:\n\n- CVE-2024-45337: golang.org/x/crypto/ssh: Fixed misuse of ServerConfig.PublicKeyCallback leading to authorization bypass (bsc#1234563).\n\nOther fixes:\n- Updated to version 20250327.01 (bsc#1239763, bsc#1239866)\n * Remove error messages from gce_workload_cert_refresh and\n metadata script runner (#527)\n- from version 20250327.00\n * Update guest-logging-go dependency (#526)\n * Add \u0027created-by\u0027 metadata, and pass it as option to logging library (#508)\n * Revert \u0027oslogin: Correctly handle newlines at the end of\n modified files (#520)\u0027 (#523)\n * Re-enable disabled services if the core plugin was enabled (#522)\n * Enable guest services on package upgrade (#519)\n * oslogin: Correctly handle newlines at the end of modified files (#520)\n * Fix core plugin path (#518)\n * Fix package build issues (#517)\n * Fix dependencies ran go mod tidy -v (#515)\n * Fix debian build path (#514)\n * Bundle compat metadata script runner binary in package (#513)\n * Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)\n * Update startup/shutdown services to launch compat manager (#503)\n * Bundle new gce metadata script runner binary in agent package (#502)\n * Revert \u0027Revert bundling new binaries in the package (#509)\u0027 (#511)\n- from version 20250326.00\n * Re-enable disabled services if the core plugin was enabled (#521)\n- from version 20250324.00\n * Enable guest services on package upgrade (#519)\n * oslogin: Correctly handle newlines at the end of modified files (#520)\n * Fix core plugin path (#518)\n * Fix package build issues (#517)\n * Fix dependencies ran go mod tidy -v (#515)\n * Fix debian build path (#514)\n * Bundle compat metadata script runner binary in package (#513)\n * Bump golang.org/x/net from 0.27.0 to 0.36.0 (#512)\n * Update startup/shutdown services to launch compat manager (#503)\n * Bundle new gce metadata script runner binary in agent package (#502)\n * Revert \u0027Revert bundling new binaries in the package (#509)\u0027 (#511)\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250317.00\n * Revert \u0027Revert bundling new binaries in the package (#509)\u0027 (#511)\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250312.00\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Update crypto library to fix CVE-2024-45337 (#499)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250305.00\n * Revert bundling new binaries in the package (#509)\n * Fix typo in windows build script (#501)\n * Include core plugin binary for all packages (#500)\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250304.01\n * Fix typo in windows build script (#501)\n- from version 20250214.01\n * Include core plugin binary for all packages (#500)\n- from version 20250214.00\n * Update crypto library to fix CVE-2024-45337 (#499)\n- from version 20250212.00\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n- from version 20250211.00\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- from version 20250207.00\n * vlan: toggle vlan configuration in debian packaging (#495)\n * vlan: move config out of unstable section (#494)\n * Add clarification to comments regarding invalid NICs and the\n `invalid` tag. (#493)\n * Include interfaces in lists even if it has an invalid MAC. (#489)\n * Fix windows package build failures (#491)\n * vlan: don\u0027t index based on the vlan ID (#486)\n * Revert PR #482 (#488)\n * Remove Amy and Zach from OWNERS (#487)\n * Skip interfaces in interfaceNames() instead of erroring if there is an (#482)\n * Fix Debian packaging if guest agent manager is not checked out (#485)\n- from version 20250204.02\n * force concourse to move version forward.\n- from version 20250204.01\n * vlan: toggle vlan configuration in debian packaging (#495)\n- from version 20250204.00\n * vlan: move config out of unstable section (#494)\n * Add clarification to comments regarding invalid NICs and the\n `invalid` tag. (#493)\n- from version 20250203.01\n * Include interfaces in lists even if it has an invalid MAC. (#489)\n- from version 20250203.00\n * Fix windows package build failures (#491)\n * vlan: don\u0027t index based on the vlan ID (#486)\n * Revert PR #482 (#488)\n * Remove Amy and Zach from OWNERS (#487)\n * Skip interfaces in interfaceNames() instead of erroring if there is an (#482)\n * Fix Debian packaging if guest agent manager is not checked out (#485)\n- from version 20250122.00\n * networkd(vlan): remove the interface in addition to config (#468)\n * Implement support for vlan dynamic removal, update dhclient to\n remove only if configured (#465)\n * Update logging library (#479)\n * Remove Pat from owners file. (#478)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2025-1143,SUSE-SLE-Micro-5.5-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP3-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP4-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP5-2025-1143,SUSE-SLE-Module-Public-Cloud-15-SP6-2025-1143,openSUSE-SLE-15.6-2025-1143",
"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/suse-su-2025_1143-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:1143-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-20251143-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:1143-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2025-April/038914.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234563",
"url": "https://bugzilla.suse.com/1234563"
},
{
"category": "self",
"summary": "SUSE Bug 1239763",
"url": "https://bugzilla.suse.com/1239763"
},
{
"category": "self",
"summary": "SUSE Bug 1239866",
"url": "https://bugzilla.suse.com/1239866"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-45337 page",
"url": "https://www.suse.com/security/cve/CVE-2024-45337/"
}
],
"title": "Security update for google-guest-agent",
"tracking": {
"current_release_date": "2025-04-04T13:31:31Z",
"generator": {
"date": "2025-04-04T13:31:31Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:1143-1",
"initial_release_date": "2025-04-04T13:31:31Z",
"revision_history": [
{
"date": "2025-04-04T13:31:31Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"product": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"product_id": "google-guest-agent-20250327.01-150000.1.60.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-150000.1.60.1.i586",
"product": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.i586",
"product_id": "google-guest-agent-20250327.01-150000.1.60.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"product": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"product_id": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"product": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"product_id": "google-guest-agent-20250327.01-150000.1.60.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"product": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"product_id": "google-guest-agent-20250327.01-150000.1.60.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.5",
"product": {
"name": "SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-micro:5.5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product": {
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-public-cloud:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product": {
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-public-cloud:15:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product": {
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-public-cloud:15:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product": {
"name": "SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-public-cloud:15:sp6"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.6",
"product": {
"name": "openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.6"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64 as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64 as component of SUSE Linux Enterprise Micro 5.5",
"product_id": "SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP3",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP5",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 15 SP6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.aarch64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.s390x"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250327.01-150000.1.60.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
},
"product_reference": "google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.6"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Micro 5.5:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP3:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP4:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP5:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 15 SP6:google-guest-agent-20250327.01-150000.1.60.1.x86_64",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.aarch64",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.ppc64le",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.s390x",
"openSUSE Leap 15.6:google-guest-agent-20250327.01-150000.1.60.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-04T13:31:31Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
SUSE-SU-2025:20196-1
Vulnerability from csaf_suse - Published: 2025-04-22 14:08 - Updated: 2025-04-22 14:08Summary
Security update for helm
Severity
Important
Notes
Title of the patch: Security update for helm
Description of the patch: This update for helm fixes the following issues:
- Update to version 3.17.2 (bsc#1238688, CVE-2025-22870):
* Updating to 0.37.0 for x/net
* build(deps): bump the k8s-io group with 7 updates
- Update to version 3.17.1:
* merge null child chart objects
* build(deps): bump the k8s-io group with 7 updates
* fix: check group for resource info match
- Update to 3.17.0 (bsc#1235318, CVE-2024-45338):
Full changelog:
https://github.com/helm/helm/releases/tag/v3.17.0
* Notable Changes
- Allow pulling and installation by OCI digest
- Annotations and dependencies are now in chart metadata output
- New --take-ownership flag for install and upgrade commands
- SDK: Authorizer and registry authorizer are now configurable
- Removed the Kubernetes configuration file permissions check
- Added username/password to helm push and dependency
build/update subcommands
- Added toYamlPretty template function
- Update to version 3.16.4 (bsc#1234482, CVE-2024-45337):
* Bump golang.org/x/crypto from 0.30.0 to 0.31.0
* Bump the k8s-io group with 7 updates
Patchnames: SUSE-SLE-Micro-6.0-291
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
6.4 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
5.9 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
4.4 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
References
25 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for helm",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for helm fixes the following issues:\n\n- Update to version 3.17.2 (bsc#1238688, CVE-2025-22870):\n\n * Updating to 0.37.0 for x/net\n * build(deps): bump the k8s-io group with 7 updates\n\n- Update to version 3.17.1:\n\n * merge null child chart objects\n * build(deps): bump the k8s-io group with 7 updates\n * fix: check group for resource info match\n\n- Update to 3.17.0 (bsc#1235318, CVE-2024-45338):\n\n Full changelog:\n\n https://github.com/helm/helm/releases/tag/v3.17.0\n\n * Notable Changes\n\n - Allow pulling and installation by OCI digest\n - Annotations and dependencies are now in chart metadata output\n - New --take-ownership flag for install and upgrade commands\n - SDK: Authorizer and registry authorizer are now configurable\n - Removed the Kubernetes configuration file permissions check\n - Added username/password to helm push and dependency\n build/update subcommands\n - Added toYamlPretty template function\n\n\n- Update to version 3.16.4 (bsc#1234482, CVE-2024-45337):\n\n * Bump golang.org/x/crypto from 0.30.0 to 0.31.0\n * Bump the k8s-io group with 7 updates\n\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-SLE-Micro-6.0-291",
"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/suse-su-2025_20196-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:20196-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520196-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:20196-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021144.html"
},
{
"category": "self",
"summary": "SUSE Bug 1219969",
"url": "https://bugzilla.suse.com/1219969"
},
{
"category": "self",
"summary": "SUSE Bug 1220207",
"url": "https://bugzilla.suse.com/1220207"
},
{
"category": "self",
"summary": "SUSE Bug 1234482",
"url": "https://bugzilla.suse.com/1234482"
},
{
"category": "self",
"summary": "SUSE Bug 1235318",
"url": "https://bugzilla.suse.com/1235318"
},
{
"category": "self",
"summary": "SUSE Bug 1238688",
"url": "https://bugzilla.suse.com/1238688"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-25620 page",
"url": "https://www.suse.com/security/cve/CVE-2024-25620/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-26147 page",
"url": "https://www.suse.com/security/cve/CVE-2024-26147/"
},
{
"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-22870 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22870/"
}
],
"title": "Security update for helm",
"tracking": {
"current_release_date": "2025-04-22T14:08:15Z",
"generator": {
"date": "2025-04-22T14:08:15Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:20196-1",
"initial_release_date": "2025-04-22T14:08:15Z",
"revision_history": [
{
"date": "2025-04-22T14:08:15Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-1.1.aarch64",
"product": {
"name": "helm-3.17.2-1.1.aarch64",
"product_id": "helm-3.17.2-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-bash-completion-3.17.2-1.1.noarch",
"product": {
"name": "helm-bash-completion-3.17.2-1.1.noarch",
"product_id": "helm-bash-completion-3.17.2-1.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-1.1.s390x",
"product": {
"name": "helm-3.17.2-1.1.s390x",
"product_id": "helm-3.17.2-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-1.1.x86_64",
"product": {
"name": "helm-3.17.2-1.1.x86_64",
"product_id": "helm-3.17.2-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Micro 6.0",
"product": {
"name": "SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sl-micro:6.0"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-1.1.aarch64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64"
},
"product_reference": "helm-3.17.2-1.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-1.1.s390x as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x"
},
"product_reference": "helm-3.17.2-1.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-1.1.x86_64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64"
},
"product_reference": "helm-3.17.2-1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.2-1.1.noarch as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.2-1.1.noarch",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-25620",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-25620"
}
],
"notes": [
{
"category": "general",
"text": "Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources. When either the Helm client or SDK is used to save a chart whose name within the `Chart.yaml` file includes a relative path change, the chart would be saved outside its expected directory based on the changes in the relative path. The validation and linting did not detect the path changes in the name. This issue has been resolved in Helm v3.14.1. Users unable to upgrade should check all charts used by Helm for path changes in their name as found in the `Chart.yaml` file. This includes dependencies.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-25620",
"url": "https://www.suse.com/security/cve/CVE-2024-25620"
},
{
"category": "external",
"summary": "SUSE Bug 1219969 for CVE-2024-25620",
"url": "https://bugzilla.suse.com/1219969"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T14:08:15Z",
"details": "moderate"
}
],
"title": "CVE-2024-25620"
},
{
"cve": "CVE-2024-26147",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-26147"
}
],
"notes": [
{
"category": "general",
"text": "Helm is a package manager for Charts for Kubernetes. Versions prior to 3.14.2 contain an uninitialized variable vulnerability when Helm parses index and plugin yaml files missing expected content. When either an `index.yaml` file or a plugins `plugin.yaml` file were missing all metadata a panic would occur in Helm. In the Helm SDK, this is found when using the `LoadIndexFile` or `DownloadIndexFile` functions in the `repo` package or the `LoadDir` function in the `plugin` package. For the Helm client this impacts functions around adding a repository and all Helm functions if a malicious plugin is added as Helm inspects all known plugins on each invocation. This issue has been resolved in Helm v3.14.2. If a malicious plugin has been added which is causing all Helm client commands to panic, the malicious plugin can be manually removed from the filesystem. If using Helm SDK versions prior to 3.14.2, calls to affected functions can use `recover` to catch the panic.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-26147",
"url": "https://www.suse.com/security/cve/CVE-2024-26147"
},
{
"category": "external",
"summary": "SUSE Bug 1220207 for CVE-2024-26147",
"url": "https://bugzilla.suse.com/1220207"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T14:08:15Z",
"details": "moderate"
}
],
"title": "CVE-2024-26147"
},
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T14:08:15Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T14:08:15Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
},
{
"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": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
},
"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": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"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": [
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.aarch64",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.s390x",
"SUSE Linux Micro 6.0:helm-3.17.2-1.1.x86_64",
"SUSE Linux Micro 6.0:helm-bash-completion-3.17.2-1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T14:08:15Z",
"details": "moderate"
}
],
"title": "CVE-2025-22870"
}
]
}
SUSE-SU-2025:20278-1
Vulnerability from csaf_suse - Published: 2025-04-22 13:49 - Updated: 2025-04-22 13:49Summary
Security update for helm
Severity
Important
Notes
Title of the patch: Security update for helm
Description of the patch: This update for helm fixes the following issues:
- Update to version 3.17.2 (bsc#1238688, CVE-2025-22870):
* Updating to 0.37.0 for x/net
* build(deps): bump the k8s-io group with 7 updates
- Update to version 3.17.1:
* merge null child chart objects
* build(deps): bump the k8s-io group with 7 updates
* fix: check group for resource info match
- Update to 3.17.0 (bsc#1235318, CVE-2024-45338):
Full changelog:
https://github.com/helm/helm/releases/tag/v3.17.0
* Notable Changes
- Allow pulling and installation by OCI digest
- Annotations and dependencies are now in chart metadata output
- New --take-ownership flag for install and upgrade commands
- SDK: Authorizer and registry authorizer are now configurable
- Removed the Kubernetes configuration file permissions check
- Added username/password to helm push and dependency
build/update subcommands
- Added toYamlPretty template function
- Update to version 3.16.4 (bsc#1234482, CVE-2024-45337):
* Bump golang.org/x/crypto from 0.30.0 to 0.31.0
* Bump the k8s-io group with 7 updates
Patchnames: SUSE-SLE-Micro-6.1-75
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
6.4 (Medium)
Affected products
Recommended
5 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
5.9 (Medium)
Affected products
Recommended
5 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
5 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch | — |
Vendor Fix
|
Threats
Impact
important
5.9 (Medium)
Affected products
Recommended
5 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
4.4 (Medium)
Affected products
Recommended
5 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch | — |
Vendor Fix
|
Threats
Impact
moderate
References
25 references
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for helm",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for helm fixes the following issues:\n\n- Update to version 3.17.2 (bsc#1238688, CVE-2025-22870):\n\n * Updating to 0.37.0 for x/net\n * build(deps): bump the k8s-io group with 7 updates\n\n- Update to version 3.17.1:\n\n * merge null child chart objects\n * build(deps): bump the k8s-io group with 7 updates\n * fix: check group for resource info match\n\n- Update to 3.17.0 (bsc#1235318, CVE-2024-45338):\n\n Full changelog:\n https://github.com/helm/helm/releases/tag/v3.17.0\n\n * Notable Changes\n\n - Allow pulling and installation by OCI digest\n - Annotations and dependencies are now in chart metadata output\n - New --take-ownership flag for install and upgrade commands\n - SDK: Authorizer and registry authorizer are now configurable\n - Removed the Kubernetes configuration file permissions check\n - Added username/password to helm push and dependency\n build/update subcommands\n - Added toYamlPretty template function\n\n- Update to version 3.16.4 (bsc#1234482, CVE-2024-45337):\n\n * Bump golang.org/x/crypto from 0.30.0 to 0.31.0\n * Bump the k8s-io group with 7 updates\n\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-SLE-Micro-6.1-75",
"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/suse-su-2025_20278-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2025:20278-1",
"url": "https://www.suse.com/support/update/announcement/2025/suse-su-202520278-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2025:20278-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021044.html"
},
{
"category": "self",
"summary": "SUSE Bug 1219969",
"url": "https://bugzilla.suse.com/1219969"
},
{
"category": "self",
"summary": "SUSE Bug 1220207",
"url": "https://bugzilla.suse.com/1220207"
},
{
"category": "self",
"summary": "SUSE Bug 1234482",
"url": "https://bugzilla.suse.com/1234482"
},
{
"category": "self",
"summary": "SUSE Bug 1235318",
"url": "https://bugzilla.suse.com/1235318"
},
{
"category": "self",
"summary": "SUSE Bug 1238688",
"url": "https://bugzilla.suse.com/1238688"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-25620 page",
"url": "https://www.suse.com/security/cve/CVE-2024-25620/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2024-26147 page",
"url": "https://www.suse.com/security/cve/CVE-2024-26147/"
},
{
"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-22870 page",
"url": "https://www.suse.com/security/cve/CVE-2025-22870/"
}
],
"title": "Security update for helm",
"tracking": {
"current_release_date": "2025-04-22T13:49:38Z",
"generator": {
"date": "2025-04-22T13:49:38Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2025:20278-1",
"initial_release_date": "2025-04-22T13:49:38Z",
"revision_history": [
{
"date": "2025-04-22T13:49:38Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-slfo.1.1_1.1.aarch64",
"product": {
"name": "helm-3.17.2-slfo.1.1_1.1.aarch64",
"product_id": "helm-3.17.2-slfo.1.1_1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch",
"product": {
"name": "helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch",
"product_id": "helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-slfo.1.1_1.1.ppc64le",
"product": {
"name": "helm-3.17.2-slfo.1.1_1.1.ppc64le",
"product_id": "helm-3.17.2-slfo.1.1_1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-slfo.1.1_1.1.s390x",
"product": {
"name": "helm-3.17.2-slfo.1.1_1.1.s390x",
"product_id": "helm-3.17.2-slfo.1.1_1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "helm-3.17.2-slfo.1.1_1.1.x86_64",
"product": {
"name": "helm-3.17.2-slfo.1.1_1.1.x86_64",
"product_id": "helm-3.17.2-slfo.1.1_1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Micro 6.1",
"product": {
"name": "SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sl-micro:6.1"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-slfo.1.1_1.1.aarch64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64"
},
"product_reference": "helm-3.17.2-slfo.1.1_1.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-slfo.1.1_1.1.ppc64le as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le"
},
"product_reference": "helm-3.17.2-slfo.1.1_1.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-slfo.1.1_1.1.s390x as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x"
},
"product_reference": "helm-3.17.2-slfo.1.1_1.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-3.17.2-slfo.1.1_1.1.x86_64 as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64"
},
"product_reference": "helm-3.17.2-slfo.1.1_1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch as component of SUSE Linux Micro 6.1",
"product_id": "SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
},
"product_reference": "helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch",
"relates_to_product_reference": "SUSE Linux Micro 6.1"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-25620",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-25620"
}
],
"notes": [
{
"category": "general",
"text": "Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources. When either the Helm client or SDK is used to save a chart whose name within the `Chart.yaml` file includes a relative path change, the chart would be saved outside its expected directory based on the changes in the relative path. The validation and linting did not detect the path changes in the name. This issue has been resolved in Helm v3.14.1. Users unable to upgrade should check all charts used by Helm for path changes in their name as found in the `Chart.yaml` file. This includes dependencies.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-25620",
"url": "https://www.suse.com/security/cve/CVE-2024-25620"
},
{
"category": "external",
"summary": "SUSE Bug 1219969 for CVE-2024-25620",
"url": "https://bugzilla.suse.com/1219969"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T13:49:38Z",
"details": "moderate"
}
],
"title": "CVE-2024-25620"
},
{
"cve": "CVE-2024-26147",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-26147"
}
],
"notes": [
{
"category": "general",
"text": "Helm is a package manager for Charts for Kubernetes. Versions prior to 3.14.2 contain an uninitialized variable vulnerability when Helm parses index and plugin yaml files missing expected content. When either an `index.yaml` file or a plugins `plugin.yaml` file were missing all metadata a panic would occur in Helm. In the Helm SDK, this is found when using the `LoadIndexFile` or `DownloadIndexFile` functions in the `repo` package or the `LoadDir` function in the `plugin` package. For the Helm client this impacts functions around adding a repository and all Helm functions if a malicious plugin is added as Helm inspects all known plugins on each invocation. This issue has been resolved in Helm v3.14.2. If a malicious plugin has been added which is causing all Helm client commands to panic, the malicious plugin can be manually removed from the filesystem. If using Helm SDK versions prior to 3.14.2, calls to affected functions can use `recover` to catch the panic.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-26147",
"url": "https://www.suse.com/security/cve/CVE-2024-26147"
},
{
"category": "external",
"summary": "SUSE Bug 1220207 for CVE-2024-26147",
"url": "https://bugzilla.suse.com/1220207"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T13:49:38Z",
"details": "moderate"
}
],
"title": "CVE-2024-26147"
},
{
"cve": "CVE-2024-45337",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45337"
}
],
"notes": [
{
"category": "general",
"text": "Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that \"A call to this function does not guarantee that the key offered is in fact used to authenticate.\" Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T13:49:38Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2024-45338"
}
],
"notes": [
{
"category": "general",
"text": "An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45338",
"url": "https://www.suse.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "SUSE Bug 1234794 for CVE-2024-45338",
"url": "https://bugzilla.suse.com/1234794"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T13:49:38Z",
"details": "moderate"
}
],
"title": "CVE-2024-45338"
},
{
"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": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
},
"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": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"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": [
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.aarch64",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.ppc64le",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.s390x",
"SUSE Linux Micro 6.1:helm-3.17.2-slfo.1.1_1.1.x86_64",
"SUSE Linux Micro 6.1:helm-bash-completion-3.17.2-slfo.1.1_1.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2025-04-22T13:49:38Z",
"details": "moderate"
}
],
"title": "CVE-2025-22870"
}
]
}
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…