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-30",
"epss": "0.03092",
"percentile": "0.86082"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2024-45337\",\"sourceIdentifier\":\"security@golang.org\",\"published\":\"2024-12-12T02:02:07.970\",\"lastModified\":\"2026-06-17T07:54:03.360\",\"vulnStatus\":\"Deferred\",\"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.\"}],\"affected\":[{\"source\":\"security@golang.org\",\"affectedData\":[{\"vendor\":\"golang.org/x/crypto\",\"product\":\"golang.org/x/crypto/ssh\",\"defaultStatus\":\"unaffected\",\"collectionURL\":\"https://pkg.go.dev\",\"packageName\":\"golang.org/x/crypto/ssh\",\"programRoutines\":[{\"name\":\"ServerConfig.PublicKeyCallback\"},{\"name\":\"connection.serverAuthenticate\"},{\"name\":\"NewServerConn\"}],\"versions\":[{\"version\":\"0\",\"lessThan\":\"0.31.0\",\"versionType\":\"semver\",\"status\":\"affected\"}]}]}],\"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}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2024-12-12T17:57:55.896008Z\",\"id\":\"CVE-2024-45337\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"total\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"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-2026:0592-1
Vulnerability from csaf_suse - Published: 2026-02-20 14:27 - Updated: 2026-02-20 14:27Summary
Security update for vexctl
Severity
Important
Notes
Title of the patch: Security update for vexctl
Description of the patch: This update for vexctl fixes the following issues:
- Update to version 0.4.1+git78.f951e3a:
- CVE-2025-22868: Unexpected memory consumption during token parsing in golang.org/x/oauth2. (bsc#1239186)
- CVE-2024-45337: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto. (bsc#1234486)
- CVE-2025-27144: Go JOSE's Parsing Vulnerable to Denial of Service. (bsc#1237611)
- CVE-2025-22870: proxy bypass using IPv6 zone IDs. (bsc#1238683)
- CVE-2025-22869: Denial of Service in the Key Exchange of golang.org/x/crypto/ssh. (bsc#1239323)
- CVE-2025-30204: jwt-go allows excessive memory allocation during header parsing. (bsc#1240444)
- CVE-2025-58181: invalidated number of mechanisms can cause unbounded memory consumption. (bsc#1253802)
- CVE-2026-22772: MetaIssuer URL validation bypass can trigger SSRF to arbitrary internal services. (bsc#1256535)
- CVE-2026-24137: legacy TUF client allows for arbitrary file writes with target cache path traversal. (bsc#1257138)
Patchnames: SUSE-2026-592,openSUSE-SLE-15.6-2026-592
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
4.4 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
7.5 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.3 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
5.8 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
5.3 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
References
44 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 vexctl",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for vexctl fixes the following issues:\n\n- Update to version 0.4.1+git78.f951e3a:\n- CVE-2025-22868: Unexpected memory consumption during token parsing in golang.org/x/oauth2. (bsc#1239186)\n- CVE-2024-45337: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto. (bsc#1234486)\n- CVE-2025-27144: Go JOSE\u0027s Parsing Vulnerable to Denial of Service. (bsc#1237611)\n- CVE-2025-22870: proxy bypass using IPv6 zone IDs. (bsc#1238683)\n- CVE-2025-22869: Denial of Service in the Key Exchange of golang.org/x/crypto/ssh. (bsc#1239323)\n- CVE-2025-30204: jwt-go allows excessive memory allocation during header parsing. (bsc#1240444)\n- CVE-2025-58181: invalidated number of mechanisms can cause unbounded memory consumption. (bsc#1253802)\n- CVE-2026-22772: MetaIssuer URL validation bypass can trigger SSRF to arbitrary internal services. (bsc#1256535)\n- CVE-2026-24137: legacy TUF client allows for arbitrary file writes with target cache path traversal. (bsc#1257138)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-592,openSUSE-SLE-15.6-2026-592",
"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-2026_0592-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:0592-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20260592-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:0592-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024365.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234486",
"url": "https://bugzilla.suse.com/1234486"
},
{
"category": "self",
"summary": "SUSE Bug 1237611",
"url": "https://bugzilla.suse.com/1237611"
},
{
"category": "self",
"summary": "SUSE Bug 1238683",
"url": "https://bugzilla.suse.com/1238683"
},
{
"category": "self",
"summary": "SUSE Bug 1239186",
"url": "https://bugzilla.suse.com/1239186"
},
{
"category": "self",
"summary": "SUSE Bug 1239323",
"url": "https://bugzilla.suse.com/1239323"
},
{
"category": "self",
"summary": "SUSE Bug 1240444",
"url": "https://bugzilla.suse.com/1240444"
},
{
"category": "self",
"summary": "SUSE Bug 1253802",
"url": "https://bugzilla.suse.com/1253802"
},
{
"category": "self",
"summary": "SUSE Bug 1256535",
"url": "https://bugzilla.suse.com/1256535"
},
{
"category": "self",
"summary": "SUSE Bug 1257138",
"url": "https://bugzilla.suse.com/1257138"
},
{
"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/"
},
{
"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/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-30204 page",
"url": "https://www.suse.com/security/cve/CVE-2025-30204/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-58181 page",
"url": "https://www.suse.com/security/cve/CVE-2025-58181/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-22772 page",
"url": "https://www.suse.com/security/cve/CVE-2026-22772/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-24137 page",
"url": "https://www.suse.com/security/cve/CVE-2026-24137/"
}
],
"title": "Security update for vexctl",
"tracking": {
"current_release_date": "2026-02-20T14:27:24Z",
"generator": {
"date": "2026-02-20T14:27:24Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:0592-1",
"initial_release_date": "2026-02-20T14:27:24Z",
"revision_history": [
{
"date": "2026-02-20T14:27:24Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"product": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"product_id": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.i586",
"product": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.i586",
"product_id": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"product": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"product_id": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"product": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"product_id": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64",
"product": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64",
"product_id": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"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": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64"
},
"product_reference": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le"
},
"product_reference": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x"
},
"product_reference": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64 as component of openSUSE Leap 15.6",
"product_id": "openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
},
"product_reference": "vexctl-0.4.1+git78.f951e3a-150000.1.11.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": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"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": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22868",
"url": "https://www.suse.com/security/cve/CVE-2025-22868"
},
{
"category": "external",
"summary": "SUSE Bug 1239185 for CVE-2025-22868",
"url": "https://bugzilla.suse.com/1239185"
},
{
"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": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"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": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
},
{
"cve": "CVE-2025-22870",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-22870"
}
],
"notes": [
{
"category": "general",
"text": "Matching of hosts against proxy patterns can improperly treat an IPv6 zone ID as a hostname component. For example, when the NO_PROXY environment variable is set to \"*.example.com\", a request to \"[::1%25.example.com]:80` will incorrectly match and not be proxied.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22870",
"url": "https://www.suse.com/security/cve/CVE-2025-22870"
},
{
"category": "external",
"summary": "SUSE Bug 1238572 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238572"
},
{
"category": "external",
"summary": "SUSE Bug 1238611 for CVE-2025-22870",
"url": "https://bugzilla.suse.com/1238611"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "moderate"
}
],
"title": "CVE-2025-22870"
},
{
"cve": "CVE-2025-27144",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-27144"
}
],
"notes": [
{
"category": "general",
"text": "Go JOSE provides an implementation of the Javascript Object Signing and Encryption set of standards in Go, including support for JSON Web Encryption (JWE), JSON Web Signature (JWS), and JSON Web Token (JWT) standards. In versions on the 4.x branch prior to version 4.0.5, when parsing compact JWS or JWE input, Go JOSE could use excessive memory. The code used strings.Split(token, \".\") to split JWT tokens, which is vulnerable to excessive memory consumption when processing maliciously crafted tokens with a large number of `.` characters. An attacker could exploit this by sending numerous malformed tokens, leading to memory exhaustion and a Denial of Service. Version 4.0.5 fixes this issue. As a workaround, applications could pre-validate that payloads passed to Go JOSE do not contain an excessive number of `.` characters.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-27144",
"url": "https://www.suse.com/security/cve/CVE-2025-27144"
},
{
"category": "external",
"summary": "SUSE Bug 1237608 for CVE-2025-27144",
"url": "https://bugzilla.suse.com/1237608"
},
{
"category": "external",
"summary": "SUSE Bug 1237609 for CVE-2025-27144",
"url": "https://bugzilla.suse.com/1237609"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "important"
}
],
"title": "CVE-2025-27144"
},
{
"cve": "CVE-2025-30204",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-30204"
}
],
"notes": [
{
"category": "general",
"text": "golang-jwt is a Go implementation of JSON Web Tokens. Starting in version 3.2.0 and prior to versions 5.2.2 and 4.5.2, the function parse.ParseUnverified splits (via a call to strings.Split) its argument (which is untrusted data) on periods. As a result, in the face of a malicious request whose Authorization header consists of Bearer followed by many period characters, a call to that function incurs allocations to the tune of O(n) bytes (where n stands for the length of the function\u0027s argument), with a constant factor of about 16. This issue is fixed in 5.2.2 and 4.5.2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-30204",
"url": "https://www.suse.com/security/cve/CVE-2025-30204"
},
{
"category": "external",
"summary": "SUSE Bug 1240441 for CVE-2025-30204",
"url": "https://bugzilla.suse.com/1240441"
},
{
"category": "external",
"summary": "SUSE Bug 1240442 for CVE-2025-30204",
"url": "https://bugzilla.suse.com/1240442"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "important"
}
],
"title": "CVE-2025-30204"
},
{
"cve": "CVE-2025-58181",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-58181"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers parsing GSSAPI authentication requests do not validate the number of mechanisms specified in the request, allowing an attacker to cause unbounded memory consumption.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-58181",
"url": "https://www.suse.com/security/cve/CVE-2025-58181"
},
{
"category": "external",
"summary": "SUSE Bug 1253784 for CVE-2025-58181",
"url": "https://bugzilla.suse.com/1253784"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "moderate"
}
],
"title": "CVE-2025-58181"
},
{
"cve": "CVE-2026-22772",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-22772"
}
],
"notes": [
{
"category": "general",
"text": "Fulcio is a certificate authority for issuing code signing certificates for an OpenID Connect (OIDC) identity. Prior to 1.8.5, Fulcio\u0027s metaRegex() function uses unanchored regex, allowing attackers to bypass MetaIssuer URL validation and trigger SSRF to arbitrary internal services. Since the SSRF only can trigger GET requests, the request cannot mutate state. The response from the GET request is not returned to the caller so data exfiltration is not possible. A malicious actor could attempt to probe an internal network through Blind SSRF. This vulnerability is fixed in 1.8.5.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-22772",
"url": "https://www.suse.com/security/cve/CVE-2026-22772"
},
{
"category": "external",
"summary": "SUSE Bug 1256532 for CVE-2026-22772",
"url": "https://bugzilla.suse.com/1256532"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.8,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "moderate"
}
],
"title": "CVE-2026-22772"
},
{
"cve": "CVE-2026-24137",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-24137"
}
],
"notes": [
{
"category": "general",
"text": "sigstore framework is a common go library shared across sigstore services and clients. In versions 1.10.3 and below, the legacy TUF client (pkg/tuf/client.go) supports caching target files to disk. It constructs a filesystem path by joining a cache base directory with a target name sourced from signed target metadata; however, it does not validate that the resulting path stays within the cache base directory. A malicious TUF repository can trigger arbitrary file overwriting, limited to the permissions that the calling process has. Note that this should only affect clients that are directly using the TUF client in sigstore/sigstore or are using an older version of Cosign. Public Sigstore deployment users are unaffected, as TUF metadata is validated by a quorum of trusted collaborators. This issue has been fixed in version 1.10.4. As a workaround, users can disable disk caching for the legacy client by setting SIGSTORE_NO_CACHE=true in the environment, migrate to https://github.com/sigstore/sigstore-go/tree/main/pkg/tuf, or upgrade to the latest sigstore/sigstore release.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-24137",
"url": "https://www.suse.com/security/cve/CVE-2026-24137"
},
{
"category": "external",
"summary": "SUSE Bug 1257137 for CVE-2026-24137",
"url": "https://bugzilla.suse.com/1257137"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.aarch64",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.ppc64le",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.s390x",
"openSUSE Leap 15.6:vexctl-0.4.1+git78.f951e3a-150000.1.11.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-20T14:27:24Z",
"details": "moderate"
}
],
"title": "CVE-2026-24137"
}
]
}
SUSE-SU-2026:21319-1
Vulnerability from csaf_suse - Published: 2026-04-22 10:58 - Updated: 2026-04-22 10:58Summary
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:
Update to version 20250506.01 (bsc#1243254, bsc#1243505).
Security issues fixed:
- CVE-2024-45337: golang.org/x/crypto/ssh: misuse of the ServerConfig.PublicKeyCallback callback can lead to
authorization bypass in applications (bsc#1234563).
- CVE-2023-45288: golang.org/x/net/http2: no limit set for number of HTTP/2 CONTINUATION frames that can be read for an
HTTP/2 request can lead to excessive CPU consumption and a DoS (bsc#1236533).
Other updates and bugfixes:
- Version 20250506.01:
* Make sure agent added connections are activated by NM (#534)
- Version 20250506.00:
* Wrap NSS cache refresh in a goroutine (#533)
- Version 20250502.01:
* Wicked: Only reload interfaces for which configurations are written or changed. (#524)
- Version 20250502.00:
* Add AuthorizedKeysCompat to windows packaging (#530)
* Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)
* 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)
- Version 20250418.00:
* Re-enable disabled services if the core plugin was enabled (#521)
- Version 20250414.00:
* Add AuthorizedKeysCompat to windows packaging (#530)
* Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)
* 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)
- Version 20250327.01 (bsc#1239763, bsc#1239866):
* Remove error messages from gce_workload_cert_refresh and
metadata script runner (#527)
- 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)
- Version 20250326.00:
* Re-enable disabled services if the core plugin was enabled (#521)
- 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)
- 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)
- 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)
- 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)
- Version 20250304.01:
* Fix typo in windows build script (#501)
- Version 20250214.01:
* Include core plugin binary for all packages (#500)
- Version 20250212.00:
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
- Version 20250211.00:
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- 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)
- Version 20250204.02:
* force concourse to move version forward.
- Version 20250204.01:
* vlan: toggle vlan configuration in debian packaging (#495)
- Version 20250204.00:
* vlan: move config out of unstable section (#494)
* Add clarification to comments regarding invalid NICs and the
`invalid` tag. (#493)
- Version 20250203.01:
* Include interfaces in lists even if it has an invalid MAC. (#489)
- 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)
- 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-SLE-Micro-6.0-682
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
5.3 (Medium)
Affected products
Recommended
3 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
3 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
16 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\nUpdate to version 20250506.01 (bsc#1243254, bsc#1243505).\n\nSecurity issues fixed:\n\n- CVE-2024-45337: golang.org/x/crypto/ssh: misuse of the ServerConfig.PublicKeyCallback callback can lead to\n authorization bypass in applications (bsc#1234563).\n- CVE-2023-45288: golang.org/x/net/http2: no limit set for number of HTTP/2 CONTINUATION frames that can be read for an\n HTTP/2 request can lead to excessive CPU consumption and a DoS (bsc#1236533).\n\nOther updates and bugfixes:\n\n- Version 20250506.01:\n * Make sure agent added connections are activated by NM (#534)\n- Version 20250506.00:\n * Wrap NSS cache refresh in a goroutine (#533)\n- Version 20250502.01:\n * Wicked: Only reload interfaces for which configurations are written or changed. (#524)\n- Version 20250502.00:\n * Add AuthorizedKeysCompat to windows packaging (#530)\n * Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)\n * Update guest-logging-go dependency (#526)\n * Add \u0027created-by\u0027 metadata, and pass it as option to logging library (#508)\n * Revert \"oslogin: Correctly handle newlines at the end of modified files (#520)\" (#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 \"Revert bundling new binaries in the package (#509)\" (#511)\n- Version 20250418.00:\n * Re-enable disabled services if the core plugin was enabled (#521)\n- Version 20250414.00:\n * Add AuthorizedKeysCompat to windows packaging (#530)\n * Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)\n * Update guest-logging-go dependency (#526)\n * Add \u0027created-by\u0027 metadata, and pass it as option to logging library (#508)\n * Revert \"oslogin: Correctly handle newlines at the end of modified files (#520)\" (#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 \"Revert bundling new binaries in the package (#509)\" (#511)\n- Version 20250327.01 (bsc#1239763, bsc#1239866):\n * Remove error messages from gce_workload_cert_refresh and\n metadata script runner (#527)\n- 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 \"oslogin: Correctly handle newlines at the end of\n modified files (#520)\" (#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 \"Revert bundling new binaries in the package (#509)\" (#511)\n- Version 20250326.00:\n * Re-enable disabled services if the core plugin was enabled (#521)\n- 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 \"Revert bundling new binaries in the package (#509)\" (#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- Version 20250317.00:\n * Revert \"Revert bundling new binaries in the package (#509)\" (#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- 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- 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- Version 20250304.01:\n * Fix typo in windows build script (#501)\n- Version 20250214.01:\n * Include core plugin binary for all packages (#500)\n- Version 20250212.00:\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n- Version 20250211.00:\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- 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- Version 20250204.02:\n * force concourse to move version forward.\n- Version 20250204.01:\n * vlan: toggle vlan configuration in debian packaging (#495)\n- 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- Version 20250203.01:\n * Include interfaces in lists even if it has an invalid MAC. (#489)\n- 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- 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-SLE-Micro-6.0-682",
"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-2026_21319-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:21319-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-202621319-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:21319-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-April/045998.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234563",
"url": "https://bugzilla.suse.com/1234563"
},
{
"category": "self",
"summary": "SUSE Bug 1236533",
"url": "https://bugzilla.suse.com/1236533"
},
{
"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 Bug 1243254",
"url": "https://bugzilla.suse.com/1243254"
},
{
"category": "self",
"summary": "SUSE Bug 1243505",
"url": "https://bugzilla.suse.com/1243505"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-45288 page",
"url": "https://www.suse.com/security/cve/CVE-2023-45288/"
},
{
"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": "2026-04-22T10:58:34Z",
"generator": {
"date": "2026-04-22T10:58:34Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:21319-1",
"initial_release_date": "2026-04-22T10:58:34Z",
"revision_history": [
{
"date": "2026-04-22T10:58:34Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250506.01-1.1.aarch64",
"product": {
"name": "google-guest-agent-20250506.01-1.1.aarch64",
"product_id": "google-guest-agent-20250506.01-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250506.01-1.1.s390x",
"product": {
"name": "google-guest-agent-20250506.01-1.1.s390x",
"product_id": "google-guest-agent-20250506.01-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250506.01-1.1.x86_64",
"product": {
"name": "google-guest-agent-20250506.01-1.1.x86_64",
"product_id": "google-guest-agent-20250506.01-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": "google-guest-agent-20250506.01-1.1.aarch64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64"
},
"product_reference": "google-guest-agent-20250506.01-1.1.aarch64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250506.01-1.1.s390x as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x"
},
"product_reference": "google-guest-agent-20250506.01-1.1.s390x",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250506.01-1.1.x86_64 as component of SUSE Linux Micro 6.0",
"product_id": "SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
},
"product_reference": "google-guest-agent-20250506.01-1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Micro 6.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-45288",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-45288"
}
],
"notes": [
{
"category": "general",
"text": "An attacker may cause an HTTP/2 endpoint to read arbitrary amounts of header data by sending an excessive number of CONTINUATION frames. Maintaining HPACK state requires parsing and processing all HEADERS and CONTINUATION frames on a connection. When a request\u0027s headers exceed MaxHeaderBytes, no memory is allocated to store the excess headers, but they are still parsed. This permits an attacker to cause an HTTP/2 endpoint to read arbitrary amounts of header data, all associated with a request which is going to be rejected. These headers can include Huffman-encoded data which is significantly more expensive for the receiver to decode than for an attacker to send. The fix sets a limit on the amount of excess header frames we will process before closing a connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-45288",
"url": "https://www.suse.com/security/cve/CVE-2023-45288"
},
{
"category": "external",
"summary": "SUSE Bug 1221400 for CVE-2023-45288",
"url": "https://bugzilla.suse.com/1221400"
}
],
"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:google-guest-agent-20250506.01-1.1.aarch64",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-22T10:58:34Z",
"details": "moderate"
}
],
"title": "CVE-2023-45288"
},
{
"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:google-guest-agent-20250506.01-1.1.aarch64",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.aarch64",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.s390x",
"SUSE Linux Micro 6.0:google-guest-agent-20250506.01-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-22T10:58:34Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
SUSE-SU-2026:21376-1
Vulnerability from csaf_suse - Published: 2026-04-22 10:23 - Updated: 2026-04-22 10:23Summary
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:
Update to version 20250506.01 (bsc#1243254, bsc#1243505).
Security issues fixed:
- CVE-2024-45337: golang.org/x/crypto/ssh: misuse of the ServerConfig.PublicKeyCallback callback can lead to
authorization bypass in applications (bsc#1234563).
- CVE-2023-45288: golang.org/x/net/http2: no limit set for number of HTTP/2 CONTINUATION frames that can be read for an
HTTP/2 request can lead to excessive CPU consumption and a DoS (bsc#1236533).
Other updates and bugfixes:
- Version 20250506.01:
* Make sure agent added connections are activated by NM (#534)
- Version 20250506.00:
* Wrap NSS cache refresh in a goroutine (#533)
- Version 20250502.01:
* Wicked: Only reload interfaces for which configurations are written or changed. (#524)
- Version 20250502.00:
* Add AuthorizedKeysCompat to windows packaging (#530)
* Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)
* 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)
- Version 20250418.00:
* Re-enable disabled services if the core plugin was enabled (#521)
- Version 20250414.00:
* Add AuthorizedKeysCompat to windows packaging (#530)
* Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)
* 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)
- Version 20250327.01 (bsc#1239763, bsc#1239866):
* Remove error messages from gce_workload_cert_refresh and
metadata script runner (#527)
- 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)
- Version 20250326.00:
* Re-enable disabled services if the core plugin was enabled (#521)
- 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)
- 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)
- 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)
- 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)
- Version 20250304.01:
* Fix typo in windows build script (#501)
- Version 20250214.01:
* Include core plugin binary for all packages (#500)
- Version 20250212.00:
* Start packaging compat manager (#498)
* Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)
- Version 20250211.00:
* scripts: introduce a wrapper to locally build deb package (#490)
* Introduce compat-manager systemd unit (#497)
- 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)
- Version 20250204.02:
* force concourse to move version forward.
- Version 20250204.01:
* vlan: toggle vlan configuration in debian packaging (#495)
- Version 20250204.00:
* vlan: move config out of unstable section (#494)
* Add clarification to comments regarding invalid NICs and the
`invalid` tag. (#493)
- Version 20250203.01:
* Include interfaces in lists even if it has an invalid MAC. (#489)
- 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)
- 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-SLES-16.0-621
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
5.3 (Medium)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
4 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
16 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\nUpdate to version 20250506.01 (bsc#1243254, bsc#1243505).\n\nSecurity issues fixed:\n\n- CVE-2024-45337: golang.org/x/crypto/ssh: misuse of the ServerConfig.PublicKeyCallback callback can lead to\n authorization bypass in applications (bsc#1234563).\n- CVE-2023-45288: golang.org/x/net/http2: no limit set for number of HTTP/2 CONTINUATION frames that can be read for an\n HTTP/2 request can lead to excessive CPU consumption and a DoS (bsc#1236533).\n\nOther updates and bugfixes:\n\n- Version 20250506.01:\n * Make sure agent added connections are activated by NM (#534)\n- Version 20250506.00:\n * Wrap NSS cache refresh in a goroutine (#533)\n- Version 20250502.01:\n * Wicked: Only reload interfaces for which configurations are written or changed. (#524)\n- Version 20250502.00:\n * Add AuthorizedKeysCompat to windows packaging (#530)\n * Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)\n * Update guest-logging-go dependency (#526)\n * Add \u0027created-by\u0027 metadata, and pass it as option to logging library (#508)\n * Revert \"oslogin: Correctly handle newlines at the end of modified files (#520)\" (#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 \"Revert bundling new binaries in the package (#509)\" (#511)\n- Version 20250418.00:\n * Re-enable disabled services if the core plugin was enabled (#521)\n- Version 20250414.00:\n * Add AuthorizedKeysCompat to windows packaging (#530)\n * Remove error messages from gce_workload_cert_refresh and metadata script runner (#527)\n * Update guest-logging-go dependency (#526)\n * Add \u0027created-by\u0027 metadata, and pass it as option to logging library (#508)\n * Revert \"oslogin: Correctly handle newlines at the end of modified files (#520)\" (#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 \"Revert bundling new binaries in the package (#509)\" (#511)\n- Version 20250327.01 (bsc#1239763, bsc#1239866):\n * Remove error messages from gce_workload_cert_refresh and\n metadata script runner (#527)\n- 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 \"oslogin: Correctly handle newlines at the end of\n modified files (#520)\" (#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 \"Revert bundling new binaries in the package (#509)\" (#511)\n- Version 20250326.00:\n * Re-enable disabled services if the core plugin was enabled (#521)\n- 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 \"Revert bundling new binaries in the package (#509)\" (#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- Version 20250317.00:\n * Revert \"Revert bundling new binaries in the package (#509)\" (#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- 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- 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- Version 20250304.01:\n * Fix typo in windows build script (#501)\n- Version 20250214.01:\n * Include core plugin binary for all packages (#500)\n- Version 20250212.00:\n * Start packaging compat manager (#498)\n * Start bundling ggactl_plugin_cleanup binary in all agent packages (#492)\n- Version 20250211.00:\n * scripts: introduce a wrapper to locally build deb package (#490)\n * Introduce compat-manager systemd unit (#497)\n- 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- Version 20250204.02:\n * force concourse to move version forward.\n- Version 20250204.01:\n * vlan: toggle vlan configuration in debian packaging (#495)\n- 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- Version 20250203.01:\n * Include interfaces in lists even if it has an invalid MAC. (#489)\n- 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- 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-SLES-16.0-621",
"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-2026_21376-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:21376-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-202621376-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:21376-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-April/046065.html"
},
{
"category": "self",
"summary": "SUSE Bug 1234563",
"url": "https://bugzilla.suse.com/1234563"
},
{
"category": "self",
"summary": "SUSE Bug 1236533",
"url": "https://bugzilla.suse.com/1236533"
},
{
"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 Bug 1243254",
"url": "https://bugzilla.suse.com/1243254"
},
{
"category": "self",
"summary": "SUSE Bug 1243505",
"url": "https://bugzilla.suse.com/1243505"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-45288 page",
"url": "https://www.suse.com/security/cve/CVE-2023-45288/"
},
{
"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": "2026-04-22T10:23:05Z",
"generator": {
"date": "2026-04-22T10:23:05Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:21376-1",
"initial_release_date": "2026-04-22T10:23:05Z",
"revision_history": [
{
"date": "2026-04-22T10:23:05Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250506.01-160000.1.1.aarch64",
"product": {
"name": "google-guest-agent-20250506.01-160000.1.1.aarch64",
"product_id": "google-guest-agent-20250506.01-160000.1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20250506.01-160000.1.1.x86_64",
"product": {
"name": "google-guest-agent-20250506.01-160000.1.1.x86_64",
"product_id": "google-guest-agent-20250506.01-160000.1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 16.0",
"product": {
"name": "SUSE Linux Enterprise Server 16.0",
"product_id": "SUSE Linux Enterprise Server 16.0",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:16:16.0:server"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP applications 16.0",
"product": {
"name": "SUSE Linux Enterprise Server for SAP applications 16.0",
"product_id": "SUSE Linux Enterprise Server for SAP applications 16.0",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:16:16.0:server-sap"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250506.01-160000.1.1.aarch64 as component of SUSE Linux Enterprise Server 16.0",
"product_id": "SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64"
},
"product_reference": "google-guest-agent-20250506.01-160000.1.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250506.01-160000.1.1.x86_64 as component of SUSE Linux Enterprise Server 16.0",
"product_id": "SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
},
"product_reference": "google-guest-agent-20250506.01-160000.1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250506.01-160000.1.1.aarch64 as component of SUSE Linux Enterprise Server for SAP applications 16.0",
"product_id": "SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64"
},
"product_reference": "google-guest-agent-20250506.01-160000.1.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP applications 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20250506.01-160000.1.1.x86_64 as component of SUSE Linux Enterprise Server for SAP applications 16.0",
"product_id": "SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
},
"product_reference": "google-guest-agent-20250506.01-160000.1.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP applications 16.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-45288",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-45288"
}
],
"notes": [
{
"category": "general",
"text": "An attacker may cause an HTTP/2 endpoint to read arbitrary amounts of header data by sending an excessive number of CONTINUATION frames. Maintaining HPACK state requires parsing and processing all HEADERS and CONTINUATION frames on a connection. When a request\u0027s headers exceed MaxHeaderBytes, no memory is allocated to store the excess headers, but they are still parsed. This permits an attacker to cause an HTTP/2 endpoint to read arbitrary amounts of header data, all associated with a request which is going to be rejected. These headers can include Huffman-encoded data which is significantly more expensive for the receiver to decode than for an attacker to send. The fix sets a limit on the amount of excess header frames we will process before closing a connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-45288",
"url": "https://www.suse.com/security/cve/CVE-2023-45288"
},
{
"category": "external",
"summary": "SUSE Bug 1221400 for CVE-2023-45288",
"url": "https://bugzilla.suse.com/1221400"
}
],
"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 Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-22T10:23:05Z",
"details": "moderate"
}
],
"title": "CVE-2023-45288"
},
{
"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 Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2024-45337",
"url": "https://www.suse.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "SUSE Bug 1234482 for CVE-2024-45337",
"url": "https://bugzilla.suse.com/1234482"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.aarch64",
"SUSE Linux Enterprise Server for SAP applications 16.0:google-guest-agent-20250506.01-160000.1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-04-22T10:23:05Z",
"details": "important"
}
],
"title": "CVE-2024-45337"
}
]
}
SUSE-SU-2026:2581-1
Vulnerability from csaf_suse - Published: 2026-06-23 13:25 - Updated: 2026-06-23 13:25Summary
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-2026-39827: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39828: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39829: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39830: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39831: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39832: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39833: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39834: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-39835: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-42508: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-46595: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-46597: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2026-46598: Update golang.org/x/crypto dependency (bsc#1266171).
- CVE-2024-45337: Update golang.org/x/crypto/ssh dependency (bsc#1234563).
- CVE-2026-39821: Update golang.org/x/net dependency (bsc#1266603).
- CVE-2023-45288: Update golang.org/x/net/http2 dependency (bsc#1236533).
- CVE-2025-22869: Update golang.org/x/crypto dependency (bsc#1239334).
- CVE-2025-22869: Update golang.org/x/crypto dependency (bsc#1253889).
- CVE-2026-33814: Update golang.org/x/net/http2 dependency (bsc#1265762).
- CVE-2026-33186: Update google.golang.org/grpc dependency (bsc#1260264).
- CVE-2026-34986: Fix crafted JWE input with a missing encrypted key can lead to a denial of service (bsc#1262926).
Bug fixes:
- Update to version 20260402.00 (bsc#1257010).
- Update to version 20250506.01 (bsc#1243254, bsc#1243505).
- Install google_metadata_script_runner_adapt script (bsc#1245759).
- Add -buildmode=pie to go build command line (bsc#1239944).
- Re-enable binary stripping and debuginfo (bsc#1210938).
Patchnames: SUSE-2026-2581,SUSE-SLE-Module-Public-Cloud-12-2026-2581
Terms of use: CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).
5.3 (Medium)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
5.3 (Medium)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
moderate
8.1 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.4 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
6.5 (Medium)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.1 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
6.5 (Medium)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.1 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.4 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.7 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.1 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
8.1 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
7.5 (High)
Affected products
Recommended
40 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64 | — |
Vendor Fix
|
Threats
Impact
important
References
88 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-2026-39827: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39828: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39829: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39830: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39831: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39832: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39833: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39834: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-39835: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-42508: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-46595: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-46597: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2026-46598: Update golang.org/x/crypto dependency (bsc#1266171).\n- CVE-2024-45337: Update golang.org/x/crypto/ssh dependency (bsc#1234563).\n- CVE-2026-39821: Update golang.org/x/net dependency (bsc#1266603).\n- CVE-2023-45288: Update golang.org/x/net/http2 dependency (bsc#1236533).\n- CVE-2025-22869: Update golang.org/x/crypto dependency (bsc#1239334).\n- CVE-2025-22869: Update golang.org/x/crypto dependency (bsc#1253889).\n- CVE-2026-33814: Update golang.org/x/net/http2 dependency (bsc#1265762).\n- CVE-2026-33186: Update google.golang.org/grpc dependency (bsc#1260264).\n- CVE-2026-34986: Fix crafted JWE input with a missing encrypted key can lead to a denial of service (bsc#1262926).\n\nBug fixes:\n\n- Update to version 20260402.00 (bsc#1257010).\n- Update to version 20250506.01 (bsc#1243254, bsc#1243505).\n- Install google_metadata_script_runner_adapt script (bsc#1245759).\n- Add -buildmode=pie to go build command line (bsc#1239944).\n- Re-enable binary stripping and debuginfo (bsc#1210938).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-2581,SUSE-SLE-Module-Public-Cloud-12-2026-2581",
"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-2026_2581-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:2581-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20262581-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:2581-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026965.html"
},
{
"category": "self",
"summary": "SUSE Bug 1210938",
"url": "https://bugzilla.suse.com/1210938"
},
{
"category": "self",
"summary": "SUSE Bug 1234563",
"url": "https://bugzilla.suse.com/1234563"
},
{
"category": "self",
"summary": "SUSE Bug 1236533",
"url": "https://bugzilla.suse.com/1236533"
},
{
"category": "self",
"summary": "SUSE Bug 1239334",
"url": "https://bugzilla.suse.com/1239334"
},
{
"category": "self",
"summary": "SUSE Bug 1239944",
"url": "https://bugzilla.suse.com/1239944"
},
{
"category": "self",
"summary": "SUSE Bug 1243254",
"url": "https://bugzilla.suse.com/1243254"
},
{
"category": "self",
"summary": "SUSE Bug 1243505",
"url": "https://bugzilla.suse.com/1243505"
},
{
"category": "self",
"summary": "SUSE Bug 1245759",
"url": "https://bugzilla.suse.com/1245759"
},
{
"category": "self",
"summary": "SUSE Bug 1253889",
"url": "https://bugzilla.suse.com/1253889"
},
{
"category": "self",
"summary": "SUSE Bug 1257010",
"url": "https://bugzilla.suse.com/1257010"
},
{
"category": "self",
"summary": "SUSE Bug 1260264",
"url": "https://bugzilla.suse.com/1260264"
},
{
"category": "self",
"summary": "SUSE Bug 1262926",
"url": "https://bugzilla.suse.com/1262926"
},
{
"category": "self",
"summary": "SUSE Bug 1265762",
"url": "https://bugzilla.suse.com/1265762"
},
{
"category": "self",
"summary": "SUSE Bug 1266171",
"url": "https://bugzilla.suse.com/1266171"
},
{
"category": "self",
"summary": "SUSE Bug 1266603",
"url": "https://bugzilla.suse.com/1266603"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-45288 page",
"url": "https://www.suse.com/security/cve/CVE-2023-45288/"
},
{
"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/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-58181 page",
"url": "https://www.suse.com/security/cve/CVE-2025-58181/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33186 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33186/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33814 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33814/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-34986 page",
"url": "https://www.suse.com/security/cve/CVE-2026-34986/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39821 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39821/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39827 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39827/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39828 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39828/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39829 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39829/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39830 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39830/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39831 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39831/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39832 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39832/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39833 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39833/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39834 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39834/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-39835 page",
"url": "https://www.suse.com/security/cve/CVE-2026-39835/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42508 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42508/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46595 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46595/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46597 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46597/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-46598 page",
"url": "https://www.suse.com/security/cve/CVE-2026-46598/"
}
],
"title": "Security update for google-guest-agent",
"tracking": {
"current_release_date": "2026-06-23T13:25:47Z",
"generator": {
"date": "2026-06-23T13:25:47Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:2581-1",
"initial_release_date": "2026-06-23T13:25:47Z",
"revision_history": [
{
"date": "2026-06-23T13:25:47Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20260529.00-1.61.1.aarch64",
"product": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64",
"product_id": "google-guest-agent-20260529.00-1.61.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20260529.00-1.61.1.i586",
"product": {
"name": "google-guest-agent-20260529.00-1.61.1.i586",
"product_id": "google-guest-agent-20260529.00-1.61.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"product": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"product_id": "google-guest-agent-20260529.00-1.61.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20260529.00-1.61.1.s390x",
"product": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x",
"product_id": "google-guest-agent-20260529.00-1.61.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "google-guest-agent-20260529.00-1.61.1.x86_64",
"product": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64",
"product_id": "google-guest-agent-20260529.00-1.61.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_name",
"name": "SUSE Linux Enterprise Server 12",
"product": {
"name": "SUSE Linux Enterprise Server 12",
"product_id": "SUSE Linux Enterprise Server 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 12",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP3",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP3",
"product_id": "SUSE Linux Enterprise Server 12 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP3",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP4",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP4",
"product_id": "SUSE Linux Enterprise Server 12 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp5"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.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-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.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-20260529.00-1.61.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-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.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-20260529.00-1.61.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-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.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-20260529.00-1.61.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-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "google-guest-agent-20260529.00-1.61.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64"
},
"product_reference": "google-guest-agent-20260529.00-1.61.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-45288",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-45288"
}
],
"notes": [
{
"category": "general",
"text": "An attacker may cause an HTTP/2 endpoint to read arbitrary amounts of header data by sending an excessive number of CONTINUATION frames. Maintaining HPACK state requires parsing and processing all HEADERS and CONTINUATION frames on a connection. When a request\u0027s headers exceed MaxHeaderBytes, no memory is allocated to store the excess headers, but they are still parsed. This permits an attacker to cause an HTTP/2 endpoint to read arbitrary amounts of header data, all associated with a request which is going to be rejected. These headers can include Huffman-encoded data which is significantly more expensive for the receiver to decode than for an attacker to send. The fix sets a limit on the amount of excess header frames we will process before closing a connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-45288",
"url": "https://www.suse.com/security/cve/CVE-2023-45288"
},
{
"category": "external",
"summary": "SUSE Bug 1221400 for CVE-2023-45288",
"url": "https://bugzilla.suse.com/1221400"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "moderate"
}
],
"title": "CVE-2023-45288"
},
{
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22868",
"url": "https://www.suse.com/security/cve/CVE-2025-22868"
},
{
"category": "external",
"summary": "SUSE Bug 1239185 for CVE-2025-22868",
"url": "https://bugzilla.suse.com/1239185"
},
{
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-22869",
"url": "https://www.suse.com/security/cve/CVE-2025-22869"
},
{
"category": "external",
"summary": "SUSE Bug 1239322 for CVE-2025-22869",
"url": "https://bugzilla.suse.com/1239322"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2025-22869"
},
{
"cve": "CVE-2025-58181",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-58181"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers parsing GSSAPI authentication requests do not validate the number of mechanisms specified in the request, allowing an attacker to cause unbounded memory consumption.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-58181",
"url": "https://www.suse.com/security/cve/CVE-2025-58181"
},
{
"category": "external",
"summary": "SUSE Bug 1253784 for CVE-2025-58181",
"url": "https://bugzilla.suse.com/1253784"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "moderate"
}
],
"title": "CVE-2025-58181"
},
{
"cve": "CVE-2026-33186",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33186"
}
],
"notes": [
{
"category": "general",
"text": "gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33186",
"url": "https://www.suse.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "SUSE Bug 1260085 for CVE-2026-33186",
"url": "https://bugzilla.suse.com/1260085"
},
{
"category": "external",
"summary": "SUSE Bug 1268676 for CVE-2026-33186",
"url": "https://bugzilla.suse.com/1268676"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-33186"
},
{
"cve": "CVE-2026-33814",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33814"
}
],
"notes": [
{
"category": "general",
"text": "When processing HTTP/2 SETTINGS frames, transport will enter an infinite loop of writing CONTINUATION frames if it receives a SETTINGS_MAX_FRAME_SIZE with a value of 0.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33814",
"url": "https://www.suse.com/security/cve/CVE-2026-33814"
},
{
"category": "external",
"summary": "SUSE Bug 1264506 for CVE-2026-33814",
"url": "https://bugzilla.suse.com/1264506"
},
{
"category": "external",
"summary": "SUSE Bug 1268758 for CVE-2026-33814",
"url": "https://bugzilla.suse.com/1268758"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-33814"
},
{
"cve": "CVE-2026-34986",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-34986"
}
],
"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. Prior to 4.1.4 and 3.0.5, decrypting a JSON Web Encryption (JWE) object will panic if the alg field indicates a key wrapping algorithm (one ending in KW, with the exception of A128GCMKW, A192GCMKW, and A256GCMKW) and the encrypted_key field is empty. The panic happens when cipher.KeyUnwrap() in key_wrap.go attempts to allocate a slice with a zero or negative length based on the length of the encrypted_key. This code path is reachable from ParseEncrypted() / ParseEncryptedJSON() / ParseEncryptedCompact() followed by Decrypt() on the resulting object. Note that the parse functions take a list of accepted key algorithms. If the accepted key algorithms do not include any key wrapping algorithms, parsing will fail and the application will be unaffected. This panic is also reachable by calling cipher.KeyUnwrap() directly with any ciphertext parameter less than 16 bytes long, but calling this function directly is less common. Panics can lead to denial of service. This vulnerability is fixed in 4.1.4 and 3.0.5.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-34986",
"url": "https://www.suse.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "SUSE Bug 1262805 for CVE-2026-34986",
"url": "https://bugzilla.suse.com/1262805"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-34986"
},
{
"cve": "CVE-2026-39821",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39821"
}
],
"notes": [
{
"category": "general",
"text": "The ToASCII and ToUnicode functions incorrectly accept Punycode-encoded labels that decode to an ASCII-only label. For example, ToUnicode(\"xn--example-.com\") incorrectly returns the name \"example.com\" rather than an error. This behavior can lead to privilege escalation in programs using the idna package. For example, a program which performs privilege checks on the ASCII hostname may reject \"example.com\" but permit \"xn--example-.com\". If that program subsequently converts the ASCII hostname to Unicode, it will inadvertently permits access to the Unicode name \"example.com\".",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39821",
"url": "https://www.suse.com/security/cve/CVE-2026-39821"
},
{
"category": "external",
"summary": "SUSE Bug 1266474 for CVE-2026-39821",
"url": "https://bugzilla.suse.com/1266474"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39821"
},
{
"cve": "CVE-2026-39827",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39827"
}
],
"notes": [
{
"category": "general",
"text": "An authenticated SSH client that repeatedly opened channels which were rejected by the server caused unbounded memory growth, eventually crashing the server process and affecting all connected users. Rejected channels are now properly removed from the connection\u0027s internal state and released for garbage collection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39827",
"url": "https://www.suse.com/security/cve/CVE-2026-39827"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39827",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39827"
},
{
"cve": "CVE-2026-39828",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39828"
}
],
"notes": [
{
"category": "general",
"text": "When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded. Returning non-nil Permissions with PartialSuccessError now results in a connection error.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39828",
"url": "https://www.suse.com/security/cve/CVE-2026-39828"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39828",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39828"
},
{
"cve": "CVE-2026-39829",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39829"
}
],
"notes": [
{
"category": "general",
"text": "The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification. This could be triggered by unauthenticated clients during public key authentication. RSA moduli are now limited to 8192 bits, and DSA parameters are validated per FIPS 186-2.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39829",
"url": "https://www.suse.com/security/cve/CVE-2026-39829"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39829",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39829"
},
{
"cve": "CVE-2026-39830",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39830"
}
],
"notes": [
{
"category": "general",
"text": "A malicious SSH peer could send unsolicited global request responses to fill an internal buffer, blocking the connection\u0027s read loop. The blocked goroutine could not be released by calling Close(), resulting in a resource leak per connection. Unsolicited global responses are now discarded.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39830",
"url": "https://www.suse.com/security/cve/CVE-2026-39830"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39830",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39830"
},
{
"cve": "CVE-2026-39831",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39831"
}
],
"notes": [
{
"category": "general",
"text": "The Verify() method for FIDO/U2F security key types (sk-ecdsa-sha2-nistp256@openssh.com, sk-ssh-ed25519@openssh.com) did not check the User Presence flag. Signatures generated without physical touch were accepted, allowing unattended use of a hardware security key. To restore the previous behavior, return a \"no-touch-required\" extension in Permissions.Extensions from PublicKeyCallback.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39831",
"url": "https://www.suse.com/security/cve/CVE-2026-39831"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39831",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39831"
},
{
"cve": "CVE-2026-39832",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39832"
}
],
"notes": [
{
"category": "general",
"text": "When adding a key to a remote agent constraint extensions such as restrict-destination-v00@openssh.com were not serialized in the request. Destination restrictions were silently stripped when forwarding keys, allowing unrestricted use of the key on the remote host. The client now serializes all constraint extensions. Additionally, the in-memory keyring returned by NewKeyring() now rejects keys with unsupported constraint extensions instead of silently ignoring them.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39832",
"url": "https://www.suse.com/security/cve/CVE-2026-39832"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39832",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39832"
},
{
"cve": "CVE-2026-39833",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39833"
}
],
"notes": [
{
"category": "general",
"text": "The in-memory keyring returned by NewKeyring() silently accepted keys with the ConfirmBeforeUse constraint but never enforced it. The key would sign without any confirmation prompt, with no indication to the caller that the constraint was not in effect. NewKeyring() now returns an error when unsupported constraints are requested.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39833",
"url": "https://www.suse.com/security/cve/CVE-2026-39833"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39833",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39833"
},
{
"cve": "CVE-2026-39834",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39834"
}
],
"notes": [
{
"category": "general",
"text": "When writing data larger than 4GB in a single Write call on an SSH channel, an integer overflow in the internal payload size calculation caused the write loop to spin indefinitely, sending empty packets without making progress. The size comparison now uses int64 to prevent truncation.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39834",
"url": "https://www.suse.com/security/cve/CVE-2026-39834"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39834",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39834"
},
{
"cve": "CVE-2026-39835",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-39835"
}
],
"notes": [
{
"category": "general",
"text": "SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate. CertChecker now returns an error instead of panicking when these callbacks are nil.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-39835",
"url": "https://www.suse.com/security/cve/CVE-2026-39835"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-39835",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-39835"
},
{
"cve": "CVE-2026-42508",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42508"
}
],
"notes": [
{
"category": "general",
"text": "Previously, a revoked \u0027SignatureKey\u0027 belonging to a CA was not correctly checked for revocation. Now, both the \u0027key\u0027 and \u0027key.SignatureKey\u0027 are checked for @revoked.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42508",
"url": "https://www.suse.com/security/cve/CVE-2026-42508"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-42508",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-42508"
},
{
"cve": "CVE-2026-46595",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46595"
}
],
"notes": [
{
"category": "general",
"text": "Previously, CVE-2024-45337 fixed an authorization bypass for misused ssh server configurations; if any other type of callback is passed other than public key, then the source-address validation would be skipped.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46595",
"url": "https://www.suse.com/security/cve/CVE-2026-46595"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-46595",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-46595"
},
{
"cve": "CVE-2026-46597",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46597"
}
],
"notes": [
{
"category": "general",
"text": "An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46597",
"url": "https://www.suse.com/security/cve/CVE-2026-46597"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-46597",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-46597"
},
{
"cve": "CVE-2026-46598",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-46598"
}
],
"notes": [
{
"category": "general",
"text": "For certain crafted inputs, a \u0027ed25519.PrivateKey\u0027 was created by casting malformed wire bytes, leading to a panic when used.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-46598",
"url": "https://www.suse.com/security/cve/CVE-2026-46598"
},
{
"category": "external",
"summary": "SUSE Bug 1266049 for CVE-2026-46598",
"url": "https://bugzilla.suse.com/1266049"
}
],
"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 High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server 12:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:google-guest-agent-20260529.00-1.61.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:google-guest-agent-20260529.00-1.61.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-06-23T13:25:47Z",
"details": "important"
}
],
"title": "CVE-2026-46598"
}
]
}
WID-SEC-W-2024-3690
Vulnerability from csaf_certbund - Published: 2024-12-11 23:00 - Updated: 2026-06-08 22:00Summary
Gitea: Schwachstelle ermöglicht Umgehen von Sicherheitsvorkehrungen
Severity
Hoch
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung: Gitea ist ein quelloffener Github-Klon.
Angriff: Ein entfernter, anonymer Angreifer kann eine Schwachstelle in Gitea ausnutzen, um Sicherheitsvorkehrungen zu umgehen.
Betroffene Betriebssysteme: - Linux
- Windows
Affected products
Known affected
22 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat OpenShift Container Platform <4.17.14
Red Hat / OpenShift
|
Container Platform <4.17.14 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Open Source Gitea <1.22.5
Open Source / Gitea
|
<1.22.5 | ||
|
Fedora Linux
Fedora
|
cpe:/o:fedoraproject:fedora:-
|
— | |
|
Splunk Splunk Enterprise <9.3.4
Splunk / Splunk Enterprise
|
<9.3.4 | ||
|
Splunk Splunk Enterprise <9.4.2
Splunk / Splunk Enterprise
|
<9.4.2 | ||
|
Splunk Splunk Enterprise <9.2.8
Splunk / Splunk Enterprise
|
<9.2.8 | ||
|
Splunk Splunk Enterprise <9.2.6
Splunk / Splunk Enterprise
|
<9.2.6 | ||
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Storage Scale <5.1.9.9
IBM / Storage Scale
|
<5.1.9.9 | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
IBM Storage Scale <5.2.2.1
IBM / Storage Scale
|
<5.2.2.1 | ||
|
Splunk Splunk Enterprise <9.4.3
Splunk / Splunk Enterprise
|
<9.4.3 | ||
|
Splunk Splunk Enterprise <9.1.9
Splunk / Splunk Enterprise
|
<9.1.9 | ||
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Splunk Splunk Enterprise <9.2.7
Splunk / Splunk Enterprise
|
<9.2.7 | ||
|
Splunk Splunk Enterprise <9.3.5
Splunk / Splunk Enterprise
|
<9.3.5 | ||
|
Splunk Splunk Enterprise <9.4.4
Splunk / Splunk Enterprise
|
<9.4.4 | ||
|
Splunk Splunk Enterprise <9.1.10
Splunk / Splunk Enterprise
|
<9.1.10 | ||
|
Splunk Splunk Enterprise <9.3.6
Splunk / Splunk Enterprise
|
<9.3.6 | ||
|
Splunk Splunk Enterprise <10.0.1
Splunk / Splunk Enterprise
|
<10.0.1 |
References
75 references
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Gitea ist ein quelloffener Github-Klon.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer Angreifer kann eine Schwachstelle in Gitea ausnutzen, um Sicherheitsvorkehrungen zu umgehen.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux\n- Windows",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2024-3690 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-3690.json"
},
{
"category": "self",
"summary": "WID-SEC-2024-3690 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-3690"
},
{
"category": "external",
"summary": "Gitea Release Notes vom 2024-12-11",
"url": "https://blog.gitea.com/release-of-1.22.5"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2024-8F83D0ED92 vom 2024-12-13",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2024-8f83d0ed92"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2024-C33C95804E vom 2024-12-13",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2024-c33c95804e"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2024-6267B82CF7 vom 2024-12-15",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2024-6267b82cf7"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2024:14585-1 vom 2024-12-17",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/3VJBDKTY25NRJXFRK6QZSRH6ZRBUV2UT/"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2024:14590-1 vom 2024-12-17",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/RFAKX3BHM5IEGVFZW5ORK472VJQ7GAKL/"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2024:14602-1 vom 2024-12-19",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/KJENUST4DVKPMGTJHYGQFE57E55AQQDC/"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2024-8D1B3F4466 vom 2024-12-22",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2024-8d1b3f4466"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2024-F2A4FFC1FF vom 2024-12-23",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2024-f2a4ffc1ff"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-EPEL-2024-CC57767755 vom 2024-12-22",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2024-cc57767755"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:14633-1 vom 2025-01-13",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/VJK5RQOOJ3Q26ODJIGOXXYOYQDDEQ3UX/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0386 vom 2025-01-16",
"url": "https://access.redhat.com/errata/RHSA-2025:0386"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0385 vom 2025-01-16",
"url": "https://access.redhat.com/errata/RHSA-2025:0385"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0560 vom 2025-01-21",
"url": "https://access.redhat.com/errata/RHSA-2025:0560"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0576 vom 2025-01-22",
"url": "https://access.redhat.com/errata/RHSA-2025:0576"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0552 vom 2025-01-21",
"url": "https://access.redhat.com/errata/RHSA-2025:0552"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0577 vom 2025-01-22",
"url": "https://access.redhat.com/errata/RHSA-2025:0577"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0679 vom 2025-01-23",
"url": "https://access.redhat.com/errata/RHSA-2025:0679"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0676 vom 2025-01-23",
"url": "https://access.redhat.com/errata/RHSA-2025:0676"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0723 vom 2025-01-27",
"url": "https://access.redhat.com/errata/RHSA-2025:0723"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0653 vom 2025-01-28",
"url": "https://access.redhat.com/errata/RHSA-2025:0653"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0778 vom 2025-01-28",
"url": "https://access.redhat.com/errata/RHSA-2025:0778"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0785 vom 2025-01-28",
"url": "https://access.redhat.com/errata/RHSA-2025:0785"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0649 vom 2025-01-29",
"url": "https://access.redhat.com/errata/RHSA-2025:0649"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0645 vom 2025-01-29",
"url": "https://access.redhat.com/errata/RHSA-2025:0645"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0892 vom 2025-02-03",
"url": "https://access.redhat.com/errata/RHSA-2025:0892"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS-2025-2749 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALAS-2025-2749.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0601-1 vom 2025-02-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/SIJ4IQWT54OKAPQJZ73TJULOUB4K7WWI/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0602-1 vom 2025-02-21",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/EYS6XJJZTICQN34VXVLGODHFCRCYXES4/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1829 vom 2025-02-25",
"url": "https://access.redhat.com/errata/RHSA-2025:1829"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:6121 vom 2025-02-25",
"url": "https://access.redhat.com/errata/RHSA-2024:6121"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1824 vom 2025-02-25",
"url": "https://access.redhat.com/errata/RHSA-2025:1824"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1841 vom 2025-02-26",
"url": "https://access.redhat.com/errata/RHSA-2025:1841"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1866 vom 2025-02-26",
"url": "https://access.redhat.com/errata/RHSA-2025:1866"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1865 vom 2025-02-26",
"url": "https://access.redhat.com/errata/RHSA-2025:1865"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1710 vom 2025-02-27",
"url": "https://access.redhat.com/errata/RHSA-2025:1710"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:0770-1 vom 2025-03-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-March/020477.html"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:0094-1 vom 2025-03-20",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LKOLRH73CIQLMQ327IYGUHNSFKCU5MPI/"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:14920-1 vom 2025-03-25",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/OAFVZYRPJ63SNIOTJJCDPNRWHGLE355Q/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:3542 vom 2025-04-02",
"url": "https://access.redhat.com/errata/RHSA-2025:3542"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:3560 vom 2025-04-03",
"url": "https://access.redhat.com/errata/RHSA-2025:3560"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7230494 vom 2025-04-09",
"url": "https://www.ibm.com/support/pages/node/7230494"
},
{
"category": "external",
"summary": "Splunk Security Advisory SVD-2025-0603 vom 2025-06-02",
"url": "https://advisory.splunk.com//advisories/SVD-2025-0603"
},
{
"category": "external",
"summary": "Splunk Security Advisory SVD-2025-0604 vom 2025-06-02",
"url": "https://advisory.splunk.com/advisories/SVD-2025-0604"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20196-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021144.html"
},
{
"category": "external",
"summary": "Splunk Security Advisory SVD-2025-0710 vom 2025-07-07",
"url": "https://advisory.splunk.com//advisories/SVD-2025-0710"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:11396 vom 2025-07-18",
"url": "https://access.redhat.com/errata/RHSA-2025:11396"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-EPEL-2025-AB0FAE74F1 vom 2025-07-26",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2025-ab0fae74f1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:02581-1 vom 2025-07-31",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-July/021999.html"
},
{
"category": "external",
"summary": "Splunk Security Advisory SVD-2025-1007 vom 2025-10-01",
"url": "https://advisory.splunk.com//advisories/SVD-2025-1007"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7839-1 vom 2025-10-23",
"url": "https://ubuntu.com/security/notices/USN-7839-1"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:0417-1 vom 2025-11-02",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/FCZZE45L3ODYBW7TQ5RNDVMFSOSJDYIF/"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:0418-1 vom 2025-11-02",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/22IZAW3SCK7W2J22FWPUPS2FYXUTLUTJ/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-7839-2 vom 2025-11-03",
"url": "https://ubuntu.com/security/notices/USN-7839-2"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:22287 vom 2025-11-27",
"url": "https://access.redhat.com/errata/RHSA-2025:22287"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025-20143-1 vom 2025-12-05",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/SA2FH57FMWGQVYC3SRSZ25NB6ME2DDCT/"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:23064 vom 2025-12-10",
"url": "https://access.redhat.com/errata/RHSA-2025:23064"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:23061 vom 2025-12-10",
"url": "https://access.redhat.com/errata/RHSA-2025:23061"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:23203 vom 2025-12-15",
"url": "https://access.redhat.com/errata/RHSA-2025:23203"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:23206 vom 2025-12-15",
"url": "https://access.redhat.com/errata/RHSA-2025:23206"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:23207 vom 2025-12-15",
"url": "https://access.redhat.com/errata/RHSA-2025:23207"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:1730 vom 2026-02-02",
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2681 vom 2026-02-16",
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2754 vom 2026-02-16",
"url": "https://access.redhat.com/errata/RHSA-2026:2754"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2762 vom 2026-02-16",
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:0592-1 vom 2026-02-21",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-February/024365.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21319-1 vom 2026-04-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-April/025673.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2-2026-3334 vom 2026-06-09",
"url": "https://alas.aws.amazon.com/AL2/ALAS2-2026-3334.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2NITRO-ENCLAVES-2026-108 vom 2026-06-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS2NITRO-ENCLAVES-2026-108.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2DOCKER-2026-128 vom 2026-06-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS2DOCKER-2026-128.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2DOCKER-2026-127 vom 2026-06-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS2DOCKER-2026-127.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2DOCKER-2026-126 vom 2026-06-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS2DOCKER-2026-126.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2NITRO-ENCLAVES-2026-109 vom 2026-06-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS2NITRO-ENCLAVES-2026-109.html"
}
],
"source_lang": "en-US",
"title": "Gitea: Schwachstelle erm\u00f6glicht Umgehen von Sicherheitsvorkehrungen",
"tracking": {
"current_release_date": "2026-06-08T22:00:00.000+00:00",
"generator": {
"date": "2026-06-09T08:41:04.958+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2024-3690",
"initial_release_date": "2024-12-11T23:00:00.000+00:00",
"revision_history": [
{
"date": "2024-12-11T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2024-12-12T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Fedora aufgenommen"
},
{
"date": "2024-12-15T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Fedora aufgenommen"
},
{
"date": "2024-12-17T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2024-12-19T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2024-12-22T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Fedora aufgenommen"
},
{
"date": "2025-01-13T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2025-01-16T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-01-21T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-01-23T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-01-27T23:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-01-28T23:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-01-29T23:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-02T23:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-04T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-02-20T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-02-24T23:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-25T23:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-26T23:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-03-03T23:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-03-20T23:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2025-03-25T23:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2025-04-02T22:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-04-09T22:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-06-02T22:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Splunk-SVD aufgenommen"
},
{
"date": "2025-06-03T22:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-07-07T22:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von Splunk-SVD aufgenommen"
},
{
"date": "2025-07-20T22:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-07-27T22:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von Fedora aufgenommen"
},
{
"date": "2025-07-31T22:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-10-01T22:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von Splunk-SVD aufgenommen"
},
{
"date": "2025-10-23T22:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-11-02T23:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2025-11-03T23:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2025-11-27T23:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-12-07T23:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2025-12-10T23:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-12-15T23:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-02T23:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-16T23:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-22T23:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-04-26T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-08T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Amazon aufgenommen"
}
],
"status": "final",
"version": "43"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Amazon Linux 2",
"product": {
"name": "Amazon Linux 2",
"product_id": "398363",
"product_identification_helper": {
"cpe": "cpe:/o:amazon:linux_2:-"
}
}
}
],
"category": "vendor",
"name": "Amazon"
},
{
"branches": [
{
"category": "product_name",
"name": "Fedora Linux",
"product": {
"name": "Fedora Linux",
"product_id": "74185",
"product_identification_helper": {
"cpe": "cpe:/o:fedoraproject:fedora:-"
}
}
}
],
"category": "vendor",
"name": "Fedora"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c5.2.2.1",
"product": {
"name": "IBM Storage Scale \u003c5.2.2.1",
"product_id": "T041756"
}
},
{
"category": "product_version",
"name": "5.2.2.1",
"product": {
"name": "IBM Storage Scale 5.2.2.1",
"product_id": "T041756-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spectrum_scale:5.2.2.1"
}
}
},
{
"category": "product_version_range",
"name": "\u003c5.1.9.9",
"product": {
"name": "IBM Storage Scale \u003c5.1.9.9",
"product_id": "T042689"
}
},
{
"category": "product_version",
"name": "5.1.9.9",
"product": {
"name": "IBM Storage Scale 5.1.9.9",
"product_id": "T042689-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spectrum_scale:5.1.9.9"
}
}
}
],
"category": "product_name",
"name": "Storage Scale"
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c1.22.5",
"product": {
"name": "Open Source Gitea \u003c1.22.5",
"product_id": "T039804"
}
},
{
"category": "product_version",
"name": "1.22.5",
"product": {
"name": "Open Source Gitea 1.22.5",
"product_id": "T039804-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:gitea:gitea:1.22.5"
}
}
}
],
"category": "product_name",
"name": "Gitea"
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "Container Platform \u003c4.17.14",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.17.14",
"product_id": "T040638"
}
},
{
"category": "product_version",
"name": "Container Platform 4.17.14",
"product": {
"name": "Red Hat OpenShift Container Platform 4.17.14",
"product_id": "T040638-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.17.14"
}
}
}
],
"category": "product_name",
"name": "OpenShift"
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
},
{
"category": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T027843",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c9.4.2",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.4.2",
"product_id": "T044257"
}
},
{
"category": "product_version",
"name": "9.4.2",
"product": {
"name": "Splunk Splunk Enterprise 9.4.2",
"product_id": "T044257-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.4.2"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.3.4",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.3.4",
"product_id": "T044258"
}
},
{
"category": "product_version",
"name": "9.3.4",
"product": {
"name": "Splunk Splunk Enterprise 9.3.4",
"product_id": "T044258-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.3.4"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.2.6",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.2.6",
"product_id": "T044259"
}
},
{
"category": "product_version",
"name": "9.2.6",
"product": {
"name": "Splunk Splunk Enterprise 9.2.6",
"product_id": "T044259-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.2.6"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.1.9",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.1.9",
"product_id": "T044260"
}
},
{
"category": "product_version",
"name": "9.1.9",
"product": {
"name": "Splunk Splunk Enterprise 9.1.9",
"product_id": "T044260-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.1.9"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.4.3",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.4.3",
"product_id": "T045086"
}
},
{
"category": "product_version",
"name": "9.4.3",
"product": {
"name": "Splunk Splunk Enterprise 9.4.3",
"product_id": "T045086-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.4.3"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.3.5",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.3.5",
"product_id": "T045087"
}
},
{
"category": "product_version",
"name": "9.3.5",
"product": {
"name": "Splunk Splunk Enterprise 9.3.5",
"product_id": "T045087-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.3.5"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.2.7",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.2.7",
"product_id": "T045088"
}
},
{
"category": "product_version",
"name": "9.2.7",
"product": {
"name": "Splunk Splunk Enterprise 9.2.7",
"product_id": "T045088-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.2.7"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.1.10",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.1.10",
"product_id": "T045089"
}
},
{
"category": "product_version",
"name": "9.1.10",
"product": {
"name": "Splunk Splunk Enterprise 9.1.10",
"product_id": "T045089-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.1.10"
}
}
},
{
"category": "product_version_range",
"name": "\u003c10.0.1",
"product": {
"name": "Splunk Splunk Enterprise \u003c10.0.1",
"product_id": "T047323"
}
},
{
"category": "product_version",
"name": "10.0.1",
"product": {
"name": "Splunk Splunk Enterprise 10.0.1",
"product_id": "T047323-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:10.0.1"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.4.4",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.4.4",
"product_id": "T047324"
}
},
{
"category": "product_version",
"name": "9.4.4",
"product": {
"name": "Splunk Splunk Enterprise 9.4.4",
"product_id": "T047324-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.4.4"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.3.6",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.3.6",
"product_id": "T047325"
}
},
{
"category": "product_version",
"name": "9.3.6",
"product": {
"name": "Splunk Splunk Enterprise 9.3.6",
"product_id": "T047325-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.3.6"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.2.8",
"product": {
"name": "Splunk Splunk Enterprise \u003c9.2.8",
"product_id": "T047326"
}
},
{
"category": "product_version",
"name": "9.2.8",
"product": {
"name": "Splunk Splunk Enterprise 9.2.8",
"product_id": "T047326-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:splunk:splunk:9.2.8"
}
}
}
],
"category": "product_name",
"name": "Splunk Enterprise"
}
],
"category": "vendor",
"name": "Splunk"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"product_status": {
"known_affected": [
"T040638",
"67646",
"T039804",
"74185",
"T044258",
"T044257",
"T047326",
"T044259",
"T002207",
"T042689",
"T000126",
"T027843",
"T041756",
"T045086",
"T044260",
"398363",
"T045088",
"T045087",
"T047324",
"T045089",
"T047325",
"T047323"
]
},
"release_date": "2024-12-11T23:00:00.000+00:00",
"title": "CVE-2024-45337"
}
]
}
WID-SEC-W-2025-0226
Vulnerability from csaf_certbund - Published: 2025-01-30 23:00 - Updated: 2026-06-16 22:00Summary
Red Hat Enterprise Linux (Advanced Cluster Management): Mehrere Schwachstellen
Severity
Hoch
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung: Red Hat Enterprise Linux (RHEL) ist eine populäre Linux-Distribution.
Angriff: Ein Angreifer kann mehrere Schwachstellen in Red Hat Enterprise Linux Advanced Cluster Management ausnutzen, um Sicherheitsmaßnahmen zu umgehen und einen Denial-of-Service-Zustand zu verursachen.
Betroffene Betriebssysteme: - Linux
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat OpenShift Container Platform <4.15.58
Red Hat / OpenShift
|
Container Platform <4.15.58 | ||
|
Red Hat OpenShift Data Foundation 4
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:data_foundation_4
|
Data Foundation 4 | |
|
Red Hat Enterprise Linux 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:8
|
8 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Advanced Cluster Management <2.12.2
Red Hat / Enterprise Linux
|
Advanced Cluster Management <2.12.2 | ||
|
Red Hat OpenShift Container Platform <4.14.46
Red Hat / OpenShift
|
Container Platform <4.14.46 | ||
|
Fedora Linux
Fedora
|
cpe:/o:fedoraproject:fedora:-
|
— | |
|
Red Hat OpenShift <5.8.20
Red Hat / OpenShift
|
<5.8.20 | ||
|
Red Hat Enterprise Linux Advanced Cluster Security for Kubernetes 4
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:advanced_cluster_security_for_kubernetes_4
|
Advanced Cluster Security for Kubernetes 4 | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat OpenShift Dev Spaces 3
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:dev_spaces_3
|
Dev Spaces 3 | |
|
IBM DB2 Big SQL
IBM / DB2
|
cpe:/a:ibm:db2:big_sql
|
Big SQL | |
|
Red Hat OpenShift Data Foundation <4.17.7
Red Hat / OpenShift
|
Data Foundation <4.17.7 | ||
|
Red Hat OpenShift Data Foundation <4.14.18
Red Hat / OpenShift
|
Data Foundation <4.14.18 | ||
|
Red Hat OpenShift Container Platform
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:container_platform
|
Container Platform | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Red Hat OpenShift Container Platform <4.14.48
Red Hat / OpenShift
|
Container Platform <4.14.48 | ||
|
Red Hat Enterprise Linux Gatekeeper
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:gatekeeper
|
Gatekeeper | |
|
Red Hat OpenShift Container Platform <4.19.0
Red Hat / OpenShift
|
Container Platform <4.19.0 | ||
|
Red Hat OpenShift GitOps <1.14.3
Red Hat / OpenShift
|
GitOps <1.14.3 | ||
|
Red Hat OpenShift <5.9.14
Red Hat / OpenShift
|
<5.9.14 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat OpenShift Container Platform <4.15.58
Red Hat / OpenShift
|
Container Platform <4.15.58 | ||
|
Red Hat OpenShift Data Foundation 4
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:data_foundation_4
|
Data Foundation 4 | |
|
Red Hat Enterprise Linux 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:8
|
8 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Advanced Cluster Management <2.12.2
Red Hat / Enterprise Linux
|
Advanced Cluster Management <2.12.2 | ||
|
Red Hat OpenShift Container Platform <4.14.46
Red Hat / OpenShift
|
Container Platform <4.14.46 | ||
|
Fedora Linux
Fedora
|
cpe:/o:fedoraproject:fedora:-
|
— | |
|
Red Hat OpenShift <5.8.20
Red Hat / OpenShift
|
<5.8.20 | ||
|
Red Hat Enterprise Linux Advanced Cluster Security for Kubernetes 4
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:advanced_cluster_security_for_kubernetes_4
|
Advanced Cluster Security for Kubernetes 4 | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat OpenShift Dev Spaces 3
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:dev_spaces_3
|
Dev Spaces 3 | |
|
IBM DB2 Big SQL
IBM / DB2
|
cpe:/a:ibm:db2:big_sql
|
Big SQL | |
|
Red Hat OpenShift Data Foundation <4.17.7
Red Hat / OpenShift
|
Data Foundation <4.17.7 | ||
|
Red Hat OpenShift Data Foundation <4.14.18
Red Hat / OpenShift
|
Data Foundation <4.14.18 | ||
|
Red Hat OpenShift Container Platform
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:container_platform
|
Container Platform | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Red Hat OpenShift Container Platform <4.14.48
Red Hat / OpenShift
|
Container Platform <4.14.48 | ||
|
Red Hat Enterprise Linux Gatekeeper
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:gatekeeper
|
Gatekeeper | |
|
Red Hat OpenShift Container Platform <4.19.0
Red Hat / OpenShift
|
Container Platform <4.19.0 | ||
|
Red Hat OpenShift GitOps <1.14.3
Red Hat / OpenShift
|
GitOps <1.14.3 | ||
|
Red Hat OpenShift <5.9.14
Red Hat / OpenShift
|
<5.9.14 |
Affected products
Known affected
22 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Red Hat OpenShift Container Platform <4.15.58
Red Hat / OpenShift
|
Container Platform <4.15.58 | ||
|
Red Hat OpenShift Data Foundation 4
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:data_foundation_4
|
Data Foundation 4 | |
|
Red Hat Enterprise Linux 9
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:9
|
9 | |
|
Red Hat Enterprise Linux 8
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:8
|
8 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Red Hat Enterprise Linux Advanced Cluster Management <2.12.2
Red Hat / Enterprise Linux
|
Advanced Cluster Management <2.12.2 | ||
|
Red Hat OpenShift Container Platform <4.14.46
Red Hat / OpenShift
|
Container Platform <4.14.46 | ||
|
Fedora Linux
Fedora
|
cpe:/o:fedoraproject:fedora:-
|
— | |
|
Red Hat OpenShift <5.8.20
Red Hat / OpenShift
|
<5.8.20 | ||
|
Red Hat Enterprise Linux Advanced Cluster Security for Kubernetes 4
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:advanced_cluster_security_for_kubernetes_4
|
Advanced Cluster Security for Kubernetes 4 | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat OpenShift Dev Spaces 3
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:dev_spaces_3
|
Dev Spaces 3 | |
|
IBM DB2 Big SQL
IBM / DB2
|
cpe:/a:ibm:db2:big_sql
|
Big SQL | |
|
Red Hat OpenShift Data Foundation <4.17.7
Red Hat / OpenShift
|
Data Foundation <4.17.7 | ||
|
Red Hat OpenShift Data Foundation <4.14.18
Red Hat / OpenShift
|
Data Foundation <4.14.18 | ||
|
Red Hat OpenShift Container Platform
Red Hat / OpenShift
|
cpe:/a:redhat:openshift:container_platform
|
Container Platform | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Red Hat OpenShift Container Platform <4.14.48
Red Hat / OpenShift
|
Container Platform <4.14.48 | ||
|
Red Hat Enterprise Linux Gatekeeper
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:gatekeeper
|
Gatekeeper | |
|
Red Hat OpenShift Container Platform <4.19.0
Red Hat / OpenShift
|
Container Platform <4.19.0 | ||
|
Red Hat OpenShift GitOps <1.14.3
Red Hat / OpenShift
|
GitOps <1.14.3 | ||
|
Red Hat OpenShift <5.9.14
Red Hat / OpenShift
|
<5.9.14 |
References
41 references
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Red Hat Enterprise Linux (RHEL) ist eine popul\u00e4re Linux-Distribution.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen in Red Hat Enterprise Linux Advanced Cluster Management ausnutzen, um Sicherheitsma\u00dfnahmen zu umgehen und einen Denial-of-Service-Zustand zu verursachen.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2025-0226 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2025/wid-sec-w-2025-0226.json"
},
{
"category": "self",
"summary": "WID-SEC-2025-0226 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2025-0226"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0851 vom 2025-01-30",
"url": "https://access.redhat.com/errata/RHSA-2025:0851"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASECS-2025-046 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALASECS-2025-046.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASDOCKER-2025-049 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALASDOCKER-2025-049.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASDOCKER-2025-050 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALASDOCKER-2025-050.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASNITRO-ENCLAVES-2025-049 vom 2025-02-04",
"url": "https://alas.aws.amazon.com/AL2/ALASNITRO-ENCLAVES-2025-049.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0839 vom 2025-02-06",
"url": "https://access.redhat.com/errata/RHSA-2025:0839"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:0840 vom 2025-02-06",
"url": "https://access.redhat.com/errata/RHSA-2025:0840"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1331 vom 2025-02-11",
"url": "https://access.redhat.com/errata/RHSA-2025:1331"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1333 vom 2025-02-11",
"url": "https://access.redhat.com/errata/RHSA-2025:1333"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1332 vom 2025-02-11",
"url": "https://access.redhat.com/errata/RHSA-2025:1332"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1334 vom 2025-02-11",
"url": "https://access.redhat.com/errata/RHSA-2025:1334"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1468 vom 2025-02-13",
"url": "https://access.redhat.com/errata/RHSA-2025:1468"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:1451 vom 2025-02-19",
"url": "https://access.redhat.com/errata/RHSA-2025:1451"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:2652 vom 2025-03-11",
"url": "https://access.redhat.com/errata/RHSA-2025:2652"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:3069 vom 2025-03-20",
"url": "https://access.redhat.com/errata/RHSA-2025:3069"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:3820 vom 2025-04-11",
"url": "https://access.redhat.com/errata/RHSA-2025:3820"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:3973 vom 2025-04-17",
"url": "https://access.redhat.com/errata/RHSA-2025:3973"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:7451 vom 2025-05-14",
"url": "https://access.redhat.com/errata/RHSA-2025:7451"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:7449 vom 2025-05-14",
"url": "https://access.redhat.com/errata/RHSA-2025:7449"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:8059 vom 2025-05-21",
"url": "https://access.redhat.com/errata/RHSA-2025:8059"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:8244 vom 2025-05-28",
"url": "https://access.redhat.com/errata/RHSA-2025:8244"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2025:20278-1 vom 2025-06-04",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2025-June/021044.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:8551 vom 2025-06-05",
"url": "https://access.redhat.com/errata/RHSA-2025:8551"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:11037 vom 2025-06-17",
"url": "https://access.redhat.com/errata/RHSA-2024:11037"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:11038 vom 2025-06-17",
"url": "https://access.redhat.com/errata/RHSA-2024:11038"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-EPEL-2025-3AD6D2FE5C vom 2025-07-28",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2025-3ad6d2fe5c"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:16165 vom 2025-09-25",
"url": "https://access.redhat.com/errata/RHSA-2025:16165"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:16160 vom 2025-09-25",
"url": "https://access.redhat.com/errata/RHSA-2025:16160"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:17232 vom 2025-10-08",
"url": "https://access.redhat.com/errata/RHSA-2025:17232"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:17690 vom 2025-10-15",
"url": "https://access.redhat.com/errata/RHSA-2025:17690"
},
{
"category": "external",
"summary": "Red Hat Bug-Tracker 9959279 vom 2025-10-15",
"url": "https://access.redhat.com/errata/RHSA-2025:17657"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:17657 vom 2025-10-15",
"url": "https://access.redhat.com/errata/RHSA-2025:17657"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:19306 vom 2025-11-06",
"url": "https://access.redhat.com/errata/RHSA-2025:19306"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:21704 vom 2025-11-18",
"url": "https://access.redhat.com/errata/RHSA-2025:21704"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7257990 vom 2026-01-25",
"url": "https://www.ibm.com/support/pages/node/7257990"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2737 vom 2026-02-16",
"url": "https://access.redhat.com/errata/RHSA-2026:2737"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2762 vom 2026-02-16",
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:2769 vom 2026-02-17",
"url": "https://access.redhat.com/errata/RHSA-2026:2769"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:26411 vom 2026-06-16",
"url": "https://access.redhat.com/errata/RHSA-2026:26411"
}
],
"source_lang": "en-US",
"title": "Red Hat Enterprise Linux (Advanced Cluster Management): Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-06-16T22:00:00.000+00:00",
"generator": {
"date": "2026-06-17T08:39:58.869+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2025-0226",
"initial_release_date": "2025-01-30T23:00:00.000+00:00",
"revision_history": [
{
"date": "2025-01-30T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2025-02-03T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2025-02-05T23:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-11T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-13T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-02-19T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-03-10T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-03-19T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-04-10T22:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-04-16T22:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-14T22:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-20T22:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-27T22:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-06-03T22:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2025-06-04T22:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-06-17T22:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-07-28T22:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von Fedora aufgenommen"
},
{
"date": "2025-09-24T22:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-09-25T22:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-10-08T22:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-10-15T22:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-11-06T23:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-11-18T23:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-01-25T23:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2026-02-16T23:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-16T22:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von Red Hat aufgenommen"
}
],
"status": "final",
"version": "26"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Amazon Linux 2",
"product": {
"name": "Amazon Linux 2",
"product_id": "398363",
"product_identification_helper": {
"cpe": "cpe:/o:amazon:linux_2:-"
}
}
}
],
"category": "vendor",
"name": "Amazon"
},
{
"branches": [
{
"category": "product_name",
"name": "Fedora Linux",
"product": {
"name": "Fedora Linux",
"product_id": "74185",
"product_identification_helper": {
"cpe": "cpe:/o:fedoraproject:fedora:-"
}
}
}
],
"category": "vendor",
"name": "Fedora"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "Big SQL",
"product": {
"name": "IBM DB2 Big SQL",
"product_id": "T022379",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:db2:big_sql"
}
}
}
],
"category": "product_name",
"name": "DB2"
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
},
{
"category": "product_version",
"name": "Advanced Cluster Security for Kubernetes 4",
"product": {
"name": "Red Hat Enterprise Linux Advanced Cluster Security for Kubernetes 4",
"product_id": "T027916",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:advanced_cluster_security_for_kubernetes_4"
}
}
},
{
"category": "product_version_range",
"name": "Advanced Cluster Management \u003c2.12.2",
"product": {
"name": "Red Hat Enterprise Linux Advanced Cluster Management \u003c2.12.2",
"product_id": "T040714"
}
},
{
"category": "product_version",
"name": "Advanced Cluster Management 2.12.2",
"product": {
"name": "Red Hat Enterprise Linux Advanced Cluster Management 2.12.2",
"product_id": "T040714-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:advanced_cluster_management__2.12.2"
}
}
},
{
"category": "product_version",
"name": "8",
"product": {
"name": "Red Hat Enterprise Linux 8",
"product_id": "T040715",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:8"
}
}
},
{
"category": "product_version",
"name": "9",
"product": {
"name": "Red Hat Enterprise Linux 9",
"product_id": "T040716",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:9"
}
}
},
{
"category": "product_version",
"name": "Gatekeeper",
"product": {
"name": "Red Hat Enterprise Linux Gatekeeper",
"product_id": "T041015",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:gatekeeper"
}
}
}
],
"category": "product_name",
"name": "Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "Container Platform",
"product": {
"name": "Red Hat OpenShift Container Platform",
"product_id": "T025202",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform"
}
}
},
{
"category": "product_version",
"name": "Data Foundation 4",
"product": {
"name": "Red Hat OpenShift Data Foundation 4",
"product_id": "T028133",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:data_foundation_4"
}
}
},
{
"category": "product_version_range",
"name": "Container Platform \u003c4.14.46",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.14.46",
"product_id": "T040823"
}
},
{
"category": "product_version",
"name": "Container Platform 4.14.46",
"product": {
"name": "Red Hat OpenShift Container Platform 4.14.46",
"product_id": "T040823-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.14.46"
}
}
},
{
"category": "product_version_range",
"name": "Container Platform \u003c4.14.48",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.14.48",
"product_id": "T041269"
}
},
{
"category": "product_version",
"name": "Container Platform 4.14.48",
"product": {
"name": "Red Hat OpenShift Container Platform 4.14.48",
"product_id": "T041269-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.14.48"
}
}
},
{
"category": "product_version_range",
"name": "GitOps \u003c1.14.3",
"product": {
"name": "Red Hat OpenShift GitOps \u003c1.14.3",
"product_id": "T042066"
}
},
{
"category": "product_version",
"name": "GitOps 1.14.3",
"product": {
"name": "Red Hat OpenShift GitOps 1.14.3",
"product_id": "T042066-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:gitops__1.14.3"
}
}
},
{
"category": "product_version_range",
"name": "\u003c5.9.14",
"product": {
"name": "Red Hat OpenShift \u003c5.9.14",
"product_id": "T043761"
}
},
{
"category": "product_version",
"name": "5.9.14",
"product": {
"name": "Red Hat OpenShift 5.9.14",
"product_id": "T043761-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:5.9.14"
}
}
},
{
"category": "product_version_range",
"name": "\u003c5.8.20",
"product": {
"name": "Red Hat OpenShift \u003c5.8.20",
"product_id": "T043762"
}
},
{
"category": "product_version",
"name": "5.8.20",
"product": {
"name": "Red Hat OpenShift 5.8.20",
"product_id": "T043762-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:5.8.20"
}
}
},
{
"category": "product_version",
"name": "Dev Spaces 3",
"product": {
"name": "Red Hat OpenShift Dev Spaces 3",
"product_id": "T043942",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:dev_spaces_3"
}
}
},
{
"category": "product_version_range",
"name": "Data Foundation \u003c4.17.7",
"product": {
"name": "Red Hat OpenShift Data Foundation \u003c4.17.7",
"product_id": "T044019"
}
},
{
"category": "product_version",
"name": "Data Foundation 4.17.7",
"product": {
"name": "Red Hat OpenShift Data Foundation 4.17.7",
"product_id": "T044019-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:data_foundation__4.17.7"
}
}
},
{
"category": "product_version_range",
"name": "Data Foundation \u003c4.14.18",
"product": {
"name": "Red Hat OpenShift Data Foundation \u003c4.14.18",
"product_id": "T044338"
}
},
{
"category": "product_version",
"name": "Data Foundation 4.14.18",
"product": {
"name": "Red Hat OpenShift Data Foundation 4.14.18",
"product_id": "T044338-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:data_foundation__4.14.18"
}
}
},
{
"category": "product_version_range",
"name": "Container Platform \u003c4.19.0",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.19.0",
"product_id": "T044671"
}
},
{
"category": "product_version",
"name": "Container Platform 4.19.0",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19.0",
"product_id": "T044671-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.19.0"
}
}
},
{
"category": "product_version_range",
"name": "Container Platform \u003c4.15.58",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.15.58",
"product_id": "T047180"
}
},
{
"category": "product_version",
"name": "Container Platform 4.15.58",
"product": {
"name": "Red Hat OpenShift Container Platform 4.15.58",
"product_id": "T047180-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.15.58"
}
}
}
],
"category": "product_name",
"name": "OpenShift"
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-45337",
"product_status": {
"known_affected": [
"T047180",
"T028133",
"T040715",
"67646",
"T040714",
"T040823",
"74185",
"T043762",
"T027916",
"T002207",
"T043942",
"T022379",
"T044019",
"T044338",
"T025202",
"398363",
"T041269",
"T041015",
"T044671",
"T042066",
"T043761"
]
},
"release_date": "2025-01-30T23:00:00.000+00:00",
"title": "CVE-2024-45337"
},
{
"cve": "CVE-2024-45338",
"product_status": {
"known_affected": [
"T047180",
"T028133",
"T040715",
"67646",
"T040714",
"T040823",
"74185",
"T043762",
"T027916",
"T002207",
"T043942",
"T022379",
"T044019",
"T044338",
"T025202",
"398363",
"T041269",
"T041015",
"T044671",
"T042066",
"T043761"
]
},
"release_date": "2025-01-30T23:00:00.000+00:00",
"title": "CVE-2024-45338"
},
{
"cve": "CVE-2024-55565",
"product_status": {
"known_affected": [
"T047180",
"T028133",
"T040716",
"T040715",
"67646",
"T040714",
"T040823",
"74185",
"T043762",
"T027916",
"T002207",
"T043942",
"T022379",
"T044019",
"T044338",
"T025202",
"398363",
"T041269",
"T041015",
"T044671",
"T042066",
"T043761"
]
},
"release_date": "2025-01-30T23:00:00.000+00:00",
"title": "CVE-2024-55565"
}
]
}
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…