Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-63076 (GCVE-0-2026-63076)
Vulnerability from cvelistv5 – Published: 2026-08-25 13:00 – Updated: 2026-08-25 14:37- CWE-476 - NULL Pointer Dereference
{
"containers": {
"adp": [
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2026-63076",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-08-25T14:37:28.943884Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-08-25T14:37:32.193Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "OpenSSL",
"vendor": "OpenSSL",
"versions": [
{
"lessThan": "4.0.2",
"status": "affected",
"version": "4.0.0",
"versionType": "semver"
},
{
"lessThan": "3.6.4",
"status": "affected",
"version": "3.6.0",
"versionType": "semver"
},
{
"lessThan": "3.5.8",
"status": "affected",
"version": "3.5.0",
"versionType": "semver"
},
{
"lessThan": "3.4.7",
"status": "affected",
"version": "3.4.0",
"versionType": "semver"
},
{
"lessThan": "3.0.22",
"status": "affected",
"version": "3.0.0",
"versionType": "semver"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "reporter",
"value": "Ying Dong"
},
{
"lang": "en",
"type": "reporter",
"value": "Bhabani Sankar Das"
},
{
"lang": "en",
"type": "remediation developer",
"value": "Daniel Kubec"
}
],
"datePublic": "2026-08-25T11:36:16.000Z",
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "Issue summary: OpenSSL CMP password based protection verification only\u003cbr\u003echecks whether the protectionAlg parameter was not NULL and not its\u003cbr\u003eASN.1 type, before treating it as a PBMParameter. A crafted message can\u003cbr\u003econtain a parameter of a different type, which is then dereferenced as an\u003cbr\u003einvalid pointer.\u003cbr\u003e\u003cbr\u003eImpact summary: A remote, unauthenticated attacker can crash an application\u003cbr\u003eacting as a CMP server that accepts PBM-protected messages, or a CMP client\u003cbr\u003etalking to a malicious or intercepted CMP server, resulting in a Denial of\u003cbr\u003eService.\u003cbr\u003e\u003cbr\u003eCWE: CWE-476: NULL Pointer Dereference\u003cbr\u003e\u003cbr\u003eDescription: When verifying the password-based MAC protection of a CMP\u003cbr\u003emessage, OpenSSL library reads the protectionAlg algorithm parameter with\u003cbr\u003eX509_ALGOR_get0(), which returns both the parameter type and its value\u003cbr\u003epointer. The value is then cast to an ASN1_STRING and treated as the\u003cbr\u003eexpected PBMParameter after only checking that pointer is not NULL. The\u003cbr\u003eparameter type returned by X509_ALGOR_get0() was never consulted.\u003cbr\u003e\u003cbr\u003eThis happens during protection verification, before any MAC is computed, so\u003cbr\u003eno knowledge of the PBM shared secret is required; the only precondition is\u003cbr\u003ethat PBM verification is reachable. On the server side this is reached from\u003cbr\u003eOSSL_CMP_SRV_process_request() for any application that stands up a CMP\u003cbr\u003eserver accepting PBM-protected messages, and on the client side from CMP\u003cbr\u003eresponse validation against a malicious or on-path (MITM) server. The\u003cbr\u003ereliable consequence is a denial of service; there is no memory disclosure,\u003cbr\u003eno controlled memory write, and no path to code execution. CMP is a\u003cbr\u003especialized feature that an application must explicitly enable.\u003cbr\u003e\u003cbr\u003eFIPS impact: no\u003cbr\u003eAs the CMP code lives outside the FIPS module boundary, no FIPS modules\u003cbr\u003eare affected by this CVE."
}
],
"value": "Issue summary: OpenSSL CMP password based protection verification only\nchecks whether the protectionAlg parameter was not NULL and not its\nASN.1 type, before treating it as a PBMParameter. A crafted message can\ncontain a parameter of a different type, which is then dereferenced as an\ninvalid pointer.\n\nImpact summary: A remote, unauthenticated attacker can crash an application\nacting as a CMP server that accepts PBM-protected messages, or a CMP client\ntalking to a malicious or intercepted CMP server, resulting in a Denial of\nService.\n\nCWE: CWE-476: NULL Pointer Dereference\n\nDescription: When verifying the password-based MAC protection of a CMP\nmessage, OpenSSL library reads the protectionAlg algorithm parameter with\nX509_ALGOR_get0(), which returns both the parameter type and its value\npointer. The value is then cast to an ASN1_STRING and treated as the\nexpected PBMParameter after only checking that pointer is not NULL. The\nparameter type returned by X509_ALGOR_get0() was never consulted.\n\nThis happens during protection verification, before any MAC is computed, so\nno knowledge of the PBM shared secret is required; the only precondition is\nthat PBM verification is reachable. On the server side this is reached from\nOSSL_CMP_SRV_process_request() for any application that stands up a CMP\nserver accepting PBM-protected messages, and on the client side from CMP\nresponse validation against a malicious or on-path (MITM) server. The\nreliable consequence is a denial of service; there is no memory disclosure,\nno controlled memory write, and no path to code execution. CMP is a\nspecialized feature that an application must explicitly enable.\n\nFIPS impact: no\nAs the CMP code lives outside the FIPS module boundary, no FIPS modules\nare affected by this CVE."
}
],
"metrics": [
{
"format": "other",
"other": {
"content": {
"text": "Moderate"
},
"type": "https://openssl-library.org/policies/general/security-policy/"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-476",
"description": "CWE-476 NULL Pointer Dereference",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-08-25T13:00:11.218Z",
"orgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"shortName": "openssl"
},
"references": [
{
"name": "OpenSSL Advisory",
"tags": [
"vendor-advisory"
],
"url": "https://openssl-library.org/news/secadv/20260825.txt"
},
{
"name": "4.0.2 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/a17cc8d612ecff6d94a9b7ca8b5283ddf5ff570e"
},
{
"name": "3.6.4 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/a7af46a92d0ce19a90e669ef56d2576a07924226"
},
{
"name": "3.5.8 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/cdacfff557389abfa9e4615abded2ec984517d6c"
},
{
"name": "3.4.7 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/a1f348ccb328c3afbd4ba6883f9b7c813c043259"
},
{
"name": "3.0.22 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/37882aa2e0256e1072442a8f62f7db45b995c45b"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Invalid Pointer Dereference in CMP Server via Crafted protectionAlg",
"x_generator": {
"engine": "Vulnogram 0.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"assignerShortName": "openssl",
"cveId": "CVE-2026-63076",
"datePublished": "2026-08-25T13:00:11.218Z",
"dateReserved": "2026-07-15T13:10:26.188Z",
"dateUpdated": "2026-08-25T14:37:32.193Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-63076",
"date": "2026-09-01",
"epss": "0.0133",
"percentile": "0.69073"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-63076\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2026-08-25T13:19:26.543\",\"lastModified\":\"2026-08-28T19:46:29.323\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Issue summary: OpenSSL CMP password based protection verification only\\nchecks whether the protectionAlg parameter was not NULL and not its\\nASN.1 type, before treating it as a PBMParameter. A crafted message can\\ncontain a parameter of a different type, which is then dereferenced as an\\ninvalid pointer.\\n\\nImpact summary: A remote, unauthenticated attacker can crash an application\\nacting as a CMP server that accepts PBM-protected messages, or a CMP client\\ntalking to a malicious or intercepted CMP server, resulting in a Denial of\\nService.\\n\\nCWE: CWE-476: NULL Pointer Dereference\\n\\nDescription: When verifying the password-based MAC protection of a CMP\\nmessage, OpenSSL library reads the protectionAlg algorithm parameter with\\nX509_ALGOR_get0(), which returns both the parameter type and its value\\npointer. The value is then cast to an ASN1_STRING and treated as the\\nexpected PBMParameter after only checking that pointer is not NULL. The\\nparameter type returned by X509_ALGOR_get0() was never consulted.\\n\\nThis happens during protection verification, before any MAC is computed, so\\nno knowledge of the PBM shared secret is required; the only precondition is\\nthat PBM verification is reachable. On the server side this is reached from\\nOSSL_CMP_SRV_process_request() for any application that stands up a CMP\\nserver accepting PBM-protected messages, and on the client side from CMP\\nresponse validation against a malicious or on-path (MITM) server. The\\nreliable consequence is a denial of service; there is no memory disclosure,\\nno controlled memory write, and no path to code execution. CMP is a\\nspecialized feature that an application must explicitly enable.\\n\\nFIPS impact: no\\nAs the CMP code lives outside the FIPS module boundary, no FIPS modules\\nare affected by this CVE.\"}],\"affected\":[{\"source\":\"openssl-security@openssl.org\",\"affectedData\":[{\"vendor\":\"OpenSSL\",\"product\":\"OpenSSL\",\"defaultStatus\":\"unaffected\",\"versions\":[{\"version\":\"4.0.0\",\"lessThan\":\"4.0.2\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.6.0\",\"lessThan\":\"3.6.4\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.5.0\",\"lessThan\":\"3.5.8\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.4.0\",\"lessThan\":\"3.4.7\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.0.0\",\"lessThan\":\"3.0.22\",\"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:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-08-25T14:37:28.943884Z\",\"id\":\"CVE-2026-63076\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"openssl-security@openssl.org\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-476\"}]}],\"references\":[{\"url\":\"https://github.com/openssl/openssl/commit/37882aa2e0256e1072442a8f62f7db45b995c45b\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/a17cc8d612ecff6d94a9b7ca8b5283ddf5ff570e\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/a1f348ccb328c3afbd4ba6883f9b7c813c043259\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/a7af46a92d0ce19a90e669ef56d2576a07924226\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/cdacfff557389abfa9e4615abded2ec984517d6c\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://openssl-library.org/news/secadv/20260825.txt\",\"source\":\"openssl-security@openssl.org\"}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-08-31T15:24:24+00:00",
"cve": "CVE-2026-63076",
"id": "CVE-2026-63076",
"initial_release_date": "2026-08-25T00:00:00+00:00",
"product_status:fixed": "6",
"product_status:known_affected": "35",
"product_status:known_not_affected": "57",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "openssl: invalid pointer dereference in CMP server via crafted protectionAlg",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-63076.json",
"version": "3"
},
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.5, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"NONE\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-63076\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-08-25T14:37:28.943884Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-08-25T14:37:23.862Z\"}}], \"cna\": {\"title\": \"Invalid Pointer Dereference in CMP Server via Crafted protectionAlg\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"reporter\", \"value\": \"Ying Dong\"}, {\"lang\": \"en\", \"type\": \"reporter\", \"value\": \"Bhabani Sankar Das\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"value\": \"Daniel Kubec\"}], \"metrics\": [{\"other\": {\"type\": \"https://openssl-library.org/policies/general/security-policy/\", \"content\": {\"text\": \"Moderate\"}}, \"format\": \"other\"}], \"affected\": [{\"vendor\": \"OpenSSL\", \"product\": \"OpenSSL\", \"versions\": [{\"status\": \"affected\", \"version\": \"4.0.0\", \"lessThan\": \"4.0.2\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.6.0\", \"lessThan\": \"3.6.4\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.5.0\", \"lessThan\": \"3.5.8\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.4.0\", \"lessThan\": \"3.4.7\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.0.0\", \"lessThan\": \"3.0.22\", \"versionType\": \"semver\"}], \"defaultStatus\": \"unaffected\"}], \"datePublic\": \"2026-08-25T11:36:16.000Z\", \"references\": [{\"url\": \"https://openssl-library.org/news/secadv/20260825.txt\", \"name\": \"OpenSSL Advisory\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/a17cc8d612ecff6d94a9b7ca8b5283ddf5ff570e\", \"name\": \"4.0.2 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/a7af46a92d0ce19a90e669ef56d2576a07924226\", \"name\": \"3.6.4 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/cdacfff557389abfa9e4615abded2ec984517d6c\", \"name\": \"3.5.8 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/a1f348ccb328c3afbd4ba6883f9b7c813c043259\", \"name\": \"3.4.7 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/37882aa2e0256e1072442a8f62f7db45b995c45b\", \"name\": \"3.0.22 git commit\", \"tags\": [\"patch\"]}], \"x_generator\": {\"engine\": \"Vulnogram 0.2.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"Issue summary: OpenSSL CMP password based protection verification only\\nchecks whether the protectionAlg parameter was not NULL and not its\\nASN.1 type, before treating it as a PBMParameter. A crafted message can\\ncontain a parameter of a different type, which is then dereferenced as an\\ninvalid pointer.\\n\\nImpact summary: A remote, unauthenticated attacker can crash an application\\nacting as a CMP server that accepts PBM-protected messages, or a CMP client\\ntalking to a malicious or intercepted CMP server, resulting in a Denial of\\nService.\\n\\nCWE: CWE-476: NULL Pointer Dereference\\n\\nDescription: When verifying the password-based MAC protection of a CMP\\nmessage, OpenSSL library reads the protectionAlg algorithm parameter with\\nX509_ALGOR_get0(), which returns both the parameter type and its value\\npointer. The value is then cast to an ASN1_STRING and treated as the\\nexpected PBMParameter after only checking that pointer is not NULL. The\\nparameter type returned by X509_ALGOR_get0() was never consulted.\\n\\nThis happens during protection verification, before any MAC is computed, so\\nno knowledge of the PBM shared secret is required; the only precondition is\\nthat PBM verification is reachable. On the server side this is reached from\\nOSSL_CMP_SRV_process_request() for any application that stands up a CMP\\nserver accepting PBM-protected messages, and on the client side from CMP\\nresponse validation against a malicious or on-path (MITM) server. The\\nreliable consequence is a denial of service; there is no memory disclosure,\\nno controlled memory write, and no path to code execution. CMP is a\\nspecialized feature that an application must explicitly enable.\\n\\nFIPS impact: no\\nAs the CMP code lives outside the FIPS module boundary, no FIPS modules\\nare affected by this CVE.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"Issue summary: OpenSSL CMP password based protection verification only\u003cbr\u003echecks whether the protectionAlg parameter was not NULL and not its\u003cbr\u003eASN.1 type, before treating it as a PBMParameter. A crafted message can\u003cbr\u003econtain a parameter of a different type, which is then dereferenced as an\u003cbr\u003einvalid pointer.\u003cbr\u003e\u003cbr\u003eImpact summary: A remote, unauthenticated attacker can crash an application\u003cbr\u003eacting as a CMP server that accepts PBM-protected messages, or a CMP client\u003cbr\u003etalking to a malicious or intercepted CMP server, resulting in a Denial of\u003cbr\u003eService.\u003cbr\u003e\u003cbr\u003eCWE: CWE-476: NULL Pointer Dereference\u003cbr\u003e\u003cbr\u003eDescription: When verifying the password-based MAC protection of a CMP\u003cbr\u003emessage, OpenSSL library reads the protectionAlg algorithm parameter with\u003cbr\u003eX509_ALGOR_get0(), which returns both the parameter type and its value\u003cbr\u003epointer. The value is then cast to an ASN1_STRING and treated as the\u003cbr\u003eexpected PBMParameter after only checking that pointer is not NULL. The\u003cbr\u003eparameter type returned by X509_ALGOR_get0() was never consulted.\u003cbr\u003e\u003cbr\u003eThis happens during protection verification, before any MAC is computed, so\u003cbr\u003eno knowledge of the PBM shared secret is required; the only precondition is\u003cbr\u003ethat PBM verification is reachable. On the server side this is reached from\u003cbr\u003eOSSL_CMP_SRV_process_request() for any application that stands up a CMP\u003cbr\u003eserver accepting PBM-protected messages, and on the client side from CMP\u003cbr\u003eresponse validation against a malicious or on-path (MITM) server. The\u003cbr\u003ereliable consequence is a denial of service; there is no memory disclosure,\u003cbr\u003eno controlled memory write, and no path to code execution. CMP is a\u003cbr\u003especialized feature that an application must explicitly enable.\u003cbr\u003e\u003cbr\u003eFIPS impact: no\u003cbr\u003eAs the CMP code lives outside the FIPS module boundary, no FIPS modules\u003cbr\u003eare affected by this CVE.\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-476\", \"description\": \"CWE-476 NULL Pointer Dereference\"}]}], \"providerMetadata\": {\"orgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"shortName\": \"openssl\", \"dateUpdated\": \"2026-08-25T13:00:11.218Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-63076\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-08-25T14:37:32.193Z\", \"dateReserved\": \"2026-07-15T13:10:26.188Z\", \"assignerOrgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"datePublished\": \"2026-08-25T13:00:11.218Z\", \"assignerShortName\": \"openssl\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
CERTFR-2026-AVI-1079
Vulnerability from certfr_avis - Published: 2026-08-26 - Updated: 2026-08-26
De multiples vulnérabilités ont été découvertes dans OpenSSL. Elles permettent à un attaquant de provoquer un déni de service à distance et un contournement de la politique de sécurité.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
| Vendor | Product | Description | ||
|---|---|---|---|---|
| OpenSSL | OpenSSL | OpenSSL versions 3.6.x antérieures à 3.6.4 | ||
| OpenSSL | OpenSSL | OpenSSL versions 3.4.x antérieures à 3.4.7 | ||
| OpenSSL | OpenSSL | OpenSSL versions 3.5.x antérieures à 3.5.8 | ||
| OpenSSL | OpenSSL | OpenSSL versions 3.0.x antérieures à 3.0.22 | ||
| OpenSSL | OpenSSL | OpenSSL versions 1.0.2x antérieures à 1.0.2zr | ||
| OpenSSL | OpenSSL | OpenSSL versions 1.1.1x antérieures à 1.1.1zi | ||
| OpenSSL | OpenSSL | OpenSSL versions 4.0.x antérieures à 4.0.2 |
| Title | Publication Time | Tags | |||
|---|---|---|---|---|---|
|
|||||
{
"$ref": "https://www.cert.ssi.gouv.fr/openapi.json",
"affected_systems": [
{
"description": "OpenSSL versions 3.6.x ant\u00e9rieures \u00e0 3.6.4",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
},
{
"description": "OpenSSL versions 3.4.x ant\u00e9rieures \u00e0 3.4.7",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
},
{
"description": "OpenSSL versions 3.5.x ant\u00e9rieures \u00e0 3.5.8",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
},
{
"description": "OpenSSL versions 3.0.x ant\u00e9rieures \u00e0 3.0.22",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
},
{
"description": "OpenSSL versions 1.0.2x ant\u00e9rieures \u00e0 1.0.2zr",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
},
{
"description": "OpenSSL versions 1.1.1x ant\u00e9rieures \u00e0 1.1.1zi",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
},
{
"description": "OpenSSL versions 4.0.x ant\u00e9rieures \u00e0 4.0.2",
"product": {
"name": "OpenSSL",
"vendor": {
"name": "OpenSSL",
"scada": false
}
}
}
],
"affected_systems_content": "",
"content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).",
"cves": [
{
"name": "CVE-2026-63074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63074"
},
{
"name": "CVE-2026-63073",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63073"
},
{
"name": "CVE-2026-14457",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-14457"
},
{
"name": "CVE-2026-63075",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63075"
},
{
"name": "CVE-2026-63076",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63076"
},
{
"name": "CVE-2026-18798",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-18798"
},
{
"name": "CVE-2026-75803",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-75803"
},
{
"name": "CVE-2026-54874",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-54874"
},
{
"name": "CVE-2026-63072",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63072"
}
],
"initial_release_date": "2026-08-26T00:00:00",
"last_revision_date": "2026-08-26T00:00:00",
"links": [],
"reference": "CERTFR-2026-AVI-1079",
"revisions": [
{
"description": "Version initiale",
"revision_date": "2026-08-26T00:00:00.000000"
}
],
"risks": [
{
"description": "D\u00e9ni de service \u00e0 distance"
},
{
"description": "Contournement de la politique de s\u00e9curit\u00e9"
}
],
"summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans OpenSSL. Elles permettent \u00e0 un attaquant de provoquer un d\u00e9ni de service \u00e0 distance et un contournement de la politique de s\u00e9curit\u00e9.",
"title": "Multiples vuln\u00e9rabilit\u00e9s dans OpenSSL",
"vendor_advisories": [
{
"published_at": "2026-08-25",
"title": "Bulletin de s\u00e9curit\u00e9 OpenSSL",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
]
}
FKIE_CVE-2026-63076
Vulnerability from fkie_nvd - Published: 2026-08-25 13:19 - Updated: 2026-08-28 19:46| Vendor | Product | Version |
|---|
{
"affected": [
{
"affectedData": [
{
"defaultStatus": "unaffected",
"product": "OpenSSL",
"vendor": "OpenSSL",
"versions": [
{
"lessThan": "4.0.2",
"status": "affected",
"version": "4.0.0",
"versionType": "semver"
},
{
"lessThan": "3.6.4",
"status": "affected",
"version": "3.6.0",
"versionType": "semver"
},
{
"lessThan": "3.5.8",
"status": "affected",
"version": "3.5.0",
"versionType": "semver"
},
{
"lessThan": "3.4.7",
"status": "affected",
"version": "3.4.0",
"versionType": "semver"
},
{
"lessThan": "3.0.22",
"status": "affected",
"version": "3.0.0",
"versionType": "semver"
}
]
}
],
"source": "openssl-security@openssl.org"
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "Issue summary: OpenSSL CMP password based protection verification only\nchecks whether the protectionAlg parameter was not NULL and not its\nASN.1 type, before treating it as a PBMParameter. A crafted message can\ncontain a parameter of a different type, which is then dereferenced as an\ninvalid pointer.\n\nImpact summary: A remote, unauthenticated attacker can crash an application\nacting as a CMP server that accepts PBM-protected messages, or a CMP client\ntalking to a malicious or intercepted CMP server, resulting in a Denial of\nService.\n\nCWE: CWE-476: NULL Pointer Dereference\n\nDescription: When verifying the password-based MAC protection of a CMP\nmessage, OpenSSL library reads the protectionAlg algorithm parameter with\nX509_ALGOR_get0(), which returns both the parameter type and its value\npointer. The value is then cast to an ASN1_STRING and treated as the\nexpected PBMParameter after only checking that pointer is not NULL. The\nparameter type returned by X509_ALGOR_get0() was never consulted.\n\nThis happens during protection verification, before any MAC is computed, so\nno knowledge of the PBM shared secret is required; the only precondition is\nthat PBM verification is reachable. On the server side this is reached from\nOSSL_CMP_SRV_process_request() for any application that stands up a CMP\nserver accepting PBM-protected messages, and on the client side from CMP\nresponse validation against a malicious or on-path (MITM) server. The\nreliable consequence is a denial of service; there is no memory disclosure,\nno controlled memory write, and no path to code execution. CMP is a\nspecialized feature that an application must explicitly enable.\n\nFIPS impact: no\nAs the CMP code lives outside the FIPS module boundary, no FIPS modules\nare affected by this CVE."
}
],
"id": "CVE-2026-63076",
"lastModified": "2026-08-28T19:46:29.323",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"exploitabilityScore": 3.9,
"impactScore": 3.6,
"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"type": "Secondary"
}
],
"ssvcV203": [
{
"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"ssvcData": {
"id": "CVE-2026-63076",
"options": [
{
"exploitation": "none"
},
{
"automatable": "yes"
},
{
"technicalImpact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-08-25T14:37:28.943884Z",
"version": "2.0.3"
}
}
]
},
"published": "2026-08-25T13:19:26.543",
"references": [
{
"source": "openssl-security@openssl.org",
"url": "https://github.com/openssl/openssl/commit/37882aa2e0256e1072442a8f62f7db45b995c45b"
},
{
"source": "openssl-security@openssl.org",
"url": "https://github.com/openssl/openssl/commit/a17cc8d612ecff6d94a9b7ca8b5283ddf5ff570e"
},
{
"source": "openssl-security@openssl.org",
"url": "https://github.com/openssl/openssl/commit/a1f348ccb328c3afbd4ba6883f9b7c813c043259"
},
{
"source": "openssl-security@openssl.org",
"url": "https://github.com/openssl/openssl/commit/a7af46a92d0ce19a90e669ef56d2576a07924226"
},
{
"source": "openssl-security@openssl.org",
"url": "https://github.com/openssl/openssl/commit/cdacfff557389abfa9e4615abded2ec984517d6c"
},
{
"source": "openssl-security@openssl.org",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"sourceIdentifier": "openssl-security@openssl.org",
"vulnStatus": "Awaiting Analysis",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "CWE-476"
}
],
"source": "openssl-security@openssl.org",
"type": "Secondary"
}
]
}
GHSA-R3HF-PF7X-WGQG
Vulnerability from github – Published: 2026-08-25 15:32 – Updated: 2026-08-25 15:32Issue summary: OpenSSL CMP password based protection verification only checks whether the protectionAlg parameter was not NULL and not its ASN.1 type, before treating it as a PBMParameter. A crafted message can contain a parameter of a different type, which is then dereferenced as an invalid pointer.
Impact summary: A remote, unauthenticated attacker can crash an application acting as a CMP server that accepts PBM-protected messages, or a CMP client talking to a malicious or intercepted CMP server, resulting in a Denial of Service.
CWE: CWE-476: NULL Pointer Dereference
Description: When verifying the password-based MAC protection of a CMP message, OpenSSL library reads the protectionAlg algorithm parameter with X509_ALGOR_get0(), which returns both the parameter type and its value pointer. The value is then cast to an ASN1_STRING and treated as the expected PBMParameter after only checking that pointer is not NULL. The parameter type returned by X509_ALGOR_get0() was never consulted.
This happens during protection verification, before any MAC is computed, so no knowledge of the PBM shared secret is required; the only precondition is that PBM verification is reachable. On the server side this is reached from OSSL_CMP_SRV_process_request() for any application that stands up a CMP server accepting PBM-protected messages, and on the client side from CMP response validation against a malicious or on-path (MITM) server. The reliable consequence is a denial of service; there is no memory disclosure, no controlled memory write, and no path to code execution. CMP is a specialized feature that an application must explicitly enable.
FIPS impact: no As the CMP code lives outside the FIPS module boundary, no FIPS modules are affected by this CVE.
{
"affected": [],
"aliases": [
"CVE-2026-63076"
],
"database_specific": {
"cwe_ids": [
"CWE-476"
],
"github_reviewed": false,
"github_reviewed_at": null,
"nvd_published_at": "2026-08-25T13:19:26Z",
"severity": "HIGH"
},
"details": "Issue summary: OpenSSL CMP password based protection verification only\nchecks whether the protectionAlg parameter was not NULL and not its\nASN.1 type, before treating it as a PBMParameter. A crafted message can\ncontain a parameter of a different type, which is then dereferenced as an\ninvalid pointer.\n\nImpact summary: A remote, unauthenticated attacker can crash an application\nacting as a CMP server that accepts PBM-protected messages, or a CMP client\ntalking to a malicious or intercepted CMP server, resulting in a Denial of\nService.\n\nCWE: CWE-476: NULL Pointer Dereference\n\nDescription: When verifying the password-based MAC protection of a CMP\nmessage, OpenSSL library reads the protectionAlg algorithm parameter with\nX509_ALGOR_get0(), which returns both the parameter type and its value\npointer. The value is then cast to an ASN1_STRING and treated as the\nexpected PBMParameter after only checking that pointer is not NULL. The\nparameter type returned by X509_ALGOR_get0() was never consulted.\n\nThis happens during protection verification, before any MAC is computed, so\nno knowledge of the PBM shared secret is required; the only precondition is\nthat PBM verification is reachable. On the server side this is reached from\nOSSL_CMP_SRV_process_request() for any application that stands up a CMP\nserver accepting PBM-protected messages, and on the client side from CMP\nresponse validation against a malicious or on-path (MITM) server. The\nreliable consequence is a denial of service; there is no memory disclosure,\nno controlled memory write, and no path to code execution. CMP is a\nspecialized feature that an application must explicitly enable.\n\nFIPS impact: no\nAs the CMP code lives outside the FIPS module boundary, no FIPS modules\nare affected by this CVE.",
"id": "GHSA-r3hf-pf7x-wgqg",
"modified": "2026-08-25T15:32:59Z",
"published": "2026-08-25T15:32:58Z",
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63076"
},
{
"type": "WEB",
"url": "https://github.com/openssl/openssl/commit/37882aa2e0256e1072442a8f62f7db45b995c45b"
},
{
"type": "WEB",
"url": "https://github.com/openssl/openssl/commit/a17cc8d612ecff6d94a9b7ca8b5283ddf5ff570e"
},
{
"type": "WEB",
"url": "https://github.com/openssl/openssl/commit/a1f348ccb328c3afbd4ba6883f9b7c813c043259"
},
{
"type": "WEB",
"url": "https://github.com/openssl/openssl/commit/a7af46a92d0ce19a90e669ef56d2576a07924226"
},
{
"type": "WEB",
"url": "https://github.com/openssl/openssl/commit/cdacfff557389abfa9e4615abded2ec984517d6c"
},
{
"type": "WEB",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
}
]
}
OPENSUSE-SU-2026:11623-1
Vulnerability from csaf_opensuse - Published: 2026-08-27 00:00 - Updated: 2026-08-27 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "libopenssl-3-devel-3.5.3-8.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the libopenssl-3-devel-3.5.3-8.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2026-11623",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_11623-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-14456 page",
"url": "https://www.suse.com/security/cve/CVE-2026-14456/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-14457 page",
"url": "https://www.suse.com/security/cve/CVE-2026-14457/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-18798 page",
"url": "https://www.suse.com/security/cve/CVE-2026-18798/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-34181 page",
"url": "https://www.suse.com/security/cve/CVE-2026-34181/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-54874 page",
"url": "https://www.suse.com/security/cve/CVE-2026-54874/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-63072 page",
"url": "https://www.suse.com/security/cve/CVE-2026-63072/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-63073 page",
"url": "https://www.suse.com/security/cve/CVE-2026-63073/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-63074 page",
"url": "https://www.suse.com/security/cve/CVE-2026-63074/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-63075 page",
"url": "https://www.suse.com/security/cve/CVE-2026-63075/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-63076 page",
"url": "https://www.suse.com/security/cve/CVE-2026-63076/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-75803 page",
"url": "https://www.suse.com/security/cve/CVE-2026-75803/"
}
],
"title": "libopenssl-3-devel-3.5.3-8.1 on GA media",
"tracking": {
"current_release_date": "2026-08-27T00:00:00Z",
"generator": {
"date": "2026-08-27T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:11623-1",
"initial_release_date": "2026-08-27T00:00:00Z",
"revision_history": [
{
"date": "2026-08-27T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl-3-devel-3.5.3-8.1.aarch64",
"product_id": "libopenssl-3-devel-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"product_id": "libopenssl-3-devel-32bit-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"product_id": "libopenssl-3-fips-provider-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"product_id": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"product_id": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl3-3.5.3-8.1.aarch64",
"product_id": "libopenssl3-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl3-32bit-3.5.3-8.1.aarch64",
"product_id": "libopenssl3-32bit-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"product": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"product_id": "libopenssl3-x86-64-v3-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.3-8.1.aarch64",
"product": {
"name": "openssl-3-3.5.3-8.1.aarch64",
"product_id": "openssl-3-3.5.3-8.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.5.3-8.1.aarch64",
"product": {
"name": "openssl-3-doc-3.5.3-8.1.aarch64",
"product_id": "openssl-3-doc-3.5.3-8.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl-3-devel-3.5.3-8.1.ppc64le",
"product_id": "libopenssl-3-devel-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"product_id": "libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"product_id": "libopenssl-3-fips-provider-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"product_id": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"product_id": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl3-3.5.3-8.1.ppc64le",
"product_id": "libopenssl3-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl3-32bit-3.5.3-8.1.ppc64le",
"product_id": "libopenssl3-32bit-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"product": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"product_id": "libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.3-8.1.ppc64le",
"product": {
"name": "openssl-3-3.5.3-8.1.ppc64le",
"product_id": "openssl-3-3.5.3-8.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.5.3-8.1.ppc64le",
"product": {
"name": "openssl-3-doc-3.5.3-8.1.ppc64le",
"product_id": "openssl-3-doc-3.5.3-8.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl-3-devel-3.5.3-8.1.s390x",
"product_id": "libopenssl-3-devel-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"product_id": "libopenssl-3-devel-32bit-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"product_id": "libopenssl-3-fips-provider-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"product_id": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"product_id": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl3-3.5.3-8.1.s390x",
"product_id": "libopenssl3-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl3-32bit-3.5.3-8.1.s390x",
"product_id": "libopenssl3-32bit-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"product": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"product_id": "libopenssl3-x86-64-v3-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.3-8.1.s390x",
"product": {
"name": "openssl-3-3.5.3-8.1.s390x",
"product_id": "openssl-3-3.5.3-8.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.5.3-8.1.s390x",
"product": {
"name": "openssl-3-doc-3.5.3-8.1.s390x",
"product_id": "openssl-3-doc-3.5.3-8.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl-3-devel-3.5.3-8.1.x86_64",
"product_id": "libopenssl-3-devel-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"product_id": "libopenssl-3-devel-32bit-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"product_id": "libopenssl-3-fips-provider-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"product_id": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"product_id": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl3-3.5.3-8.1.x86_64",
"product_id": "libopenssl3-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl3-32bit-3.5.3-8.1.x86_64",
"product_id": "libopenssl3-32bit-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"product": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"product_id": "libopenssl3-x86-64-v3-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.3-8.1.x86_64",
"product": {
"name": "openssl-3-3.5.3-8.1.x86_64",
"product_id": "openssl-3-3.5.3-8.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.5.3-8.1.x86_64",
"product": {
"name": "openssl-3-doc-3.5.3-8.1.x86_64",
"product_id": "openssl-3-doc-3.5.3-8.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl-3-devel-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl-3-devel-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl-3-devel-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl3-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl3-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl3-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl3-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl3-32bit-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl3-32bit-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl3-32bit-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl3-32bit-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64"
},
"product_reference": "libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le"
},
"product_reference": "libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x"
},
"product_reference": "libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-x86-64-v3-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64"
},
"product_reference": "libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64"
},
"product_reference": "openssl-3-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le"
},
"product_reference": "openssl-3-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x"
},
"product_reference": "openssl-3-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64"
},
"product_reference": "openssl-3-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.5.3-8.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64"
},
"product_reference": "openssl-3-doc-3.5.3-8.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.5.3-8.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le"
},
"product_reference": "openssl-3-doc-3.5.3-8.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.5.3-8.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x"
},
"product_reference": "openssl-3-doc-3.5.3-8.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.5.3-8.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
},
"product_reference": "openssl-3-doc-3.5.3-8.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-14456",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-14456"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: When an OpenSSL QUIC server (Listener SSL object) processes\nvalid QUIC Initial packets for unknown destination connection IDs, it\ncan allocate and queue new incoming channels without enforcing any limit.\n\nImpact summary: A remote peer that can make many Initial packets reach the\nserver listener faster than the application accepts connections, can cause the\nmemory allocated to store the per-channel state to grow without any limits,\npotentially making the QUIC listener unavailable and causing Denial of Service.\n\nCWE: CWE-770: Allocation of Resources Without Limits or Throttling\n\nDescription: The function that handles inbound QUIC packets uses\nConnection-Id from the packet header to find an existing connection\n(QUIC channel). If no existing connection is found and the packet\ntype is INITIAL, the function treats the packet as a new connection. It\nallocates a new channel object and inserts it into a queue where it\nwaits to be accepted by the local application with SSL_accept(3ossl).\nThe memory occupied by these initial channel objects may grow\nwithout bounds if the application is not able to call SSL_accept()\nfrequently enough to serve these inbound connection requests.\n\nThe issue is present since OpenSSL 3.5 when the QUIC server implementation\nwas added.\n\nThe fix introduces a limit for pending connections. The default limit is set\nto 256 pending connections (waiting to be accepted by the local application).\nApplications may change the default by calling SSL_set_value_uint(3ossl).\n\nFIPS impact: no\nThe FIPS module is not affected as the QUIC implementation is outside of\nthe OpenSSL FIPS module boundary.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-14456",
"url": "https://www.suse.com/security/cve/CVE-2026-14456"
},
{
"category": "external",
"summary": "SUSE Bug 1274791 for CVE-2026-14456",
"url": "https://bugzilla.suse.com/1274791"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.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 Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-14456"
},
{
"cve": "CVE-2026-14457",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-14457"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: In a server or client configuration with RFC7250 Raw Public Keys (RPKs)\nenabled, and only the private key (with no associated certificate) configured locally,\na NULL pointer dereference may occur when the remote peer solicits raw public keys and\nalso sends the typically omitted \"signature_algorithms_cert\" TLS extension.\n\nImpact summary: The impact is limited to a possible Denial of Service as a result of\nan application abort, no data disclosure or remote command execution are possible.\n\nCWE: CWE-476: NULL Pointer Dereference\n\nDescription: While a passing comment in sample code in the documentation suggests\nthat key-only RPK configurations are supported, the best-practice RPK configuration\nis to always configure a corresponding certificate (possibly self-signed or\nsigned by any convenient CA).\n\nWhen the private key is configured along with a matching certificate, the\n\"signature_algorithms_cert\" extension is handled reliably even without the\nfix, and peer clients or servers that don\u0027t support raw public keys may be\nable to complete a TLS connection by pinning or verifying the corresponding\ncertificate or its public key.\n\nDeployments that prefer to configure just a private key with no certificate\nneed to upgrade to an updated release as noted below.\n\nFIPS impact: no\n\nNo FIPS modules are affected by this issue, as the SSL protocol implementation\nis outside the OpenSSL FIPS module boundary.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-14457",
"url": "https://www.suse.com/security/cve/CVE-2026-14457"
},
{
"category": "external",
"summary": "SUSE Bug 1274792 for CVE-2026-14457",
"url": "https://bugzilla.suse.com/1274792"
},
{
"category": "external",
"summary": "SUSE Bug 1275145 for CVE-2026-14457",
"url": "https://bugzilla.suse.com/1275145"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-14457"
},
{
"cve": "CVE-2026-18798",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-18798"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: QUIC server may double free QRX (QUIC record layer RX) object\nwhen channel creation fails for initial packet.\n\nImpact summary: Double free leads to heap corruption, which typically results in \ntermination of QUIC server process, leading to Denial of Service. There is so\nfar no evidence that this double free is exploitable for remote code execution,\nthus it is considered highly improbable.\n\nCWE: CWE-415: Double Free\n\nDescription: In order to validate initial packet, OpenSSL QUIC stack default\npacket handler (port_default_packet_handler()) creates a so-called QRX object.\nIf the initial packet validates successfully with QRX object, the default packet\nhandler proceeds to channel (connection object) creation. The QRX object used\nfor packet validation is passed to port_bind_channel(), so it becomes part of\nthe newly created connection. If port_bind_channel() fails, then it also frees\nthe QRX object. Once port_bind_channel() returns, the port_default_packet_handler()\ndetects the failure and proceeds to the error branch, where the same QRX object is\nfreed for the second time.\n\nThe failure in port_bind_channel() function can be induced with a relatively\nlow effort by a malformed (non RFC 9000 compliant) INITIAL packet. If the packet\ncarries DCID (destination connection ID) which is shorter than 8 bytes, then\nport_bind_channel() jumps to the error path after ossl_quic_lcidm_enrol_odcid()\ndetects that the DCID has invalid length.\n\nFIPS impact: no\nThe FIPS module is not affected, as the QUIC implementation is outside of\nthe OpenSSL FIPS module boundary.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-18798",
"url": "https://www.suse.com/security/cve/CVE-2026-18798"
},
{
"category": "external",
"summary": "SUSE Bug 1274777 for CVE-2026-18798",
"url": "https://bugzilla.suse.com/1274777"
},
{
"category": "external",
"summary": "SUSE Bug 1275134 for CVE-2026-18798",
"url": "https://bugzilla.suse.com/1275134"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-18798"
},
{
"cve": "CVE-2026-34181",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-34181"
}
],
"notes": [
{
"category": "general",
"text": "Issue Summary: The PKCS#12 file processing fails to perform sufficient input\nvalidation for files that use Password-Based Message Authentication Code 1\n(PBMAC1) integrity mechanism allowing a certificate and private key forgery.\n\nImpact Summary: An attacker impersonating a user can cause a service reading\nPKCS#12 files to accept forged certificates and private keys with a 1 in 256\nprobability.\n\nIf a service accepting PKCS#12 files is using passwords for authenticating\nthe received files, the attacker can create unencrypted PKCS#12 files that\nuse PBMAC1 authentication that specifies an HMAC key of only one byte, allowing\nthem to craft a file that will be accepted with a 1 in 256 probability.\nThat would then cause the service to accept a certificate and private key\ncontrolled by the attacker.\n\nThe FIPS modules are not affected by this issue, as the affected code is\noutside the OpenSSL FIPS module boundary.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-34181",
"url": "https://www.suse.com/security/cve/CVE-2026-34181"
},
{
"category": "external",
"summary": "SUSE Bug 1266343 for CVE-2026-34181",
"url": "https://bugzilla.suse.com/1266343"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 3.1,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-34181"
},
{
"cve": "CVE-2026-54874",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-54874"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: Receiving a DTLS record for a future epoch while a handshake\nis in progress causes OpenSSL to buffer far more memory than the record\nitself requires.\n\nImpact summary: A peer can use a small amount of network traffic to make an\nOpenSSL DTLS endpoint retain a disproportionately large amount of memory,\nwhich may lead to a Denial of Service.\n\nCWE: CWE-405: Asymmetric Resource Consumption (Amplification)\n\nDescription: While a DTLS handshake is in progress, a peer may legitimately\nhave already moved on to the next epoch (for example, having sent its\nChangeCipherSpec and Finished messages) before the local endpoint has\nprocessed the same transition, typically because of reordering on the\nunderlying UDP transport. OpenSSL buffers such early records so that they\ncan be processed once the local endpoint catches up.\n\nBuffering a record currently retains the entire read buffer it arrived in,\nwhich is sized to hold the largest possible DTLS record (around 16\nkilobytes), rather than just the bytes that make up the record itself. Up\nto 100 such records may be buffered per connection. As a result, a peer\nthat sends a stream of small forged records claiming to belong to the next\nepoch can cause an OpenSSL DTLS endpoint to retain around 1.7 megabytes of\nmemory, despite sending only a small fraction of that amount of data over\nthe network.\n\nAn attacker therefore gains a memory amplification factor of around 1200,\nand can multiply the effect across as many associations as it is able to\nopen, making this a remote memory exhaustion Denial of Service risk for\nDTLS servers. Since the memory retained per connection remains bounded,\nand any limit an application already places on the number of concurrent\nassociations also bounds the total exposure, this issue has been assessed\nas Low severity.\n\nFIPS impact: no\n\nNo FIPS modules are affected by this issue as the affected code is outside\nthe OpenSSL FIPS module boundary.\n\nOpenSSL 4.0, 3.6, 3.5, 3.4, 3.0, 1.1.1 and 1.0.2 are vulnerable to this\nissue.\n\nOpenSSL 4.0 users should upgrade to OpenSSL 4.0.2.\nOpenSSL 3.6 users should upgrade to OpenSSL 3.6.4.\nOpenSSL 3.5 users should upgrade to OpenSSL 3.5.8.\nOpenSSL 3.4 users should upgrade to OpenSSL 3.4.7.\nOpenSSL 3.0 users should upgrade to OpenSSL 3.0.22.\n\nPremium support customers only:\nOpenSSL 1.1.1 users should upgrade to OpenSSL 1.1.1zi\nOpenSSL 1.0.2 users should upgrade to OpenSSL 1.0.2zr\n\nThis issue was reported on 18 May 2026 by Amazon Web Services.\nThe fix has been developed by Matt Caswell.\n\n-- cut (non-publishing metadata for internal use) --\nReported by: Amazon Web Services\nFixed by: Matt Caswell",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-54874",
"url": "https://www.suse.com/security/cve/CVE-2026-54874"
},
{
"category": "external",
"summary": "SUSE Bug 1274795 for CVE-2026-54874",
"url": "https://bugzilla.suse.com/1274795"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.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 Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-54874"
},
{
"cve": "CVE-2026-63072",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-63072"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: OpenSSL CMS decryption sizes the key-unwrap output buffer based\non querying the unwrapped key size, but the AES-WRAP-PAD unwrap primitive\ncan write and cleanse more bytes than that query reports, causing an 8-byte\nout-of-bounds heap write.\n\nImpact summary: An attacker who supplies a crafted CMS message can trigger a\ndeterministic 8-byte out-of-bounds heap write when the victim decrypts it\nwith CMS_decrypt(), corrupting the heap and typically resulting in a Denial\nof Service.\n\nCWE: CWE-787: Out-of-bounds Write\n\nDescription: The key-wrap OID is potentially attacker-controlled on the wire.\nCMS unwrapping allows both id-aesNNN-wrap-pad and id-aesNNN-wrap ciphers.\nAn attacker can take a legitimate message and change a single OID byte to\nselect the padded variant while leaving the message otherwise valid. Since\nthe unwrap key is derived from the recipient\u0027s private operation (ECDH key\nagreement or ML-KEM decapsulation), the RFC 5649 integrity check cannot\npass, and the decryption fails with integrity failure.\n\nThe write is a fixed-size (8-byte), fixed-value (zero) heap overflow\nimmediately past the allocation, requires no special configuration, and is\nreachable from the public CMS_decrypt() function. The consequence is\na heap corruption leading to a Denial of Service. The fix in the CMS code\nsizes the unwrap output buffer for the worst case so a failed unwrap cannot\nwrite past the allocation.\n\nFIPS impact: no\n\nAs the CMS code lives outside the FIPS module boundary, no FIPS\nmodules are affected by this CVE.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-63072",
"url": "https://www.suse.com/security/cve/CVE-2026-63072"
},
{
"category": "external",
"summary": "SUSE Bug 1274788 for CVE-2026-63072",
"url": "https://bugzilla.suse.com/1274788"
},
{
"category": "external",
"summary": "SUSE Bug 1275133 for CVE-2026-63072",
"url": "https://bugzilla.suse.com/1275133"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-63072"
},
{
"cve": "CVE-2026-63073",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-63073"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: OpenSSL CMP response validation passed an unexpected response\nsender distinguished name directly as the format string to `ERR_raise_data()`.\n\nImpact summary: A malicious or intercepted CMP endpoint can crash a CMP client\nthat enforces an expected sender or uses a pinned server certificate whose\nsubject becomes the default expected sender.\n\nCWE: CWE-134 (Use of Externally-Controlled Format String)\n\nDescription: When validating a received CMP message, ossl_cmp_msg_check_update()\nconverts the peer-supplied sender distinguished name with X509_NAME_oneline()\nand passes it directly as the format argument to ERR_raise_data(). Percent\ncharacters survive the conversion, so a sender DN such as \"CN=%s%n\" reaches\nBIO_vsnprintf() as an attacker-controlled format string with no matching variadic\narguments. This path is only reached when the caller configures an expected\nsender or pins a server certificate, which is the normal configuration for a\nCMP client validating server responses.\n\nSince the attacker controls the format string but none of the variadic\narguments, such specifiers as %s and %n dereference or write through unrelated\nstack contents and crash the client. The reliable consequence is a denial of\nservice, when the response comes from a malicious or intercepted CMP endpoint.\nThere is no controlled memory write, arbitrary-address read, or reliable path\nto remote code execution.\n\nFIPS impact: no\n\nNo FIPS modules are affected by this issue, as the CMP protocol\nimplementation is outside the OpenSSL FIPS module boundary.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-63073",
"url": "https://www.suse.com/security/cve/CVE-2026-63073"
},
{
"category": "external",
"summary": "SUSE Bug 1274796 for CVE-2026-63073",
"url": "https://bugzilla.suse.com/1274796"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-63073"
},
{
"cve": "CVE-2026-63074",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-63074"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: The OpenSSL Certificate Management Protocol (CMP) caches\nadditional certificates (extraCerts) sent in a CMP message, but never expunges\nthem (for instance if they are invalid). If a server reuses an OSSL_CMP_CTX\nfrequently, this cache of extraCerts may grow unboundedly, and a malicious\nclient may flood a CMP server with requests driving this growth.\n\nImpact summary: Users utilizing a CMP server that reuses a single OSSL_CMP_CTX\nfor the lifetime of a server process may observe unbounded memory growth in the\nevent a malicious client repeatedly sends requests containing unique extra\ncertificates, which may lead to OOM conditions.\n\nCWE: CWE-770: Allocation of Resources Without Limits or Throttling\n\nDescription: If a remote user sends CMP messages to a server with a list of\nextraCerts and the message is rejected, the extraCerts from the message remains\nin the server contexts untrusted certificate stack. This exposes servers with\nlong lived ctx objects to Denial of Service attacks in which an attacker sends\nmessages intending to be rejected with a large list of additional certificates\nrepeatedly, forcing the server to store them indefinitely.\n \nThe issue was fixed by removing the added extra certs if the message is\nrejected, using the same method as when the context is configured to not do\ncaching at all.\n\nFIPS impact: no\nAs the CMP code lives outside the FIPS module boundary, no FIPS\nmodules are affected by this CVE.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-63074",
"url": "https://www.suse.com/security/cve/CVE-2026-63074"
},
{
"category": "external",
"summary": "SUSE Bug 1274797 for CVE-2026-63074",
"url": "https://bugzilla.suse.com/1274797"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.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 Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-63074"
},
{
"cve": "CVE-2026-63075",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-63075"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: When OpenSSL processes QUIC traffic from a peer that repeatedly\nsends ack-eliciting packets while not acknowledging ACK-only responses, the\nQUIC stack can retain ACK-only packet metadata for the lifetime of the\nconnection.\n\nImpact summary: A remote peer that can complete a QUIC handshake can\ncause connection-scoped memory growth which may lead to Denial of Service\nthrough memory exhaustion, especially with sustained traffic or many concurrent\nQUIC connections.\n\nCWE: CWE-770: Allocation of Resources Without Limits or Throttling\n\nDescription: When the OpenSSL QUIC stack sends an ACK-only packet,\nthere is no requirement by the QUIC protocol that the peer will acknowledge\nthat ACK-only packet (i.e. it is itself not ack-eliciting). However, the OpenSSL\nimplementation stores the metadata about the ACK frames regardless.\nIn and of itself that\u0027s ok, but if a malicious peer establishes a connection, and\nthen drives the connection such that ACK-only packets are forced from the \nOpenSSL implementation peer (i.e., by sending numerous PING frames),\nand then withholding any subsequent acks for ack-eliciting data, like\nlegitimate data, said malicious peer can force inappropriate memory growth\non the OpenSSL peer, potentially leading to a Denial of Service.\n\nThe fix is to ensure that we account for the transmission of the ACK-only\npacket in the packet histories high and low watermark without actually storing\nthe ACK-only packet metadata itself.\n\nFIPS impact: no\nThe OpenSSL FIPS module is not affected as the QUIC code is\noutside the FIPS module boundary.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-63075",
"url": "https://www.suse.com/security/cve/CVE-2026-63075"
},
{
"category": "external",
"summary": "SUSE Bug 1274798 for CVE-2026-63075",
"url": "https://bugzilla.suse.com/1274798"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.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 Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-63075"
},
{
"cve": "CVE-2026-63076",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-63076"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: OpenSSL CMP password based protection verification only\nchecks whether the protectionAlg parameter was not NULL and not its\nASN.1 type, before treating it as a PBMParameter. A crafted message can\ncontain a parameter of a different type, which is then dereferenced as an\ninvalid pointer.\n\nImpact summary: A remote, unauthenticated attacker can crash an application\nacting as a CMP server that accepts PBM-protected messages, or a CMP client\ntalking to a malicious or intercepted CMP server, resulting in a Denial of\nService.\n\nCWE: CWE-476: NULL Pointer Dereference\n\nDescription: When verifying the password-based MAC protection of a CMP\nmessage, OpenSSL library reads the protectionAlg algorithm parameter with\nX509_ALGOR_get0(), which returns both the parameter type and its value\npointer. The value is then cast to an ASN1_STRING and treated as the\nexpected PBMParameter after only checking that pointer is not NULL. The\nparameter type returned by X509_ALGOR_get0() was never consulted.\n\nThis happens during protection verification, before any MAC is computed, so\nno knowledge of the PBM shared secret is required; the only precondition is\nthat PBM verification is reachable. On the server side this is reached from\nOSSL_CMP_SRV_process_request() for any application that stands up a CMP\nserver accepting PBM-protected messages, and on the client side from CMP\nresponse validation against a malicious or on-path (MITM) server. The\nreliable consequence is a denial of service; there is no memory disclosure,\nno controlled memory write, and no path to code execution. CMP is a\nspecialized feature that an application must explicitly enable.\n\nFIPS impact: no\nAs the CMP code lives outside the FIPS module boundary, no FIPS modules\nare affected by this CVE.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-63076",
"url": "https://www.suse.com/security/cve/CVE-2026-63076"
},
{
"category": "external",
"summary": "SUSE Bug 1274790 for CVE-2026-63076",
"url": "https://bugzilla.suse.com/1274790"
},
{
"category": "external",
"summary": "SUSE Bug 1275143 for CVE-2026-63076",
"url": "https://bugzilla.suse.com/1275143"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-63076"
},
{
"cve": "CVE-2026-75803",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-75803"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: ChaCha20-Poly1305 and AES-OCB decryption with an empty\nciphertext can report success without verifying the supplied authentication\ntag when the operation is finalized by calling the EVP_Cipher() function.\n\nImpact summary: Applications calling EVP_Cipher() on an empty ciphertext and\nexpecting the call to check the AEAD tag may accept forged messages.\n\nCWE: CWE-354 (Improper Validation of Integrity Check Value)\n\nDescription: The EVP_Cipher() API call for AEAD ciphers behaves like a one\nshot encryption and decryption call. It also verifies the AEAD tag after the\ndecryption operation. However for AES-OCB and ChaCha20-Poly1305 ciphers\nit skipped the AEAD tag verification when an empty ciphertext was passed to\nthe function. The callers of this function might believe that a successful\nreturn indicates a valid AEAD tag for these ciphers, even when that has not\ntruly been validated in this case.\n\nFIPS impact: no\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this CVE\nas the affected algorithms are not FIPS approved and thus not implemented\nin the FIPS module.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-75803",
"url": "https://www.suse.com/security/cve/CVE-2026-75803"
},
{
"category": "external",
"summary": "SUSE Bug 1275837 for CVE-2026-75803",
"url": "https://bugzilla.suse.com/1275837"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.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:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-fips-provider-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:libopenssl3-x86-64-v3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.5.3-8.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.5.3-8.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-08-27T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-75803"
}
]
}
RHSA-2026:59635
Vulnerability from csaf_redhat - Published: 2026-08-25 21:50 - Updated: 2026-08-31 19:44A flaw was found in OpenSSL. In a server or client configuration with RFC7250 Raw Public Keys (RPKs) enabled, where only the private key (with no certificate) is configured, a NULL pointer dereference may occur when the remote peer solicits raw public keys and also sends the typically omitted "signature_algorithms_cert" TLS extension. This issue results in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A malformed INITIAL packet with an invalid DCID (destination connection ID) can cause the QUIC server to double free the QRX object. This issue leads to memory corruption, causing the termination of the QUIC server process and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. Receiving a DTLS (Datagram Transport Layer Security) record for a future epoch while a handshake is in progress causes OpenSSL to buffer an excessive amount of memory. This allows a peer to cause memory exhaustion, eventually resulting in a denial of service, using a small amount of network traffic.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A crafted CMS (Cryptographic Message Syntax) message can cause an 8-byte out-of-bounds heap write when it is decrypted with CMS_decrypt(). This issue occurs because the CMS decryption process incorrectly sizes the key-unwrap output buffer when using the AES-WRAP-PAD unwrap primitive. This can lead to memory corruption, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A malicious CMP (Certificate Management Protocol) endpoint can send an unexpected distinguished name (DN) directly as the format string argument to ERR_raise_data(), causing the application to dereference and write to unrelated stack contents. This can lead to a crash in the CMP client, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. The CMP (Certificate Management Protocol) implementation does not clear cached additional certificates when an invalid message is received, leading to excessive memory consumption. This allows a malicious client to repeatedly send requests containing unique extra certificates to cause memory exhaustion, eventually resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. The QUIC protocol implementation retains metadata for ACK-only packets for the lifetime of a connection, leading to excessive memory consumption. This allows a peer to repeatedly send ack-eliciting packets while not acknowledging ACK-only responses to cause memory exhaustion, eventually resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A crafted CMP (Certificate Management Protocol) message can cause an invalid pointer dereference due to a missing type check in the password-based protection verification. A remote, unauthenticated attacker can crash applications acting as a CMP server or client, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl3-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for Red Hat Hardened Images RPMs is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "This update includes the following RPMs:\n\nopenssl3:\n * openssl3-devel-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl3-devel-engine-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl3-libs-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl3-3.5.8-0.1.hum1.src (src)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:59635",
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "external",
"summary": "https://images.redhat.com/",
"url": "https://images.redhat.com/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63074",
"url": "https://access.redhat.com/security/cve/CVE-2026-63074"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63073",
"url": "https://access.redhat.com/security/cve/CVE-2026-63073"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-14457",
"url": "https://access.redhat.com/security/cve/CVE-2026-14457"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63076",
"url": "https://access.redhat.com/security/cve/CVE-2026-63076"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63075",
"url": "https://access.redhat.com/security/cve/CVE-2026-63075"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63072",
"url": "https://access.redhat.com/security/cve/CVE-2026-63072"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-54874",
"url": "https://access.redhat.com/security/cve/CVE-2026-54874"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-18798",
"url": "https://access.redhat.com/security/cve/CVE-2026-18798"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_59635.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update",
"tracking": {
"current_release_date": "2026-08-31T19:44:37+00:00",
"generator": {
"date": "2026-08-31T19:44:37+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.16"
}
},
"id": "RHSA-2026:59635",
"initial_release_date": "2026-08-25T21:50:11+00:00",
"revision_history": [
{
"date": "2026-08-25T21:50:11+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-08-26T12:37:55+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-08-31T19:44:37+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Hardened Images",
"product": {
"name": "Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:hummingbird:1"
}
}
}
],
"category": "product_family",
"name": "Red Hat Hardened Images"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl3-main@src",
"product": {
"name": "openssl3-main@src",
"product_id": "openssl3-main@src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl3@3.5.8-0.1.hum1?arch=src\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-source-rpms"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl3-main@aarch64",
"product": {
"name": "openssl3-main@aarch64",
"product_id": "openssl3-main@aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl3-devel@3.5.8-0.1.hum1?arch=aarch64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-aarch64-rpms"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl3-main@x86_64",
"product": {
"name": "openssl3-main@x86_64",
"product_id": "openssl3-main@x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl3-devel@3.5.8-0.1.hum1?arch=x86_64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-x86_64-rpms"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl3-main@aarch64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:openssl3-main@aarch64"
},
"product_reference": "openssl3-main@aarch64",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl3-main@src as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:openssl3-main@src"
},
"product_reference": "openssl3-main@src",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl3-main@x86_64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:openssl3-main@x86_64"
},
"product_reference": "openssl3-main@x86_64",
"relates_to_product_reference": "Red Hat Hardened Images"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-14457",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-08-17T19:33:23.332000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517562"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. In a server or client configuration with RFC7250 Raw Public Keys (RPKs) enabled, where only the private key (with no certificate) is configured, a NULL pointer dereference may occur when the remote peer solicits raw public keys and also sends the typically omitted \"signature_algorithms_cert\" TLS extension. This issue results in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: RPK server signature algorithm selection can dereference a missing certificate",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Server or client configurations with RPKs (RFC7250 Raw Public Keys) enabled, where only the private key (with no associated certificate) is configured, are vulnerable to this issue. However, key-only RPK configurations are not considered a best practice, limiting the exposure of this flaw. This issue can cause a NULL pointer dereference, resulting in a denial of service due to an application abort. There is no data disclosure or command execution. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-14457"
},
{
"category": "external",
"summary": "RHBZ#2517562",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517562"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-14457",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-14457"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-14457",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-14457"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: RPK server signature algorithm selection can dereference a missing certificate"
},
{
"cve": "CVE-2026-18798",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2026-08-17T19:14:03.992000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517559"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A malformed INITIAL packet with an invalid DCID (destination connection ID) can cause the QUIC server to double free the QRX object. This issue leads to memory corruption, causing the termination of the QUIC server process and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: QUIC server may trigger double free when processing INITIAL packet",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can cause memory corruption due to the double free of the QRX object. However, there is currently no evidence it allows remote code execution, limiting the impact of this vulnerability to a denial of service. For these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-18798"
},
{
"category": "external",
"summary": "RHBZ#2517559",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517559"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-18798",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-18798"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-18798",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-18798"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: QUIC server may trigger double free when processing INITIAL packet"
},
{
"cve": "CVE-2026-54874",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2026-08-17T19:33:30.960000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517564"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. Receiving a DTLS (Datagram Transport Layer Security) record for a future epoch while a handshake is in progress causes OpenSSL to buffer an excessive amount of memory. This allows a peer to cause memory exhaustion, eventually resulting in a denial of service, using a small amount of network traffic.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: excessive memory use buffering DTLS records for a future epoch",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to send a DTLS record for a future epoch while the handshake is in progress. This can cause excessive consumption of memory, eventually resulting in a denial of service. However, the retained memory is limited to 1.7MB per connection and the limit on simultaneous connections can prevent successful exploitation. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-54874"
},
{
"category": "external",
"summary": "RHBZ#2517564",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517564"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-54874",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-54874"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-54874",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-54874"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: excessive memory use buffering DTLS records for a future epoch"
},
{
"cve": "CVE-2026-63072",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-08-17T19:24:54.673000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517560"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A crafted CMS (Cryptographic Message Syntax) message can cause an 8-byte out-of-bounds heap write when it is decrypted with CMS_decrypt(). This issue occurs because the CMS decryption process incorrectly sizes the key-unwrap output buffer when using the AES-WRAP-PAD unwrap primitive. This can lead to memory corruption, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: heap buffer overflow in CMS key unwrapping",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to supply a crafted CMS message to be decrypted in an application by CMS_decrypt(). The out-of-bounds write is a fixed-size (8-byte), fixed-value (zero) heap overflow immediately past the memory allocation, causing memory corruption, but the impact is limited to a denial of service. For these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63072"
},
{
"category": "external",
"summary": "RHBZ#2517560",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517560"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63072",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63072"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63072",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63072"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: heap buffer overflow in CMS key unwrapping"
},
{
"cve": "CVE-2026-63073",
"cwe": {
"id": "CWE-134",
"name": "Use of Externally-Controlled Format String"
},
"discovery_date": "2026-08-17T19:42:56.692000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517565"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A malicious CMP (Certificate Management Protocol) endpoint can send an unexpected distinguished name (DN) directly as the format string argument to ERR_raise_data(), causing the application to dereference and write to unrelated stack contents. This can lead to a crash in the CMP client, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: untrusted sender DN used as format string in CMP response validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Applications acting as a CMP client connecting to a malicious or intercepted CMP server are vulnerable to this issue, limiting its exposure. Also, the CMP client needs to enforce an expected sender or use a pinned server certificate whose subject becomes the default expected sender. This flaw can cause the application to dereference and write to unrelated stack contents, leading to a crash in the CMP client and resulting in a denial of service. There is no controlled memory write, arbitrary-address read or path to code execution. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63073"
},
{
"category": "external",
"summary": "RHBZ#2517565",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517565"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63073",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63073"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63073",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63073"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: untrusted sender DN used as format string in CMP response validation"
},
{
"cve": "CVE-2026-63074",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-08-17T19:47:06.273000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517566"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. The CMP (Certificate Management Protocol) implementation does not clear cached additional certificates when an invalid message is received, leading to excessive memory consumption. This allows a malicious client to repeatedly send requests containing unique extra certificates to cause memory exhaustion, eventually resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: CMP indefinite cache growth of ExtraCerts",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to repeatedly send invalid messages containing additional certificates to a CMP server. However, this issue only affects CMP servers with long-lived context objects. This can grow the extra certificates cache and cause excessive memory consumption, eventually resulting in a denial of service. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63074"
},
{
"category": "external",
"summary": "RHBZ#2517566",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517566"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63074"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63074",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63074"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: CMP indefinite cache growth of ExtraCerts"
},
{
"cve": "CVE-2026-63075",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-08-17T19:50:01.587000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517570"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. The QUIC protocol implementation retains metadata for ACK-only packets for the lifetime of a connection, leading to excessive memory consumption. This allows a peer to repeatedly send ack-eliciting packets while not acknowledging ACK-only responses to cause memory exhaustion, eventually resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: QUIC ACK-only packet retention can cause memory exhaustion",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to complete a QUIC handshake and repeatedly send ack-eliciting packets while not acknowledging ACK-only responses. This causes the QUIC implementation to retain metadata for ACK-only responses for the lifetime of a connection, leading to excessive memory consumption, eventually resulting in a denial of service with no other security impact. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63075"
},
{
"category": "external",
"summary": "RHBZ#2517570",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517570"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63075",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63075"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63075",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63075"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T16:05:51.415000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: QUIC ACK-only packet retention can cause memory exhaustion"
},
{
"cve": "CVE-2026-63076",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-08-17T19:30:30.087000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517561"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A crafted CMP (Certificate Management Protocol) message can cause an invalid pointer dereference due to a missing type check in the password-based protection verification. A remote, unauthenticated attacker can crash applications acting as a CMP server or client, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: invalid pointer dereference in CMP server via crafted protectionAlg",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to supply a crafted CMP message to an application acting as a CMP server or client. Server applications need to be configured to accept PBM-protected messages, and client applications need to communicate with a malicious or intercepted CMP server. The missing type check causes an invalid pointer dereference, resulting in a denial of service. There is no memory disclosure, no controlled memory write and no path to code execution. For these reasons, this vulnerability has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63076"
},
{
"category": "external",
"summary": "RHBZ#2517561",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517561"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63076",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63076"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63076",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63076"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:50:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59635"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl3-main@aarch64",
"Red Hat Hardened Images:openssl3-main@src",
"Red Hat Hardened Images:openssl3-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: invalid pointer dereference in CMP server via crafted protectionAlg"
}
]
}
RHSA-2026:59641
Vulnerability from csaf_redhat - Published: 2026-08-25 21:57 - Updated: 2026-08-31 19:44A flaw was found in OpenSSL. In a server or client configuration with RFC7250 Raw Public Keys (RPKs) enabled, where only the private key (with no certificate) is configured, a NULL pointer dereference may occur when the remote peer solicits raw public keys and also sends the typically omitted "signature_algorithms_cert" TLS extension. This issue results in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A malformed INITIAL packet with an invalid DCID (destination connection ID) can cause the QUIC server to double free the QRX object. This issue leads to memory corruption, causing the termination of the QUIC server process and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. Receiving a DTLS (Datagram Transport Layer Security) record for a future epoch while a handshake is in progress causes OpenSSL to buffer an excessive amount of memory. This allows a peer to cause memory exhaustion, eventually resulting in a denial of service, using a small amount of network traffic.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A crafted CMS (Cryptographic Message Syntax) message can cause an 8-byte out-of-bounds heap write when it is decrypted with CMS_decrypt(). This issue occurs because the CMS decryption process incorrectly sizes the key-unwrap output buffer when using the AES-WRAP-PAD unwrap primitive. This can lead to memory corruption, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A malicious CMP (Certificate Management Protocol) endpoint can send an unexpected distinguished name (DN) directly as the format string argument to ERR_raise_data(), causing the application to dereference and write to unrelated stack contents. This can lead to a crash in the CMP client, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. The CMP (Certificate Management Protocol) implementation does not clear cached additional certificates when an invalid message is received, leading to excessive memory consumption. This allows a malicious client to repeatedly send requests containing unique extra certificates to cause memory exhaustion, eventually resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. The QUIC protocol implementation retains metadata for ACK-only packets for the lifetime of a connection, leading to excessive memory consumption. This allows a peer to repeatedly send ack-eliciting packets while not acknowledging ACK-only responses to cause memory exhaustion, eventually resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A crafted CMP (Certificate Management Protocol) message can cause an invalid pointer dereference due to a missing type check in the password-based protection verification. A remote, unauthenticated attacker can crash applications acting as a CMP server or client, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:openssl-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:openssl-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for Red Hat Hardened Images RPMs is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "This update includes the following RPMs:\n\nopenssl:\n * openssl-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-config-fips-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-devel-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-devel-engine-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-fips-provider-upstream-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-libs-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-perl-3.5.8-0.1.hum1 (aarch64, x86_64)\n * openssl-3.5.8-0.1.hum1.src (src)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:59641",
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "external",
"summary": "https://images.redhat.com/",
"url": "https://images.redhat.com/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63074",
"url": "https://access.redhat.com/security/cve/CVE-2026-63074"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63073",
"url": "https://access.redhat.com/security/cve/CVE-2026-63073"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-14457",
"url": "https://access.redhat.com/security/cve/CVE-2026-14457"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63076",
"url": "https://access.redhat.com/security/cve/CVE-2026-63076"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63075",
"url": "https://access.redhat.com/security/cve/CVE-2026-63075"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-63072",
"url": "https://access.redhat.com/security/cve/CVE-2026-63072"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-54874",
"url": "https://access.redhat.com/security/cve/CVE-2026-54874"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-18798",
"url": "https://access.redhat.com/security/cve/CVE-2026-18798"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_59641.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update",
"tracking": {
"current_release_date": "2026-08-31T19:44:38+00:00",
"generator": {
"date": "2026-08-31T19:44:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.16"
}
},
"id": "RHSA-2026:59641",
"initial_release_date": "2026-08-25T21:57:30+00:00",
"revision_history": [
{
"date": "2026-08-25T21:57:30+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-08-26T12:37:51+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-08-31T19:44:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Hardened Images",
"product": {
"name": "Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:hummingbird:1"
}
}
}
],
"category": "product_family",
"name": "Red Hat Hardened Images"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-main@aarch64",
"product": {
"name": "openssl-main@aarch64",
"product_id": "openssl-main@aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.8-0.1.hum1?arch=aarch64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-aarch64-rpms"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-main@src",
"product": {
"name": "openssl-main@src",
"product_id": "openssl-main@src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.8-0.1.hum1?arch=src\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-source-rpms"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-main@x86_64",
"product": {
"name": "openssl-main@x86_64",
"product_id": "openssl-main@x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.8-0.1.hum1?arch=x86_64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-x86_64-rpms"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-main@aarch64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:openssl-main@aarch64"
},
"product_reference": "openssl-main@aarch64",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-main@src as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:openssl-main@src"
},
"product_reference": "openssl-main@src",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-main@x86_64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:openssl-main@x86_64"
},
"product_reference": "openssl-main@x86_64",
"relates_to_product_reference": "Red Hat Hardened Images"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-14457",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-08-17T19:33:23.332000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517562"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. In a server or client configuration with RFC7250 Raw Public Keys (RPKs) enabled, where only the private key (with no certificate) is configured, a NULL pointer dereference may occur when the remote peer solicits raw public keys and also sends the typically omitted \"signature_algorithms_cert\" TLS extension. This issue results in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: RPK server signature algorithm selection can dereference a missing certificate",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Server or client configurations with RPKs (RFC7250 Raw Public Keys) enabled, where only the private key (with no associated certificate) is configured, are vulnerable to this issue. However, key-only RPK configurations are not considered a best practice, limiting the exposure of this flaw. This issue can cause a NULL pointer dereference, resulting in a denial of service due to an application abort. There is no data disclosure or command execution. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-14457"
},
{
"category": "external",
"summary": "RHBZ#2517562",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517562"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-14457",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-14457"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-14457",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-14457"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: RPK server signature algorithm selection can dereference a missing certificate"
},
{
"cve": "CVE-2026-18798",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2026-08-17T19:14:03.992000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517559"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A malformed INITIAL packet with an invalid DCID (destination connection ID) can cause the QUIC server to double free the QRX object. This issue leads to memory corruption, causing the termination of the QUIC server process and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: QUIC server may trigger double free when processing INITIAL packet",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can cause memory corruption due to the double free of the QRX object. However, there is currently no evidence it allows remote code execution, limiting the impact of this vulnerability to a denial of service. For these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-18798"
},
{
"category": "external",
"summary": "RHBZ#2517559",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517559"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-18798",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-18798"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-18798",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-18798"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: QUIC server may trigger double free when processing INITIAL packet"
},
{
"cve": "CVE-2026-54874",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2026-08-17T19:33:30.960000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517564"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. Receiving a DTLS (Datagram Transport Layer Security) record for a future epoch while a handshake is in progress causes OpenSSL to buffer an excessive amount of memory. This allows a peer to cause memory exhaustion, eventually resulting in a denial of service, using a small amount of network traffic.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: excessive memory use buffering DTLS records for a future epoch",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to send a DTLS record for a future epoch while the handshake is in progress. This can cause excessive consumption of memory, eventually resulting in a denial of service. However, the retained memory is limited to 1.7MB per connection and the limit on simultaneous connections can prevent successful exploitation. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-54874"
},
{
"category": "external",
"summary": "RHBZ#2517564",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517564"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-54874",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-54874"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-54874",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-54874"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: excessive memory use buffering DTLS records for a future epoch"
},
{
"cve": "CVE-2026-63072",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-08-17T19:24:54.673000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517560"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A crafted CMS (Cryptographic Message Syntax) message can cause an 8-byte out-of-bounds heap write when it is decrypted with CMS_decrypt(). This issue occurs because the CMS decryption process incorrectly sizes the key-unwrap output buffer when using the AES-WRAP-PAD unwrap primitive. This can lead to memory corruption, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: heap buffer overflow in CMS key unwrapping",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to supply a crafted CMS message to be decrypted in an application by CMS_decrypt(). The out-of-bounds write is a fixed-size (8-byte), fixed-value (zero) heap overflow immediately past the memory allocation, causing memory corruption, but the impact is limited to a denial of service. For these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63072"
},
{
"category": "external",
"summary": "RHBZ#2517560",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517560"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63072",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63072"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63072",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63072"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: heap buffer overflow in CMS key unwrapping"
},
{
"cve": "CVE-2026-63073",
"cwe": {
"id": "CWE-134",
"name": "Use of Externally-Controlled Format String"
},
"discovery_date": "2026-08-17T19:42:56.692000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517565"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A malicious CMP (Certificate Management Protocol) endpoint can send an unexpected distinguished name (DN) directly as the format string argument to ERR_raise_data(), causing the application to dereference and write to unrelated stack contents. This can lead to a crash in the CMP client, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: untrusted sender DN used as format string in CMP response validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Applications acting as a CMP client connecting to a malicious or intercepted CMP server are vulnerable to this issue, limiting its exposure. Also, the CMP client needs to enforce an expected sender or use a pinned server certificate whose subject becomes the default expected sender. This flaw can cause the application to dereference and write to unrelated stack contents, leading to a crash in the CMP client and resulting in a denial of service. There is no controlled memory write, arbitrary-address read or path to code execution. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63073"
},
{
"category": "external",
"summary": "RHBZ#2517565",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517565"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63073",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63073"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63073",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63073"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: untrusted sender DN used as format string in CMP response validation"
},
{
"cve": "CVE-2026-63074",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-08-17T19:47:06.273000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517566"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. The CMP (Certificate Management Protocol) implementation does not clear cached additional certificates when an invalid message is received, leading to excessive memory consumption. This allows a malicious client to repeatedly send requests containing unique extra certificates to cause memory exhaustion, eventually resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: CMP indefinite cache growth of ExtraCerts",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to repeatedly send invalid messages containing additional certificates to a CMP server. However, this issue only affects CMP servers with long-lived context objects. This can grow the extra certificates cache and cause excessive memory consumption, eventually resulting in a denial of service. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63074"
},
{
"category": "external",
"summary": "RHBZ#2517566",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517566"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63074"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63074",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63074"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: CMP indefinite cache growth of ExtraCerts"
},
{
"cve": "CVE-2026-63075",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-08-17T19:50:01.587000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517570"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. The QUIC protocol implementation retains metadata for ACK-only packets for the lifetime of a connection, leading to excessive memory consumption. This allows a peer to repeatedly send ack-eliciting packets while not acknowledging ACK-only responses to cause memory exhaustion, eventually resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: QUIC ACK-only packet retention can cause memory exhaustion",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to complete a QUIC handshake and repeatedly send ack-eliciting packets while not acknowledging ACK-only responses. This causes the QUIC implementation to retain metadata for ACK-only responses for the lifetime of a connection, leading to excessive memory consumption, eventually resulting in a denial of service with no other security impact. For these reasons, this vulnerability has been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63075"
},
{
"category": "external",
"summary": "RHBZ#2517570",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517570"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63075",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63075"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63075",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63075"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T16:05:51.415000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: QUIC ACK-only packet retention can cause memory exhaustion"
},
{
"cve": "CVE-2026-63076",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-08-17T19:30:30.087000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2517561"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A crafted CMP (Certificate Management Protocol) message can cause an invalid pointer dereference due to a missing type check in the password-based protection verification. A remote, unauthenticated attacker can crash applications acting as a CMP server or client, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: invalid pointer dereference in CMP server via crafted protectionAlg",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to supply a crafted CMP message to an application acting as a CMP server or client. Server applications need to be configured to accept PBM-protected messages, and client applications need to communicate with a malicious or intercepted CMP server. The missing type check causes an invalid pointer dereference, resulting in a denial of service. There is no memory disclosure, no controlled memory write and no path to code execution. For these reasons, this vulnerability has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-63076"
},
{
"category": "external",
"summary": "RHBZ#2517561",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2517561"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-63076",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63076"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-63076",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-63076"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260825.txt",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
}
],
"release_date": "2026-08-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-25T21:57:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:59641"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:openssl-main@aarch64",
"Red Hat Hardened Images:openssl-main@src",
"Red Hat Hardened Images:openssl-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: invalid pointer dereference in CMP server via crafted protectionAlg"
}
]
}
ubuntu-cve-2026-63076
Vulnerability from osv_ubuntu
Invalid Pointer Dereference in CMP Server via Crafted protectionAlg
{
"affected": [
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "nodejs",
"binary_version": "4.2.6~dfsg-1ubuntu4.2+esm3"
},
{
"binary_name": "nodejs-legacy",
"binary_version": "4.2.6~dfsg-1ubuntu4.2+esm3"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:16.04:LTS",
"name": "nodejs",
"purl": "pkg:deb/ubuntu/nodejs@4.2.6~dfsg-1ubuntu4.2+esm3?arch=source\u0026distro=esm-apps/xenial"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.10.25~dfsg2-2ubuntu1",
"4.2.2~dfsg-1",
"4.2.3~dfsg-1",
"4.2.4~dfsg-1ubuntu1",
"4.2.4~dfsg-2",
"4.2.6~dfsg-1ubuntu1",
"4.2.6~dfsg-1ubuntu4",
"4.2.6~dfsg-1ubuntu4.1",
"4.2.6~dfsg-1ubuntu4.2",
"4.2.6~dfsg-1ubuntu4.2+esm1",
"4.2.6~dfsg-1ubuntu4.2+esm2",
"4.2.6~dfsg-1ubuntu4.2+esm3"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "nodejs",
"binary_version": "8.10.0~dfsg-2ubuntu0.4+esm6"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:18.04:LTS",
"name": "nodejs",
"purl": "pkg:deb/ubuntu/nodejs@8.10.0~dfsg-2ubuntu0.4+esm6?arch=source\u0026distro=esm-apps/bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.4~dfsg-1ubuntu1",
"6.11.4~dfsg-1ubuntu2",
"6.12.0~dfsg-1ubuntu1",
"6.12.0~dfsg-2ubuntu1",
"6.12.0~dfsg-2ubuntu2",
"8.10.0~dfsg-2",
"8.10.0~dfsg-2ubuntu0.2",
"8.10.0~dfsg-2ubuntu0.3",
"8.10.0~dfsg-2ubuntu0.4",
"8.10.0~dfsg-2ubuntu0.4+esm1",
"8.10.0~dfsg-2ubuntu0.4+esm2",
"8.10.0~dfsg-2ubuntu0.4+esm3",
"8.10.0~dfsg-2ubuntu0.4+esm4",
"8.10.0~dfsg-2ubuntu0.4+esm5",
"8.10.0~dfsg-2ubuntu0.4+esm6"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "libssl3",
"binary_version": "3.0.2-0ubuntu1.29"
},
{
"binary_name": "openssl",
"binary_version": "3.0.2-0ubuntu1.29"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "openssl",
"purl": "pkg:deb/ubuntu/openssl@3.0.2-0ubuntu1.29?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "3.0.2-0ubuntu1.29"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"1.1.1l-1ubuntu1",
"3.0.0-1ubuntu1",
"3.0.1-0ubuntu1",
"3.0.2-0ubuntu1",
"3.0.2-0ubuntu1.1",
"3.0.2-0ubuntu1.2",
"3.0.2-0ubuntu1.4",
"3.0.2-0ubuntu1.5",
"3.0.2-0ubuntu1.6",
"3.0.2-0ubuntu1.7",
"3.0.2-0ubuntu1.8",
"3.0.2-0ubuntu1.9",
"3.0.2-0ubuntu1.10",
"3.0.2-0ubuntu1.12",
"3.0.2-0ubuntu1.13",
"3.0.2-0ubuntu1.14",
"3.0.2-0ubuntu1.15",
"3.0.2-0ubuntu1.16",
"3.0.2-0ubuntu1.17",
"3.0.2-0ubuntu1.18",
"3.0.2-0ubuntu1.19",
"3.0.2-0ubuntu1.20",
"3.0.2-0ubuntu1.21",
"3.0.2-0ubuntu1.23",
"3.0.2-0ubuntu1.25",
"3.0.2-0ubuntu1.26"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libssl3",
"binary_version": "3.0.2-0ubuntu1.12+Fips1"
},
{
"binary_name": "openssl",
"binary_version": "3.0.2-0ubuntu1.12+Fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS",
"name": "openssl",
"purl": "pkg:deb/ubuntu/openssl@3.0.2-0ubuntu1.12+Fips1?arch=source\u0026distro=fips-preview/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.0.2-0ubuntu1.10+Fips1",
"3.0.2-0ubuntu1.12+Fips1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "openssl-fips-module-3",
"binary_version": "3.0.5-0ubuntu0.1+Fips2.1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS",
"name": "openssl-fips",
"purl": "pkg:deb/ubuntu/openssl-fips@3.0.5-0ubuntu0.1+Fips2.1?arch=source\u0026distro=fips-preview/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.0.5-0ubuntu0.1+Fips2.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "libssl3",
"binary_version": "3.0.2-0ubuntu1.26+Fips1"
},
{
"binary_name": "openssl",
"binary_version": "3.0.2-0ubuntu1.26+Fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS",
"name": "openssl",
"purl": "pkg:deb/ubuntu/openssl@3.0.2-0ubuntu1.26+Fips1?arch=source\u0026distro=fips-updates/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.0.2-0ubuntu1.10+Fips1",
"3.0.2-0ubuntu1.12+Fips1",
"3.0.2-0ubuntu1.14+Fips1",
"3.0.2-0ubuntu1.15+Fips1",
"3.0.2-0ubuntu1.16+Fips1",
"3.0.2-0ubuntu1.17+Fips1",
"3.0.2-0ubuntu1.18+Fips1",
"3.0.2-0ubuntu1.19+Fips1",
"3.0.2-0ubuntu1.20+Fips1",
"3.0.2-0ubuntu1.21+Fips1",
"3.0.2-0ubuntu1.23+Fips1",
"3.0.2-0ubuntu1.25+Fips1",
"3.0.2-0ubuntu1.26+Fips1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "openssl-fips-module-3",
"binary_version": "3.0.5-0ubuntu0.2+Fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS",
"name": "openssl-fips",
"purl": "pkg:deb/ubuntu/openssl-fips@3.0.5-0ubuntu0.2+Fips1?arch=source\u0026distro=fips-updates/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.0.5-0ubuntu0.1+Fips2.1",
"3.0.5-0ubuntu0.2+Fips1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "efi-shell-aa64",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "efi-shell-arm",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "efi-shell-ia32",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "efi-shell-riscv64",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "efi-shell-x64",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "ovmf",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "ovmf-ia32",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "ovmf-legacy",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "qemu-efi-aarch64",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "qemu-efi-arm",
"binary_version": "2024.02-2ubuntu0.9"
},
{
"binary_name": "qemu-efi-riscv64",
"binary_version": "2024.02-2ubuntu0.9"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "edk2",
"purl": "pkg:deb/ubuntu/edk2@2024.02-2ubuntu0.9?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"2023.05-2",
"2023.11-2",
"2023.11-3",
"2023.11-4",
"2023.11-5",
"2023.11-6",
"2023.11-8",
"2024.02-1",
"2024.02-2",
"2024.02-2ubuntu0.1",
"2024.02-2ubuntu0.3",
"2024.02-2ubuntu0.4",
"2024.02-2ubuntu0.5",
"2024.02-2ubuntu0.6",
"2024.02-2ubuntu0.7",
"2024.02-2ubuntu0.8",
"2024.02-2ubuntu0.9"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "libssl3t64",
"binary_version": "3.0.13-0ubuntu3.15"
},
{
"binary_name": "openssl",
"binary_version": "3.0.13-0ubuntu3.15"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "openssl",
"purl": "pkg:deb/ubuntu/openssl@3.0.13-0ubuntu3.15?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "3.0.13-0ubuntu3.15"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.0.10-1ubuntu2",
"3.0.10-1ubuntu2.1",
"3.0.10-1ubuntu3",
"3.0.10-1ubuntu4",
"3.0.13-0ubuntu2",
"3.0.13-0ubuntu3",
"3.0.13-0ubuntu3.1",
"3.0.13-0ubuntu3.2",
"3.0.13-0ubuntu3.3",
"3.0.13-0ubuntu3.4",
"3.0.13-0ubuntu3.5",
"3.0.13-0ubuntu3.6",
"3.0.13-0ubuntu3.7",
"3.0.13-0ubuntu3.9",
"3.0.13-0ubuntu3.11",
"3.0.13-0ubuntu3.12"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "openssl-fips-module-3",
"binary_version": "3.0.13-0ubuntu3.15+Fips1"
}
]
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "openssl-fips",
"purl": "pkg:deb/ubuntu/openssl-fips@3.0.13-0ubuntu3.15+Fips1?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "3.0.13-0ubuntu3.15+Fips1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.0.13-0ubuntu3+Fips1",
"3.0.13-0ubuntu3.6+Fips1",
"3.0.13-0ubuntu3.12+Fips1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "efi-shell-aa64",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "efi-shell-loongarch64",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "efi-shell-riscv64",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "efi-shell-x64",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "ovmf",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "ovmf-amdsev",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "ovmf-generic",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "ovmf-inteltdx",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "ovmf-legacy",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "qemu-efi-aarch64",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "qemu-efi-loongarch64",
"binary_version": "2025.11-3ubuntu7"
},
{
"binary_name": "qemu-efi-riscv64",
"binary_version": "2025.11-3ubuntu7"
}
]
},
"package": {
"ecosystem": "Ubuntu:26.04:LTS",
"name": "edk2",
"purl": "pkg:deb/ubuntu/edk2@2025.11-3ubuntu7?arch=source\u0026distro=resolute"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"2025.02-8ubuntu3",
"2025.11-3ubuntu6",
"2025.11-3ubuntu7"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "efi-shell-aa64-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "efi-shell-loongarch64-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "efi-shell-riscv64-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "efi-shell-x64-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "ovmf-amdsev-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "ovmf-generic-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "ovmf-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "ovmf-inteltdx-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "ovmf-legacy-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "qemu-efi-aarch64-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "qemu-efi-loongarch64-hwe",
"binary_version": "2025.11-3ubuntu8"
},
{
"binary_name": "qemu-efi-riscv64-hwe",
"binary_version": "2025.11-3ubuntu8"
}
]
},
"package": {
"ecosystem": "Ubuntu:26.04:LTS",
"name": "edk2-hwe",
"purl": "pkg:deb/ubuntu/edk2-hwe@2025.11-3ubuntu8?arch=source\u0026distro=resolute"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"2025.11-3ubuntu6",
"2025.11-3ubuntu8"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "libssl3t64",
"binary_version": "3.5.5-1ubuntu3.4"
},
{
"binary_name": "openssl",
"binary_version": "3.5.5-1ubuntu3.4"
},
{
"binary_name": "openssl-provider-legacy",
"binary_version": "3.5.5-1ubuntu3.4"
}
]
},
"package": {
"ecosystem": "Ubuntu:26.04:LTS",
"name": "openssl",
"purl": "pkg:deb/ubuntu/openssl@3.5.5-1ubuntu3.4?arch=source\u0026distro=resolute"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "3.5.5-1ubuntu3.4"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"3.5.3-1ubuntu2",
"3.5.5-1ubuntu1",
"3.5.5-1ubuntu3",
"3.5.5-1ubuntu3.2",
"3.5.5-1ubuntu3.3"
]
}
],
"aliases": [],
"details": "Invalid Pointer Dereference in CMP Server via Crafted protectionAlg",
"id": "UBUNTU-CVE-2026-63076",
"modified": "2026-08-31T14:24:10Z",
"published": "2026-08-25T00:00:00Z",
"references": [
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2026-63076"
},
{
"type": "REPORT",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-63076"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8678-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8678-2"
}
],
"related": [
"USN-8678-1",
"USN-8678-2"
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
},
{
"score": "medium",
"type": "Ubuntu"
}
],
"upstream": [
"CVE-2026-63076"
]
}
WID-SEC-W-2026-3005
Vulnerability from csaf_certbund - Published: 2026-08-25 22:00 - Updated: 2026-08-31 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source OpenSSL <3.4.7
Open Source / OpenSSL
|
<3.4.7 | ||
|
Open Source OpenSSL <3.5.8
Open Source / OpenSSL
|
<3.5.8 | ||
|
Open Source OpenSSL <1.1.1zi
Open Source / OpenSSL
|
<1.1.1zi | ||
|
Open Source OpenSSL <3.0.22
Open Source / OpenSSL
|
<3.0.22 | ||
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
Open Source OpenSSL <1.0.2zr
Open Source / OpenSSL
|
<1.0.2zr | ||
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Open Source OpenSSL <3.6.4
Open Source / OpenSSL
|
<3.6.4 | ||
|
Open Source OpenSSL <4.0.2
Open Source / OpenSSL
|
<4.0.2 |
{
"document": {
"aggregate_severity": {
"text": "mittel"
},
"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": "OpenSSL ist eine im Quelltext frei verf\u00fcgbare Bibliothek, die Secure Sockets Layer (SSL) und Transport Layer Security (TLS) implementiert.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen in OpenSSL ausnutzen, um Sicherheitsvorkehrungen zu umgehen, Daten zu manipulieren oder offenzulegen oder einen Denial-of-Service-Zustand herbeizuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Sonstiges\n- UNIX\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-2026-3005 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-3005.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-3005 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-3005"
},
{
"category": "external",
"summary": "OpenSSL Security Advisory vom 2026-08-25",
"url": "https://openssl-library.org/news/secadv/20260825.txt"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6465 vom 2026-08-25",
"url": "https://security-tracker.debian.org/tracker/DSA-6465-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8678-1 vom 2026-08-26",
"url": "https://ubuntu.com/security/notices/USN-8678-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8678-2 vom 2026-08-26",
"url": "https://ubuntu.com/security/notices/USN-8678-2"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:11623-1 vom 2026-08-30",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/6KJZ3RUXQIROD5PMRW3P3D4TPBY66QYK/"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8678-3 vom 2026-08-31",
"url": "https://ubuntu.com/security/notices/USN-8678-3"
}
],
"source_lang": "en-US",
"title": "OpenSSL: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-08-31T22:00:00.000+00:00",
"generator": {
"date": "2026-09-01T08:07:41.422+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-3005",
"initial_release_date": "2026-08-25T22:00:00.000+00:00",
"revision_history": [
{
"date": "2026-08-25T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-08-26T22:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-08-30T22:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2026-08-31T22:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Ubuntu aufgenommen"
}
],
"status": "final",
"version": "4"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Debian Linux",
"product": {
"name": "Debian Linux",
"product_id": "2951",
"product_identification_helper": {
"cpe": "cpe:/o:debian:debian_linux:-"
}
}
}
],
"category": "vendor",
"name": "Debian"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c4.0.2",
"product": {
"name": "Open Source OpenSSL \u003c4.0.2",
"product_id": "T058643"
}
},
{
"category": "product_version",
"name": "4.0.2",
"product": {
"name": "Open Source OpenSSL 4.0.2",
"product_id": "T058643-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:4.0.2"
}
}
},
{
"category": "product_version_range",
"name": "\u003c3.6.4",
"product": {
"name": "Open Source OpenSSL \u003c3.6.4",
"product_id": "T058644"
}
},
{
"category": "product_version",
"name": "3.6.4",
"product": {
"name": "Open Source OpenSSL 3.6.4",
"product_id": "T058644-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:3.6.4"
}
}
},
{
"category": "product_version_range",
"name": "\u003c3.5.8",
"product": {
"name": "Open Source OpenSSL \u003c3.5.8",
"product_id": "T058645"
}
},
{
"category": "product_version",
"name": "3.5.8",
"product": {
"name": "Open Source OpenSSL 3.5.8",
"product_id": "T058645-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:3.5.8"
}
}
},
{
"category": "product_version_range",
"name": "\u003c3.4.7",
"product": {
"name": "Open Source OpenSSL \u003c3.4.7",
"product_id": "T058646"
}
},
{
"category": "product_version",
"name": "3.4.7",
"product": {
"name": "Open Source OpenSSL 3.4.7",
"product_id": "T058646-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:3.4.7"
}
}
},
{
"category": "product_version_range",
"name": "\u003c3.0.22",
"product": {
"name": "Open Source OpenSSL \u003c3.0.22",
"product_id": "T058647"
}
},
{
"category": "product_version",
"name": "3.0.22",
"product": {
"name": "Open Source OpenSSL 3.0.22",
"product_id": "T058647-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:3.0.22"
}
}
},
{
"category": "product_version_range",
"name": "\u003c1.1.1zi",
"product": {
"name": "Open Source OpenSSL \u003c1.1.1zi",
"product_id": "T058648"
}
},
{
"category": "product_version",
"name": "1.1.1zi",
"product": {
"name": "Open Source OpenSSL 1.1.1zi",
"product_id": "T058648-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:1.1.1zi"
}
}
},
{
"category": "product_version_range",
"name": "\u003c1.0.2zr",
"product": {
"name": "Open Source OpenSSL \u003c1.0.2zr",
"product_id": "T058649"
}
},
{
"category": "product_version",
"name": "1.0.2zr",
"product": {
"name": "Open Source OpenSSL 1.0.2zr",
"product_id": "T058649-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:1.0.2zr"
}
}
}
],
"category": "product_name",
"name": "OpenSSL"
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T055946",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T055947",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-14457",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-14457"
},
{
"cve": "CVE-2026-18798",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-18798"
},
{
"cve": "CVE-2026-54874",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-54874"
},
{
"cve": "CVE-2026-63072",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-63072"
},
{
"cve": "CVE-2026-63073",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-63073"
},
{
"cve": "CVE-2026-63074",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-63074"
},
{
"cve": "CVE-2026-63075",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-63075"
},
{
"cve": "CVE-2026-63076",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-63076"
},
{
"cve": "CVE-2026-75803",
"product_status": {
"known_affected": [
"T058646",
"T058645",
"T058648",
"T058647",
"2951",
"T058649",
"T055947",
"T055946",
"T058644",
"T058643"
]
},
"release_date": "2026-08-25T22:00:00.000+00:00",
"title": "CVE-2026-75803"
}
]
}
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.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.