Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2025-69419 (GCVE-0-2025-69419)
Vulnerability from cvelistv5 – Published: 2026-01-27 16:01 – Updated: 2026-05-12 12:08- CWE-787 - Out-of-bounds Write
| Vendor | Product | Version | |
|---|---|---|---|
| OpenSSL | OpenSSL |
Affected:
3.6.0 , < 3.6.1
(semver)
Affected: 3.5.0 , < 3.5.5 (semver) Affected: 3.4.0 , < 3.4.4 (semver) Affected: 3.3.0 , < 3.3.6 (semver) Affected: 3.0.0 , < 3.0.19 (semver) Affected: 1.1.1 , < 1.1.1ze (custom) |
|
| Siemens | SIMATIC S7-1500 TM MFP - GNU/Linux subsystem |
Affected:
0 , < *
(custom)
|
{
"containers": {
"adp": [
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2025-69419",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "total"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-01-29T15:09:04.605559Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-01-29T15:09:39.154Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
},
{
"affected": [
{
"defaultStatus": "unknown",
"product": "SIMATIC S7-1500 TM MFP - GNU/Linux subsystem",
"vendor": "Siemens",
"versions": [
{
"lessThan": "*",
"status": "affected",
"version": "0",
"versionType": "custom"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-05-12T12:08:41.952Z",
"orgId": "0b142b55-0307-4c5a-b3c9-f314f3fb7c5e",
"shortName": "siemens-SADP"
},
"references": [
{
"url": "https://cert-portal.siemens.com/productcert/html/ssa-265688.html"
}
],
"x_adpType": "supplier"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "OpenSSL",
"vendor": "OpenSSL",
"versions": [
{
"lessThan": "3.6.1",
"status": "affected",
"version": "3.6.0",
"versionType": "semver"
},
{
"lessThan": "3.5.5",
"status": "affected",
"version": "3.5.0",
"versionType": "semver"
},
{
"lessThan": "3.4.4",
"status": "affected",
"version": "3.4.0",
"versionType": "semver"
},
{
"lessThan": "3.3.6",
"status": "affected",
"version": "3.3.0",
"versionType": "semver"
},
{
"lessThan": "3.0.19",
"status": "affected",
"version": "3.0.0",
"versionType": "semver"
},
{
"lessThan": "1.1.1ze",
"status": "affected",
"version": "1.1.1",
"versionType": "custom"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "reporter",
"value": "Stanislav Fort (Aisle Research)"
},
{
"lang": "en",
"type": "remediation developer",
"value": "Norbert P\u00f3cs"
}
],
"datePublic": "2026-01-27T14:00:00.000Z",
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously\u003cbr\u003ecrafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing\u003cbr\u003enon-ASCII BMP code point can trigger a one byte write before the allocated\u003cbr\u003ebuffer.\u003cbr\u003e\u003cbr\u003eImpact summary: The out-of-bounds write can cause a memory corruption\u003cbr\u003ewhich can have various consequences including a Denial of Service.\u003cbr\u003e\u003cbr\u003eThe OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12\u003cbr\u003eBMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes,\u003cbr\u003ethe helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16\u003cbr\u003esource byte count as the destination buffer capacity to UTF8_putc(). For BMP\u003cbr\u003ecode points above U+07FF, UTF-8 requires three bytes, but the forwarded\u003cbr\u003ecapacity can be just two bytes. UTF8_putc() then returns -1, and this negative\u003cbr\u003evalue is added to the output length without validation, causing the\u003cbr\u003elength to become negative. The subsequent trailing NUL byte is then written\u003cbr\u003eat a negative offset, causing write outside of heap allocated buffer.\u003cbr\u003e\u003cbr\u003eThe vulnerability is reachable via the public PKCS12_get_friendlyname() API\u003cbr\u003ewhen parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a\u003cbr\u003edifferent code path that avoids this issue, PKCS12_get_friendlyname() directly\u003cbr\u003einvokes the vulnerable function. Exploitation requires an attacker to provide\u003cbr\u003ea malicious PKCS#12 file to be parsed by the application and the attacker\u003cbr\u003ecan just trigger a one zero byte write before the allocated buffer.\u003cbr\u003eFor that reason the issue was assessed as Low severity according to our\u003cbr\u003eSecurity Policy.\u003cbr\u003e\u003cbr\u003eThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\u003cbr\u003eas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\u003cbr\u003e\u003cbr\u003eOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\u003cbr\u003e\u003cbr\u003eOpenSSL 1.0.2 is not affected by this issue."
}
],
"value": "Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously\ncrafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing\nnon-ASCII BMP code point can trigger a one byte write before the allocated\nbuffer.\n\nImpact summary: The out-of-bounds write can cause a memory corruption\nwhich can have various consequences including a Denial of Service.\n\nThe OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12\nBMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes,\nthe helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16\nsource byte count as the destination buffer capacity to UTF8_putc(). For BMP\ncode points above U+07FF, UTF-8 requires three bytes, but the forwarded\ncapacity can be just two bytes. UTF8_putc() then returns -1, and this negative\nvalue is added to the output length without validation, causing the\nlength to become negative. The subsequent trailing NUL byte is then written\nat a negative offset, causing write outside of heap allocated buffer.\n\nThe vulnerability is reachable via the public PKCS12_get_friendlyname() API\nwhen parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a\ndifferent code path that avoids this issue, PKCS12_get_friendlyname() directly\ninvokes the vulnerable function. Exploitation requires an attacker to provide\na malicious PKCS#12 file to be parsed by the application and the attacker\ncan just trigger a one zero byte write before the allocated buffer.\nFor that reason the issue was assessed as Low severity according to our\nSecurity Policy.\n\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\n\nOpenSSL 1.0.2 is not affected by this issue."
}
],
"metrics": [
{
"format": "other",
"other": {
"content": {
"text": "Low"
},
"type": "https://openssl-library.org/policies/general/security-policy/"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-787",
"description": "CWE-787 Out-of-bounds Write",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-01-27T16:01:24.822Z",
"orgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"shortName": "openssl"
},
"references": [
{
"name": "OpenSSL Advisory",
"tags": [
"vendor-advisory"
],
"url": "https://openssl-library.org/news/secadv/20260127.txt"
},
{
"name": "3.6.1 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/7e9cac9832e4705b91987c2474ed06a37a93cecb"
},
{
"name": "3.5.5 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/ff628933755075446bca8307e8417c14d164b535"
},
{
"name": "3.4.4 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/cda12de3bc0e333ea8d2c6fd15001dbdaf280015"
},
{
"name": "3.3.6 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/a26a90d38edec3748566129d824e664b54bee2e2"
},
{
"name": "3.0.19 git commit",
"tags": [
"patch"
],
"url": "https://github.com/openssl/openssl/commit/41be0f216404f14457bbf3b9cc488dba60b49296"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Out of bounds write in PKCS12_get_friendlyname() UTF-8 conversion",
"x_generator": {
"engine": "Vulnogram 0.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"assignerShortName": "openssl",
"cveId": "CVE-2025-69419",
"datePublished": "2026-01-27T16:01:24.822Z",
"dateReserved": "2026-01-06T12:44:09.945Z",
"dateUpdated": "2026-05-12T12:08:41.952Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2025-69419",
"date": "2026-07-27",
"epss": "0.00444",
"percentile": "0.36341"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2025-69419\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2026-01-27T16:16:34.113\",\"lastModified\":\"2026-06-17T10:00:39.850\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously\\ncrafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing\\nnon-ASCII BMP code point can trigger a one byte write before the allocated\\nbuffer.\\n\\nImpact summary: The out-of-bounds write can cause a memory corruption\\nwhich can have various consequences including a Denial of Service.\\n\\nThe OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12\\nBMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes,\\nthe helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16\\nsource byte count as the destination buffer capacity to UTF8_putc(). For BMP\\ncode points above U+07FF, UTF-8 requires three bytes, but the forwarded\\ncapacity can be just two bytes. UTF8_putc() then returns -1, and this negative\\nvalue is added to the output length without validation, causing the\\nlength to become negative. The subsequent trailing NUL byte is then written\\nat a negative offset, causing write outside of heap allocated buffer.\\n\\nThe vulnerability is reachable via the public PKCS12_get_friendlyname() API\\nwhen parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a\\ndifferent code path that avoids this issue, PKCS12_get_friendlyname() directly\\ninvokes the vulnerable function. Exploitation requires an attacker to provide\\na malicious PKCS#12 file to be parsed by the application and the attacker\\ncan just trigger a one zero byte write before the allocated buffer.\\nFor that reason the issue was assessed as Low severity according to our\\nSecurity Policy.\\n\\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\\nas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\\n\\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\\n\\nOpenSSL 1.0.2 is not affected by this issue.\"},{\"lang\":\"es\",\"value\":\"Resumen del problema: Llamar a la funci\u00f3n PKCS12_get_friendlyname() en un archivo PKCS#12 creado maliciosamente con un nombre descriptivo BMPString (UTF-16BE) que contiene un punto de c\u00f3digo BMP no ASCII puede desencadenar una escritura de un byte antes del b\u00fafer asignado.\\n\\nResumen del impacto: La escritura fuera de l\u00edmites puede causar una corrupci\u00f3n de memoria que puede tener varias consecuencias, incluyendo una denegaci\u00f3n de servicio.\\n\\nLa funci\u00f3n OPENSSL_uni2utf8() realiza una conversi\u00f3n en dos pasadas de un BMPString (UTF-16BE) de PKCS#12 a UTF-8. En la segunda pasada, al emitir bytes UTF-8, la funci\u00f3n auxiliar bmp_to_utf8() reenv\u00eda incorrectamente el recuento de bytes fuente UTF-16 restantes como la capacidad del b\u00fafer de destino a UTF8_putc(). Para puntos de c\u00f3digo BMP superiores a U+07FF, UTF-8 requiere tres bytes, pero la capacidad reenviada puede ser de solo dos bytes. UTF8_putc() luego devuelve -1, y este valor negativo se a\u00f1ade a la longitud de salida sin validaci\u00f3n, haciendo que la longitud se vuelva negativa. El subsiguiente byte NUL final se escribe entonces en un desplazamiento negativo, causando una escritura fuera del b\u00fafer asignado en el heap.\\n\\nLa vulnerabilidad es alcanzable a trav\u00e9s de la API p\u00fablica PKCS12_get_friendlyname() al analizar archivos PKCS#12 controlados por el atacante. Si bien PKCS12_parse() utiliza una ruta de c\u00f3digo diferente que evita este problema, PKCS12_get_friendlyname() invoca directamente la funci\u00f3n vulnerable. La explotaci\u00f3n requiere que un atacante proporcione un archivo PKCS#12 malicioso para ser analizado por la aplicaci\u00f3n y el atacante puede simplemente desencadenar una escritura de un byte cero antes del b\u00fafer asignado. Por esa raz\u00f3n, el problema fue evaluado como de baja severidad seg\u00fan nuestra Pol\u00edtica de Seguridad.\\n\\nLos m\u00f3dulos FIPS en 3.6, 3.5, 3.4, 3.3 y 3.0 no se ven afectados por este problema, ya que la implementaci\u00f3n de PKCS#12 est\u00e1 fuera del l\u00edmite del m\u00f3dulo FIPS de OpenSSL.\\n\\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 y 1.1.1 son vulnerables a este problema.\\n\\nOpenSSL 1.0.2 no se ve afectado por este problema.\"}],\"affected\":[{\"source\":\"openssl-security@openssl.org\",\"affectedData\":[{\"vendor\":\"OpenSSL\",\"product\":\"OpenSSL\",\"defaultStatus\":\"unaffected\",\"versions\":[{\"version\":\"3.6.0\",\"lessThan\":\"3.6.1\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.5.0\",\"lessThan\":\"3.5.5\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.4.0\",\"lessThan\":\"3.4.4\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.3.0\",\"lessThan\":\"3.3.6\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"3.0.0\",\"lessThan\":\"3.0.19\",\"versionType\":\"semver\",\"status\":\"affected\"},{\"version\":\"1.1.1\",\"lessThan\":\"1.1.1ze\",\"versionType\":\"custom\",\"status\":\"affected\"}]}]},{\"source\":\"0b142b55-0307-4c5a-b3c9-f314f3fb7c5e\",\"affectedData\":[{\"vendor\":\"Siemens\",\"product\":\"SIMATIC S7-1500 TM MFP - GNU/Linux subsystem\",\"defaultStatus\":\"unknown\",\"versions\":[{\"version\":\"0\",\"lessThan\":\"*\",\"versionType\":\"custom\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":7.4,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"HIGH\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":2.2,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-01-29T15:09:04.605559Z\",\"id\":\"CVE-2025-69419\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"total\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"openssl-security@openssl.org\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-787\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"1.1.1\",\"versionEndExcluding\":\"1.1.1ze\",\"matchCriteriaId\":\"E000B986-6A31-468F-9EA3-B9D16DB16FB2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.0.0\",\"versionEndExcluding\":\"3.0.19\",\"matchCriteriaId\":\"C76C5F55-5243-4461-82F5-2FEBFF4D59FA\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.3.0\",\"versionEndExcluding\":\"3.3.6\",\"matchCriteriaId\":\"F5292E9E-6B50-409F-9219-7B0A04047AD8\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.4.0\",\"versionEndExcluding\":\"3.4.4\",\"matchCriteriaId\":\"B9D3DCAE-317D-4DFB-93F0-7A235A229619\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.5.0\",\"versionEndExcluding\":\"3.5.5\",\"matchCriteriaId\":\"1CAC7CBE-EC03-4089-938A-0CEEB2E09B62\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.6.0\",\"versionEndExcluding\":\"3.6.1\",\"matchCriteriaId\":\"68352537-5E99-4F4D-B78A-BCF0353A70A5\"}]}]}],\"references\":[{\"url\":\"https://github.com/openssl/openssl/commit/41be0f216404f14457bbf3b9cc488dba60b49296\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/openssl/openssl/commit/7e9cac9832e4705b91987c2474ed06a37a93cecb\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/openssl/openssl/commit/a26a90d38edec3748566129d824e664b54bee2e2\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/openssl/openssl/commit/cda12de3bc0e333ea8d2c6fd15001dbdaf280015\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/openssl/openssl/commit/ff628933755075446bca8307e8417c14d164b535\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\"]},{\"url\":\"https://openssl-library.org/news/secadv/20260127.txt\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Vendor Advisory\"]},{\"url\":\"https://cert-portal.siemens.com/productcert/html/ssa-265688.html\",\"source\":\"0b142b55-0307-4c5a-b3c9-f314f3fb7c5e\"}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-07-25T23:55:16+00:00",
"cve": "CVE-2025-69419",
"id": "CVE-2025-69419",
"initial_release_date": "2025-01-01T00:00:00+00:00",
"product_status:fixed": "553",
"product_status:known_affected": "5",
"product_status:known_not_affected": "220",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2025/cve-2025-69419.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "moderate",
"current_release_date": "2026-07-07T02:40:58Z",
"cve": "CVE-2025-69419",
"id": "CVE-2025-69419",
"initial_release_date": "2026-01-30T00:27:14Z",
"product_status:known_affected": "406",
"product_status:known_not_affected": "249",
"product_status:recommended": "327",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2025-69419",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2025-69419.json",
"version": "26"
},
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.4, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"HIGH\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2025-69419\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"total\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-01-29T15:09:04.605559Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-01-29T15:09:33.088Z\"}}], \"cna\": {\"title\": \"Out of bounds write in PKCS12_get_friendlyname() UTF-8 conversion\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"reporter\", \"value\": \"Stanislav Fort (Aisle Research)\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"value\": \"Norbert P\\u00f3cs\"}], \"metrics\": [{\"other\": {\"type\": \"https://openssl-library.org/policies/general/security-policy/\", \"content\": {\"text\": \"Low\"}}, \"format\": \"other\"}], \"affected\": [{\"vendor\": \"OpenSSL\", \"product\": \"OpenSSL\", \"versions\": [{\"status\": \"affected\", \"version\": \"3.6.0\", \"lessThan\": \"3.6.1\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.5.0\", \"lessThan\": \"3.5.5\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.4.0\", \"lessThan\": \"3.4.4\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.3.0\", \"lessThan\": \"3.3.6\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"3.0.0\", \"lessThan\": \"3.0.19\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"1.1.1\", \"lessThan\": \"1.1.1ze\", \"versionType\": \"custom\"}], \"defaultStatus\": \"unaffected\"}], \"datePublic\": \"2026-01-27T14:00:00.000Z\", \"references\": [{\"url\": \"https://openssl-library.org/news/secadv/20260127.txt\", \"name\": \"OpenSSL Advisory\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/7e9cac9832e4705b91987c2474ed06a37a93cecb\", \"name\": \"3.6.1 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/ff628933755075446bca8307e8417c14d164b535\", \"name\": \"3.5.5 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/cda12de3bc0e333ea8d2c6fd15001dbdaf280015\", \"name\": \"3.4.4 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/a26a90d38edec3748566129d824e664b54bee2e2\", \"name\": \"3.3.6 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/openssl/openssl/commit/41be0f216404f14457bbf3b9cc488dba60b49296\", \"name\": \"3.0.19 git commit\", \"tags\": [\"patch\"]}], \"x_generator\": {\"engine\": \"Vulnogram 0.2.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously\\ncrafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing\\nnon-ASCII BMP code point can trigger a one byte write before the allocated\\nbuffer.\\n\\nImpact summary: The out-of-bounds write can cause a memory corruption\\nwhich can have various consequences including a Denial of Service.\\n\\nThe OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12\\nBMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes,\\nthe helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16\\nsource byte count as the destination buffer capacity to UTF8_putc(). For BMP\\ncode points above U+07FF, UTF-8 requires three bytes, but the forwarded\\ncapacity can be just two bytes. UTF8_putc() then returns -1, and this negative\\nvalue is added to the output length without validation, causing the\\nlength to become negative. The subsequent trailing NUL byte is then written\\nat a negative offset, causing write outside of heap allocated buffer.\\n\\nThe vulnerability is reachable via the public PKCS12_get_friendlyname() API\\nwhen parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a\\ndifferent code path that avoids this issue, PKCS12_get_friendlyname() directly\\ninvokes the vulnerable function. Exploitation requires an attacker to provide\\na malicious PKCS#12 file to be parsed by the application and the attacker\\ncan just trigger a one zero byte write before the allocated buffer.\\nFor that reason the issue was assessed as Low severity according to our\\nSecurity Policy.\\n\\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\\nas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\\n\\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\\n\\nOpenSSL 1.0.2 is not affected by this issue.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously\u003cbr\u003ecrafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing\u003cbr\u003enon-ASCII BMP code point can trigger a one byte write before the allocated\u003cbr\u003ebuffer.\u003cbr\u003e\u003cbr\u003eImpact summary: The out-of-bounds write can cause a memory corruption\u003cbr\u003ewhich can have various consequences including a Denial of Service.\u003cbr\u003e\u003cbr\u003eThe OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12\u003cbr\u003eBMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes,\u003cbr\u003ethe helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16\u003cbr\u003esource byte count as the destination buffer capacity to UTF8_putc(). For BMP\u003cbr\u003ecode points above U+07FF, UTF-8 requires three bytes, but the forwarded\u003cbr\u003ecapacity can be just two bytes. UTF8_putc() then returns -1, and this negative\u003cbr\u003evalue is added to the output length without validation, causing the\u003cbr\u003elength to become negative. The subsequent trailing NUL byte is then written\u003cbr\u003eat a negative offset, causing write outside of heap allocated buffer.\u003cbr\u003e\u003cbr\u003eThe vulnerability is reachable via the public PKCS12_get_friendlyname() API\u003cbr\u003ewhen parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a\u003cbr\u003edifferent code path that avoids this issue, PKCS12_get_friendlyname() directly\u003cbr\u003einvokes the vulnerable function. Exploitation requires an attacker to provide\u003cbr\u003ea malicious PKCS#12 file to be parsed by the application and the attacker\u003cbr\u003ecan just trigger a one zero byte write before the allocated buffer.\u003cbr\u003eFor that reason the issue was assessed as Low severity according to our\u003cbr\u003eSecurity Policy.\u003cbr\u003e\u003cbr\u003eThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\u003cbr\u003eas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\u003cbr\u003e\u003cbr\u003eOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\u003cbr\u003e\u003cbr\u003eOpenSSL 1.0.2 is not affected by this issue.\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-787\", \"description\": \"CWE-787 Out-of-bounds Write\"}]}], \"providerMetadata\": {\"orgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"shortName\": \"openssl\", \"dateUpdated\": \"2026-01-27T16:01:24.822Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2025-69419\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-01-29T15:09:39.154Z\", \"dateReserved\": \"2026-01-06T12:44:09.945Z\", \"assignerOrgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"datePublished\": \"2026-01-27T16:01:24.822Z\", \"assignerShortName\": \"openssl\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
OPENSUSE-SU-2026:20152-1
Vulnerability from csaf_opensuse - Published: 2026-02-02 13:00 - Updated: 2026-02-02 13:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for openssl-3",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for openssl-3 fixes the following issues:\n\nSecurity fixes:\n\n - CVE-2025-11187: Improper validation of PBMAC1 parameters in PKCS#12 MAC verification (bsc#1256829).\n - CVE-2025-15467: Stack buffer overflow in CMS AuthEnvelopedData parsing (bsc#1256830).\n - CVE-2025-15468: NULL dereference in SSL_CIPHER_find() function on unknown cipher ID (bsc#1256831).\n - CVE-2025-15469: \"openssl dgst\" one-shot codepath silently truncates inputs \u003e16MB (bsc#1256832).\n - CVE-2025-66199: TLS 1.3 CompressedCertificate excessive memory allocation (bsc#1256833).\n - CVE-2025-68160: Heap out-of-bounds write in BIO_f_linebuffer on short writes (bsc#1256834).\n - CVE-2025-69418: Unauthenticated/unencrypted trailing bytes with low-level OCB function calls (bsc#1256835).\n - CVE-2025-69419: Out of bounds write in PKCS12_get_friendlyname() UTF-8 conversion (bsc#1256836).\n - CVE-2025-69420: Missing ASN1_TYPE validation in TS_RESP_verify_response() function (bsc#1256837).\n - CVE-2025-69421: NULL Pointer Dereference in PKCS12_item_decrypt_d2i_ex function (bsc#1256838).\n - CVE-2026-22795: Missing ASN1_TYPE validation in PKCS#12 parsing (bsc#1256839).\n - CVE-2026-22796: ASN1_TYPE Type Confusion in the PKCS7_digest_from_attributes() function (bsc#1256840).\n\nOther fixes:\n\n- Enable livepatching support for ppc64le (bsc#1257274).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Leap-16.0-237",
"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_20152-1.json"
},
{
"category": "self",
"summary": "SUSE Bug 1256829",
"url": "https://bugzilla.suse.com/1256829"
},
{
"category": "self",
"summary": "SUSE Bug 1256830",
"url": "https://bugzilla.suse.com/1256830"
},
{
"category": "self",
"summary": "SUSE Bug 1256831",
"url": "https://bugzilla.suse.com/1256831"
},
{
"category": "self",
"summary": "SUSE Bug 1256832",
"url": "https://bugzilla.suse.com/1256832"
},
{
"category": "self",
"summary": "SUSE Bug 1256833",
"url": "https://bugzilla.suse.com/1256833"
},
{
"category": "self",
"summary": "SUSE Bug 1256834",
"url": "https://bugzilla.suse.com/1256834"
},
{
"category": "self",
"summary": "SUSE Bug 1256835",
"url": "https://bugzilla.suse.com/1256835"
},
{
"category": "self",
"summary": "SUSE Bug 1256836",
"url": "https://bugzilla.suse.com/1256836"
},
{
"category": "self",
"summary": "SUSE Bug 1256837",
"url": "https://bugzilla.suse.com/1256837"
},
{
"category": "self",
"summary": "SUSE Bug 1256838",
"url": "https://bugzilla.suse.com/1256838"
},
{
"category": "self",
"summary": "SUSE Bug 1256839",
"url": "https://bugzilla.suse.com/1256839"
},
{
"category": "self",
"summary": "SUSE Bug 1256840",
"url": "https://bugzilla.suse.com/1256840"
},
{
"category": "self",
"summary": "SUSE Bug 1257274",
"url": "https://bugzilla.suse.com/1257274"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-11187 page",
"url": "https://www.suse.com/security/cve/CVE-2025-11187/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-15467 page",
"url": "https://www.suse.com/security/cve/CVE-2025-15467/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-15468 page",
"url": "https://www.suse.com/security/cve/CVE-2025-15468/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-15469 page",
"url": "https://www.suse.com/security/cve/CVE-2025-15469/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-66199 page",
"url": "https://www.suse.com/security/cve/CVE-2025-66199/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-68160 page",
"url": "https://www.suse.com/security/cve/CVE-2025-68160/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-69418 page",
"url": "https://www.suse.com/security/cve/CVE-2025-69418/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-69419 page",
"url": "https://www.suse.com/security/cve/CVE-2025-69419/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-69420 page",
"url": "https://www.suse.com/security/cve/CVE-2025-69420/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2025-69421 page",
"url": "https://www.suse.com/security/cve/CVE-2025-69421/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-22795 page",
"url": "https://www.suse.com/security/cve/CVE-2026-22795/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-22796 page",
"url": "https://www.suse.com/security/cve/CVE-2026-22796/"
}
],
"title": "Security update for openssl-3",
"tracking": {
"current_release_date": "2026-02-02T13:00:02Z",
"generator": {
"date": "2026-02-02T13:00:02Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:20152-1",
"initial_release_date": "2026-02-02T13:00:02Z",
"revision_history": [
{
"date": "2026-02-02T13:00:02Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"product": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"product_id": "libopenssl-3-devel-3.5.0-160000.5.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"product": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"product_id": "libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.0-160000.5.1.aarch64",
"product": {
"name": "libopenssl3-3.5.0-160000.5.1.aarch64",
"product_id": "libopenssl3-3.5.0-160000.5.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.0-160000.5.1.aarch64",
"product": {
"name": "openssl-3-3.5.0-160000.5.1.aarch64",
"product_id": "openssl-3-3.5.0-160000.5.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-3-doc-3.5.0-160000.5.1.noarch",
"product": {
"name": "openssl-3-doc-3.5.0-160000.5.1.noarch",
"product_id": "openssl-3-doc-3.5.0-160000.5.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"product": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"product_id": "libopenssl-3-devel-3.5.0-160000.5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"product": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"product_id": "libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.0-160000.5.1.ppc64le",
"product": {
"name": "libopenssl3-3.5.0-160000.5.1.ppc64le",
"product_id": "libopenssl3-3.5.0-160000.5.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.0-160000.5.1.ppc64le",
"product": {
"name": "openssl-3-3.5.0-160000.5.1.ppc64le",
"product_id": "openssl-3-3.5.0-160000.5.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"product": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"product_id": "libopenssl-3-devel-3.5.0-160000.5.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"product": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"product_id": "libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.0-160000.5.1.s390x",
"product": {
"name": "libopenssl3-3.5.0-160000.5.1.s390x",
"product_id": "libopenssl3-3.5.0-160000.5.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.0-160000.5.1.s390x",
"product": {
"name": "openssl-3-3.5.0-160000.5.1.s390x",
"product_id": "openssl-3-3.5.0-160000.5.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"product": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"product_id": "libopenssl-3-devel-3.5.0-160000.5.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"product": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"product_id": "libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"product": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"product_id": "libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.5.0-160000.5.1.x86_64",
"product": {
"name": "libopenssl3-3.5.0-160000.5.1.x86_64",
"product_id": "libopenssl3-3.5.0-160000.5.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"product": {
"name": "libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"product_id": "libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.5.0-160000.5.1.x86_64",
"product": {
"name": "openssl-3-3.5.0-160000.5.1.x86_64",
"product_id": "openssl-3-3.5.0-160000.5.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Leap 16.0",
"product": {
"name": "openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0"
}
}
],
"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.0-160000.5.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64"
},
"product_reference": "libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x"
},
"product_reference": "libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.5.0-160000.5.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64"
},
"product_reference": "libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64"
},
"product_reference": "libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le"
},
"product_reference": "libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x"
},
"product_reference": "libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64"
},
"product_reference": "libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64"
},
"product_reference": "libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.0-160000.5.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64"
},
"product_reference": "libopenssl3-3.5.0-160000.5.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.0-160000.5.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le"
},
"product_reference": "libopenssl3-3.5.0-160000.5.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.0-160000.5.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x"
},
"product_reference": "libopenssl3-3.5.0-160000.5.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.5.0-160000.5.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64"
},
"product_reference": "libopenssl3-3.5.0-160000.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64"
},
"product_reference": "libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.0-160000.5.1.aarch64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64"
},
"product_reference": "openssl-3-3.5.0-160000.5.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.0-160000.5.1.ppc64le as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le"
},
"product_reference": "openssl-3-3.5.0-160000.5.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.0-160000.5.1.s390x as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x"
},
"product_reference": "openssl-3-3.5.0-160000.5.1.s390x",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.5.0-160000.5.1.x86_64 as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64"
},
"product_reference": "openssl-3-3.5.0-160000.5.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 16.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.5.0-160000.5.1.noarch as component of openSUSE Leap 16.0",
"product_id": "openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
},
"product_reference": "openssl-3-doc-3.5.0-160000.5.1.noarch",
"relates_to_product_reference": "openSUSE Leap 16.0"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-11187",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-11187"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: PBMAC1 parameters in PKCS#12 files are missing validation\nwhich can trigger a stack-based buffer overflow, invalid pointer or NULL\npointer dereference during MAC verification.\n\nImpact summary: The stack buffer overflow or NULL pointer dereference may\ncause a crash leading to Denial of Service for an application that parses\nuntrusted PKCS#12 files. The buffer overflow may also potentially enable\ncode execution depending on platform mitigations.\n\nWhen verifying a PKCS#12 file that uses PBMAC1 for the MAC, the PBKDF2\nsalt and keylength parameters from the file are used without validation.\nIf the value of keylength exceeds the size of the fixed stack buffer used\nfor the derived key (64 bytes), the key derivation will overflow the buffer.\nThe overflow length is attacker-controlled. Also, if the salt parameter is\nnot an OCTET STRING type this can lead to invalid or NULL pointer\ndereference.\n\nExploiting this issue requires a user or application to process\na maliciously crafted PKCS#12 file. It is uncommon to accept untrusted\nPKCS#12 files in applications as they are usually used to store private\nkeys which are trusted by definition. For this reason the issue was assessed\nas Moderate severity.\n\nThe FIPS modules in 3.6, 3.5 and 3.4 are not affected by this issue, as\nPKCS#12 processing is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5 and 3.4 are vulnerable to this issue.\n\nOpenSSL 3.3, 3.0, 1.1.1 and 1.0.2 are not affected by this issue as they do\nnot support PBMAC1 in PKCS#12.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-11187",
"url": "https://www.suse.com/security/cve/CVE-2025-11187"
},
{
"category": "external",
"summary": "SUSE Bug 1256829 for CVE-2025-11187",
"url": "https://bugzilla.suse.com/1256829"
},
{
"category": "external",
"summary": "SUSE Bug 1256878 for CVE-2025-11187",
"url": "https://bugzilla.suse.com/1256878"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "important"
}
],
"title": "CVE-2025-11187"
},
{
"cve": "CVE-2025-15467",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-15467"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: Parsing CMS AuthEnvelopedData message with maliciously\ncrafted AEAD parameters can trigger a stack buffer overflow.\n\nImpact summary: A stack buffer overflow may lead to a crash, causing Denial\nof Service, or potentially remote code execution.\n\nWhen parsing CMS AuthEnvelopedData structures that use AEAD ciphers such as\nAES-GCM, the IV (Initialization Vector) encoded in the ASN.1 parameters is\ncopied into a fixed-size stack buffer without verifying that its length fits\nthe destination. An attacker can supply a crafted CMS message with an\noversized IV, causing a stack-based out-of-bounds write before any\nauthentication or tag verification occurs.\n\nApplications and services that parse untrusted CMS or PKCS#7 content using\nAEAD ciphers (e.g., S/MIME AuthEnvelopedData with AES-GCM) are vulnerable.\nBecause the overflow occurs prior to authentication, no valid key material\nis required to trigger it. While exploitability to remote code execution\ndepends on platform and toolchain mitigations, the stack-based write\nprimitive represents a severe risk.\n\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this\nissue, as the CMS implementation is outside the OpenSSL FIPS module\nboundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3 and 3.0 are vulnerable to this issue.\n\nOpenSSL 1.1.1 and 1.0.2 are not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-15467",
"url": "https://www.suse.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "SUSE Bug 1256830 for CVE-2025-15467",
"url": "https://bugzilla.suse.com/1256830"
},
{
"category": "external",
"summary": "SUSE Bug 1256876 for CVE-2025-15467",
"url": "https://bugzilla.suse.com/1256876"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "critical"
}
],
"title": "CVE-2025-15467"
},
{
"cve": "CVE-2025-15468",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-15468"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: If an application using the SSL_CIPHER_find() function in\na QUIC protocol client or server receives an unknown cipher suite from\nthe peer, a NULL dereference occurs.\n\nImpact summary: A NULL pointer dereference leads to abnormal termination of\nthe running process causing Denial of Service.\n\nSome applications call SSL_CIPHER_find() from the client_hello_cb callback\non the cipher ID received from the peer. If this is done with an SSL object\nimplementing the QUIC protocol, NULL pointer dereference will happen if\nthe examined cipher ID is unknown or unsupported.\n\nAs it is not very common to call this function in applications using the QUIC \nprotocol and the worst outcome is Denial of Service, the issue was assessed\nas Low severity.\n\nThe vulnerable code was introduced in the 3.2 version with the addition\nof the QUIC protocol support.\n\nThe FIPS modules in 3.6, 3.5, 3.4 and 3.3 are not affected by this issue,\nas the QUIC implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4 and 3.3 are vulnerable to this issue.\n\nOpenSSL 3.0, 1.1.1 and 1.0.2 are not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-15468",
"url": "https://www.suse.com/security/cve/CVE-2025-15468"
},
{
"category": "external",
"summary": "SUSE Bug 1256831 for CVE-2025-15468",
"url": "https://bugzilla.suse.com/1256831"
},
{
"category": "external",
"summary": "SUSE Bug 1256880 for CVE-2025-15468",
"url": "https://bugzilla.suse.com/1256880"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "important"
}
],
"title": "CVE-2025-15468"
},
{
"cve": "CVE-2025-15469",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-15469"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: The \u0027openssl dgst\u0027 command-line tool silently truncates input\ndata to 16MB when using one-shot signing algorithms and reports success instead\nof an error.\n\nImpact summary: A user signing or verifying files larger than 16MB with\none-shot algorithms (such as Ed25519, Ed448, or ML-DSA) may believe the entire\nfile is authenticated while trailing data beyond 16MB remains unauthenticated.\n\nWhen the \u0027openssl dgst\u0027 command is used with algorithms that only support\none-shot signing (Ed25519, Ed448, ML-DSA-44, ML-DSA-65, ML-DSA-87), the input\nis buffered with a 16MB limit. If the input exceeds this limit, the tool\nsilently truncates to the first 16MB and continues without signaling an error,\ncontrary to what the documentation states. This creates an integrity gap where\ntrailing bytes can be modified without detection if both signing and\nverification are performed using the same affected codepath.\n\nThe issue affects only the command-line tool behavior. Verifiers that process\nthe full message using library APIs will reject the signature, so the risk\nprimarily affects workflows that both sign and verify with the affected\n\u0027openssl dgst\u0027 command. Streaming digest algorithms for \u0027openssl dgst\u0027 and\nlibrary users are unaffected.\n\nThe FIPS modules in 3.5 and 3.6 are not affected by this issue, as the\ncommand-line tools are outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.5 and 3.6 are vulnerable to this issue.\n\nOpenSSL 3.4, 3.3, 3.0, 1.1.1 and 1.0.2 are not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-15469",
"url": "https://www.suse.com/security/cve/CVE-2025-15469"
},
{
"category": "external",
"summary": "SUSE Bug 1256832 for CVE-2025-15469",
"url": "https://bugzilla.suse.com/1256832"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-15469"
},
{
"cve": "CVE-2025-66199",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-66199"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: A TLS 1.3 connection using certificate compression can be\nforced to allocate a large buffer before decompression without checking\nagainst the configured certificate size limit.\n\nImpact summary: An attacker can cause per-connection memory allocations of\nup to approximately 22 MiB and extra CPU work, potentially leading to\nservice degradation or resource exhaustion (Denial of Service).\n\nIn affected configurations, the peer-supplied uncompressed certificate\nlength from a CompressedCertificate message is used to grow a heap buffer\nprior to decompression. This length is not bounded by the max_cert_list\nsetting, which otherwise constrains certificate message sizes. An attacker\ncan exploit this to cause large per-connection allocations followed by\nhandshake failure. No memory corruption or information disclosure occurs.\n\nThis issue only affects builds where TLS 1.3 certificate compression is\ncompiled in (i.e., not OPENSSL_NO_COMP_ALG) and at least one compression\nalgorithm (brotli, zlib, or zstd) is available, and where the compression\nextension is negotiated. Both clients receiving a server CompressedCertificate\nand servers in mutual TLS scenarios receiving a client CompressedCertificate\nare affected. Servers that do not request client certificates are not\nvulnerable to client-initiated attacks.\n\nUsers can mitigate this issue by setting SSL_OP_NO_RX_CERTIFICATE_COMPRESSION\nto disable receiving compressed certificates.\n\nThe FIPS modules in 3.6, 3.5, 3.4 and 3.3 are not affected by this issue,\nas the TLS implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4 and 3.3 are vulnerable to this issue.\n\nOpenSSL 3.0, 1.1.1 and 1.0.2 are not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-66199",
"url": "https://www.suse.com/security/cve/CVE-2025-66199"
},
{
"category": "external",
"summary": "SUSE Bug 1256833 for CVE-2025-66199",
"url": "https://bugzilla.suse.com/1256833"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-66199"
},
{
"cve": "CVE-2025-68160",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-68160"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: Writing large, newline-free data into a BIO chain using the\nline-buffering filter where the next BIO performs short writes can trigger\na heap-based out-of-bounds write.\n\nImpact summary: This out-of-bounds write can cause memory corruption which\ntypically results in a crash, leading to Denial of Service for an application.\n\nThe line-buffering BIO filter (BIO_f_linebuffer) is not used by default in\nTLS/SSL data paths. In OpenSSL command-line applications, it is typically\nonly pushed onto stdout/stderr on VMS systems. Third-party applications that\nexplicitly use this filter with a BIO chain that can short-write and that\nwrite large, newline-free data influenced by an attacker would be affected.\nHowever, the circumstances where this could happen are unlikely to be under\nattacker control, and BIO_f_linebuffer is unlikely to be handling non-curated\ndata controlled by an attacker. For that reason the issue was assessed as\nLow severity.\n\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the BIO implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0, 1.1.1 and 1.0.2 are vulnerable to this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-68160",
"url": "https://www.suse.com/security/cve/CVE-2025-68160"
},
{
"category": "external",
"summary": "SUSE Bug 1256834 for CVE-2025-68160",
"url": "https://bugzilla.suse.com/1256834"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-68160"
},
{
"cve": "CVE-2025-69418",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-69418"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: When using the low-level OCB API directly with AES-NI or\u003cbr\u003eother hardware-accelerated code paths, inputs whose length is not a multiple\u003cbr\u003eof 16 bytes can leave the final partial block unencrypted and unauthenticated.\u003cbr\u003e\u003cbr\u003eImpact summary: The trailing 1-15 bytes of a message may be exposed in\u003cbr\u003ecleartext on encryption and are not covered by the authentication tag,\u003cbr\u003eallowing an attacker to read or tamper with those bytes without detection.\u003cbr\u003e\u003cbr\u003eThe low-level OCB encrypt and decrypt routines in the hardware-accelerated\u003cbr\u003estream path process full 16-byte blocks but do not advance the input/output\u003cbr\u003epointers. The subsequent tail-handling code then operates on the original\u003cbr\u003ebase pointers, effectively reprocessing the beginning of the buffer while\u003cbr\u003eleaving the actual trailing bytes unprocessed. The authentication checksum\u003cbr\u003ealso excludes the true tail bytes.\u003cbr\u003e\u003cbr\u003eHowever, typical OpenSSL consumers using EVP are not affected because the\u003cbr\u003ehigher-level EVP and provider OCB implementations split inputs so that full\u003cbr\u003eblocks and trailing partial blocks are processed in separate calls, avoiding\u003cbr\u003ethe problematic code path. Additionally, TLS does not use OCB ciphersuites.\u003cbr\u003eThe vulnerability only affects applications that call the low-level\u003cbr\u003eCRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions directly with\u003cbr\u003enon-block-aligned lengths in a single call on hardware-accelerated builds.\u003cbr\u003eFor these reasons the issue was assessed as Low severity.\u003cbr\u003e\u003cbr\u003eThe FIPS modules in 3.6, 3.5, 3.4, 3.3, 3.2, 3.1 and 3.0 are not affected\u003cbr\u003eby this issue, as OCB mode is not a FIPS-approved algorithm.\u003cbr\u003e\u003cbr\u003eOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\u003cbr\u003e\u003cbr\u003eOpenSSL 1.0.2 is not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-69418",
"url": "https://www.suse.com/security/cve/CVE-2025-69418"
},
{
"category": "external",
"summary": "SUSE Bug 1256835 for CVE-2025-69418",
"url": "https://bugzilla.suse.com/1256835"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-69418"
},
{
"cve": "CVE-2025-69419",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-69419"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously\ncrafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing\nnon-ASCII BMP code point can trigger a one byte write before the allocated\nbuffer.\n\nImpact summary: The out-of-bounds write can cause a memory corruption\nwhich can have various consequences including a Denial of Service.\n\nThe OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12\nBMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes,\nthe helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16\nsource byte count as the destination buffer capacity to UTF8_putc(). For BMP\ncode points above U+07FF, UTF-8 requires three bytes, but the forwarded\ncapacity can be just two bytes. UTF8_putc() then returns -1, and this negative\nvalue is added to the output length without validation, causing the\nlength to become negative. The subsequent trailing NUL byte is then written\nat a negative offset, causing write outside of heap allocated buffer.\n\nThe vulnerability is reachable via the public PKCS12_get_friendlyname() API\nwhen parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a\ndifferent code path that avoids this issue, PKCS12_get_friendlyname() directly\ninvokes the vulnerable function. Exploitation requires an attacker to provide\na malicious PKCS#12 file to be parsed by the application and the attacker\ncan just trigger a one zero byte write before the allocated buffer.\nFor that reason the issue was assessed as Low severity according to our\nSecurity Policy.\n\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\n\nOpenSSL 1.0.2 is not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-69419",
"url": "https://www.suse.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "SUSE Bug 1256836 for CVE-2025-69419",
"url": "https://bugzilla.suse.com/1256836"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-69419"
},
{
"cve": "CVE-2025-69420",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-69420"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: A type confusion vulnerability exists in the TimeStamp Response\nverification code where an ASN1_TYPE union member is accessed without first\nvalidating the type, causing an invalid or NULL pointer dereference when\nprocessing a malformed TimeStamp Response file.\n\nImpact summary: An application calling TS_RESP_verify_response() with a\nmalformed TimeStamp Response can be caused to dereference an invalid or\nNULL pointer when reading, resulting in a Denial of Service.\n\nThe functions ossl_ess_get_signing_cert() and ossl_ess_get_signing_cert_v2()\naccess the signing cert attribute value without validating its type.\nWhen the type is not V_ASN1_SEQUENCE, this results in accessing invalid memory\nthrough the ASN1_TYPE union, causing a crash.\n\nExploiting this vulnerability requires an attacker to provide a malformed\nTimeStamp Response to an application that verifies timestamp responses. The\nTimeStamp protocol (RFC 3161) is not widely used and the impact of the\nexploit is just a Denial of Service. For these reasons the issue was\nassessed as Low severity.\n\nThe FIPS modules in 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the TimeStamp Response implementation is outside the OpenSSL FIPS module\nboundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\n\nOpenSSL 1.0.2 is not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-69420",
"url": "https://www.suse.com/security/cve/CVE-2025-69420"
},
{
"category": "external",
"summary": "SUSE Bug 1256837 for CVE-2025-69420",
"url": "https://bugzilla.suse.com/1256837"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-69420"
},
{
"cve": "CVE-2025-69421",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2025-69421"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: Processing a malformed PKCS#12 file can trigger a NULL pointer\ndereference in the PKCS12_item_decrypt_d2i_ex() function.\n\nImpact summary: A NULL pointer dereference can trigger a crash which leads to\nDenial of Service for an application processing PKCS#12 files.\n\nThe PKCS12_item_decrypt_d2i_ex() function does not check whether the oct\nparameter is NULL before dereferencing it. When called from\nPKCS12_unpack_p7encdata() with a malformed PKCS#12 file, this parameter can\nbe NULL, causing a crash. The vulnerability is limited to Denial of Service\nand cannot be escalated to achieve code execution or memory disclosure.\n\nExploiting this issue requires an attacker to provide a malformed PKCS#12 file\nto an application that processes it. For that reason the issue was assessed as\nLow severity according to our Security Policy.\n\nThe FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0, 1.1.1 and 1.0.2 are vulnerable to this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2025-69421",
"url": "https://www.suse.com/security/cve/CVE-2025-69421"
},
{
"category": "external",
"summary": "SUSE Bug 1256838 for CVE-2025-69421",
"url": "https://bugzilla.suse.com/1256838"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2025-69421"
},
{
"cve": "CVE-2026-22795",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-22795"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: An invalid or NULL pointer dereference can happen in\nan application processing a malformed PKCS#12 file.\n\nImpact summary: An application processing a malformed PKCS#12 file can be\ncaused to dereference an invalid or NULL pointer on memory read, resulting\nin a Denial of Service.\n\nA type confusion vulnerability exists in PKCS#12 parsing code where\nan ASN1_TYPE union member is accessed without first validating the type,\ncausing an invalid pointer read.\n\nThe location is constrained to a 1-byte address space, meaning any\nattempted pointer manipulation can only target addresses between 0x00 and 0xFF.\nThis range corresponds to the zero page, which is unmapped on most modern\noperating systems and will reliably result in a crash, leading only to a\nDenial of Service. Exploiting this issue also requires a user or application\nto process a maliciously crafted PKCS#12 file. It is uncommon to accept\nuntrusted PKCS#12 files in applications as they are usually used to store\nprivate keys which are trusted by definition. For these reasons, the issue\nwas assessed as Low severity.\n\nThe FIPS modules in 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the PKCS12 implementation is outside the OpenSSL FIPS module boundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue.\n\nOpenSSL 1.0.2 is not affected by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-22795",
"url": "https://www.suse.com/security/cve/CVE-2026-22795"
},
{
"category": "external",
"summary": "SUSE Bug 1256839 for CVE-2026-22795",
"url": "https://bugzilla.suse.com/1256839"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2026-22795"
},
{
"cve": "CVE-2026-22796",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-22796"
}
],
"notes": [
{
"category": "general",
"text": "Issue summary: A type confusion vulnerability exists in the signature\nverification of signed PKCS#7 data where an ASN1_TYPE union member is\naccessed without first validating the type, causing an invalid or NULL\npointer dereference when processing malformed PKCS#7 data.\n\nImpact summary: An application performing signature verification of PKCS#7\ndata or calling directly the PKCS7_digest_from_attributes() function can be\ncaused to dereference an invalid or NULL pointer when reading, resulting in\na Denial of Service.\n\nThe function PKCS7_digest_from_attributes() accesses the message digest attribute\nvalue without validating its type. When the type is not V_ASN1_OCTET_STRING,\nthis results in accessing invalid memory through the ASN1_TYPE union, causing\na crash.\n\nExploiting this vulnerability requires an attacker to provide a malformed\nsigned PKCS#7 to an application that verifies it. The impact of the\nexploit is just a Denial of Service, the PKCS7 API is legacy and applications\nshould be using the CMS API instead. For these reasons the issue was\nassessed as Low severity.\n\nThe FIPS modules in 3.5, 3.4, 3.3 and 3.0 are not affected by this issue,\nas the PKCS#7 parsing implementation is outside the OpenSSL FIPS module\nboundary.\n\nOpenSSL 3.6, 3.5, 3.4, 3.3, 3.0, 1.1.1 and 1.0.2 are vulnerable to this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-22796",
"url": "https://www.suse.com/security/cve/CVE-2026-22796"
},
{
"category": "external",
"summary": "SUSE Bug 1256840 for CVE-2026-22796",
"url": "https://bugzilla.suse.com/1256840"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-devel-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:libopenssl3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.aarch64",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.ppc64le",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.s390x",
"openSUSE Leap 16.0:openssl-3-3.5.0-160000.5.1.x86_64",
"openSUSE Leap 16.0:openssl-3-doc-3.5.0-160000.5.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-02-02T13:00:02Z",
"details": "moderate"
}
],
"title": "CVE-2026-22796"
}
]
}
RHSA-2026:1472
Vulnerability from csaf_redhat - Published: 2026-01-28 09:06 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. When an application processes a maliciously crafted PKCS#12 file, an attacker can exploit a stack buffer overflow or a NULL pointer dereference. This can lead to a denial of service (DoS) by crashing the application, and in some cases, may enable arbitrary code execution. The vulnerability arises from the lack of validation for PBKDF2 salt and keylength parameters within the PKCS#12 file.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in openssl. A remote attacker could trigger a NULL pointer dereference by sending an unknown or unsupported cipher ID during the client hello callback in applications using the QUIC (Quick UDP Internet Connections) protocol. This vulnerability, occurring when the SSL_CIPHER_find() function is called in this specific context, leads to an abnormal termination of the running process, causing a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in openssl. When a user signs or verifies files larger than 16MB using the `openssl dgst` command with one-shot algorithms, the tool silently truncates the input to 16MB. This creates an integrity gap, allowing trailing data beyond the initial 16MB to be modified without detection because it remains unauthenticated. This vulnerability primarily impacts workflows that both sign and verify files using the affected `openssl dgst` command.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A remote attacker can exploit this vulnerability by sending a specially crafted CompressedCertificate message during the TLS 1.3 handshake. This can cause excessive per-connection memory allocations, leading to resource exhaustion and a Denial of Service (DoS) for affected clients and servers. This issue occurs when TLS 1.3 certificate compression is enabled and negotiated.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This vulnerability involves an out-of-bounds write in the line-buffering BIO filter, which can lead to memory corruption. While exploitation is unlikely to be under direct attacker control, a successful attack could cause an application to crash, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. When applications directly call the low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in a single call on hardware-accelerated builds, the trailing 1-15 bytes of a message may be exposed in cleartext. These exposed bytes are not covered by the authentication tag, allowing an attacker to read or tamper with them without detection.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A type confusion vulnerability exists in the TimeStamp Response verification code, where an ASN1_TYPE union member is accessed without proper type validation. A remote attacker can exploit this by providing a malformed TimeStamp Response to an application that verifies timestamp responses. This can lead to an invalid or NULL pointer dereference, resulting in a Denial of Service (DoS) due to an application crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This vulnerability allows a remote attacker to trigger a Denial of Service (DoS) by providing a specially crafted, malformed PKCS#12 file to an application that processes it. The flaw occurs due to a NULL pointer dereference in the PKCS12_item_decrypt_d2i_ex() function when handling the malformed file, leading to an application crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a Denial of Service (DoS) by tricking a user or application into processing a maliciously crafted PKCS#12 (Personal Information Exchange Syntax Standard) file. The vulnerability leads to an invalid or NULL pointer dereference, resulting in an application crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a denial of service (DoS) by providing specially crafted PKCS#7 data to an application that performs signature verification. The vulnerability occurs because the application accesses an ASN1_TYPE union member without proper type validation, leading to an invalid or NULL pointer dereference and a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 10.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file (CVE-2025-11187)\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Denial of Service via NULL pointer dereference in QUIC protocol handling (CVE-2025-15468)\n\n* openssl: OpenSSL: Data integrity bypass in `openssl dgst` command due to silent truncation (CVE-2025-15469)\n\n* openssl: OpenSSL: Denial of Service due to excessive memory allocation in TLS 1.3 certificate compression (CVE-2025-66199)\n\n* openssl: OpenSSL: Denial of Service due to out-of-bounds write in BIO filter (CVE-2025-68160)\n\n* openssl: OpenSSL: Information disclosure and data tampering via specific low-level OCB encryption/decryption calls (CVE-2025-69418)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\n* openssl: OpenSSL: Denial of Service via malformed PKCS#12 file processing (CVE-2025-69421)\n\n* openssl: OpenSSL: Denial of Service via malformed TimeStamp Response (CVE-2025-69420)\n\n* openssl: OpenSSL: Denial of Service due to type confusion in PKCS#12 file processing (CVE-2026-22795)\n\n* openssl: OpenSSL: Denial of Service via type confusion in PKCS#7 signature verification (CVE-2026-22796)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1472",
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430375"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430377",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430377"
},
{
"category": "external",
"summary": "2430378",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430378"
},
{
"category": "external",
"summary": "2430379",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430379"
},
{
"category": "external",
"summary": "2430380",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430380"
},
{
"category": "external",
"summary": "2430381",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430381"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "2430387",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430387"
},
{
"category": "external",
"summary": "2430388",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430388"
},
{
"category": "external",
"summary": "2430389",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430389"
},
{
"category": "external",
"summary": "2430390",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430390"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1472.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:38+00:00",
"generator": {
"date": "2026-07-27T13:20:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1472",
"initial_release_date": "2026-01-28T09:06:06+00:00",
"revision_history": [
{
"date": "2026-01-28T09:06:06+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-28T09:06:06+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.1"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.1"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-devel-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-devel-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-perl-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-perl-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el10_1.aarch64",
"product": {
"name": "openssl-libs-1:3.5.1-7.el10_1.aarch64",
"product_id": "openssl-libs-1:3.5.1-7.el10_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el10_1?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"product": {
"name": "openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"product_id": "openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el10_1?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-devel-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-devel-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-perl-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-perl-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el10_1.x86_64",
"product": {
"name": "openssl-libs-1:3.5.1-7.el10_1.x86_64",
"product_id": "openssl-libs-1:3.5.1-7.el10_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el10_1?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-devel-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-devel-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-perl-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-perl-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el10_1.s390x",
"product": {
"name": "openssl-libs-1:3.5.1-7.el10_1.s390x",
"product_id": "openssl-libs-1:3.5.1-7.el10_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el10_1?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el10_1.src",
"product": {
"name": "openssl-1:3.5.1-7.el10_1.src",
"product_id": "openssl-1:3.5.1-7.el10_1.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el10_1?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-devel-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-devel-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-devel-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-perl-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-perl-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-perl-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "AppStream-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el10_1.src as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src"
},
"product_reference": "openssl-1:3.5.1-7.el10_1.src",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-libs-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-libs-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-libs-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"relates_to_product_reference": "BaseOS-10.1.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"relates_to_product_reference": "BaseOS-10.1.Z"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-11187",
"cwe": {
"id": "CWE-233",
"name": "Improper Handling of Parameters"
},
"discovery_date": "2026-01-16T14:21:50.559000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430375"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When an application processes a maliciously crafted PKCS#12 file, an attacker can exploit a stack buffer overflow or a NULL pointer dereference. This can lead to a denial of service (DoS) by crashing the application, and in some cases, may enable arbitrary code execution. The vulnerability arises from the lack of validation for PBKDF2 salt and keylength parameters within the PKCS#12 file.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. It affects OpenSSL versions 3.6, 3.5, and 3.4, where improper validation of PBMAC1 parameters in PKCS#12 MAC verification can lead to a stack buffer overflow or NULL pointer dereference. Exploitation requires an application to process a maliciously crafted PKCS#12 file, which is uncommon as these files are typically trusted. OpenSSL versions 3.3, 3.0, 1.1.1, and 1.0.2 are not affected as they do not support PBMAC1 in PKCS#12.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-11187"
},
{
"category": "external",
"summary": "RHBZ#2430375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430375"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-11187",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11187"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-11187",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-11187"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted PKCS#12 files. Applications should only handle PKCS#12 files from trusted sources, as these files are typically used for storing private keys and are expected to be secure.",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file"
},
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-15468",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-01-16T14:21:51.062000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430377"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in openssl. A remote attacker could trigger a NULL pointer dereference by sending an unknown or unsupported cipher ID during the client hello callback in applications using the QUIC (Quick UDP Internet Connections) protocol. This vulnerability, occurring when the SSL_CIPHER_find() function is called in this specific context, leads to an abnormal termination of the running process, causing a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via NULL pointer dereference in QUIC protocol handling",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat. The NULL pointer dereference in the `SSL_CIPHER_find()` function, affecting OpenSSL versions 3.3, 3.4, 3.5, and 3.6, occurs only when applications utilizing the QUIC protocol uncommonly invoke this function from the `client_hello_cb` callback with an unknown cipher ID. This specific usage pattern and the resulting Denial of Service limit the overall impact in the Red Hat context.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15468"
},
{
"category": "external",
"summary": "RHBZ#2430377",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430377"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15468",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15468"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15468",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15468"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via NULL pointer dereference in QUIC protocol handling"
},
{
"cve": "CVE-2025-15469",
"cwe": {
"id": "CWE-1284",
"name": "Improper Validation of Specified Quantity in Input"
},
"discovery_date": "2026-01-16T14:21:51.411000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430378"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in openssl. When a user signs or verifies files larger than 16MB using the `openssl dgst` command with one-shot algorithms, the tool silently truncates the input to 16MB. This creates an integrity gap, allowing trailing data beyond the initial 16MB to be modified without detection because it remains unauthenticated. This vulnerability primarily impacts workflows that both sign and verify files using the affected `openssl dgst` command.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Data integrity bypass in `openssl dgst` command due to silent truncation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat. The flaw affects the `openssl dgst` command-line tool when used with one-shot algorithms (such as Ed25519, Ed448, or ML-DSA) on files larger than 16MB. Impact is limited as it requires both signing and verification to be performed using the affected command, and verifiers using library APIs are not impacted.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15469"
},
{
"category": "external",
"summary": "RHBZ#2430378",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430378"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15469",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15469"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid using the `openssl dgst` command with one-shot algorithms (such as Ed25519, Ed448, or ML-DSA) for files larger than 16MB. Instead, utilize streaming digest algorithms with `openssl dgst` or use library APIs for signing and verification, as these are not affected by the truncation vulnerability. Users should ensure that input files for one-shot signing/verification with `openssl dgst` do not exceed 16MB.",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Data integrity bypass in `openssl dgst` command due to silent truncation"
},
{
"cve": "CVE-2025-66199",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-16T14:21:51.739000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430379"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit this vulnerability by sending a specially crafted CompressedCertificate message during the TLS 1.3 handshake. This can cause excessive per-connection memory allocations, leading to resource exhaustion and a Denial of Service (DoS) for affected clients and servers. This issue occurs when TLS 1.3 certificate compression is enabled and negotiated.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service due to excessive memory allocation in TLS 1.3 certificate compression",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. The flaw in OpenSSL 3.3, 3.4, 3.5, and 3.6 allows an attacker to cause excessive memory allocation during TLS 1.3 handshake with certificate compression, potentially leading to a Denial of Service. This affects both clients and servers in mutual TLS scenarios where certificate compression is negotiated. Servers not requesting client certificates are not vulnerable to client-initiated attacks.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66199"
},
{
"category": "external",
"summary": "RHBZ#2430379",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430379"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66199",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66199"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66199",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66199"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable the reception of compressed certificates by setting the SSL_OP_NO_RX_CERTIFICATE_COMPRESSION option in OpenSSL configurations. This will prevent the vulnerable code path from being exercised.",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service due to excessive memory allocation in TLS 1.3 certificate compression"
},
{
"cve": "CVE-2025-68160",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-01-16T14:21:52.088000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430380"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This vulnerability involves an out-of-bounds write in the line-buffering BIO filter, which can lead to memory corruption. While exploitation is unlikely to be under direct attacker control, a successful attack could cause an application to crash, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service due to out-of-bounds write in BIO filter",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat. The `BIO_f_linebuffer` filter, where this heap out-of-bounds write occurs, is not used by default in TLS/SSL data paths within Red Hat products. Exploitation requires third-party applications to explicitly use this filter with a BIO chain that can short-write and process large, newline-free data influenced by an attacker, which is an unlikely scenario under attacker control. Red Hat FIPS modules are not affected by this issue.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68160"
},
{
"category": "external",
"summary": "RHBZ#2430380",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430380"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68160",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68160"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68160",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68160"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service due to out-of-bounds write in BIO filter"
},
{
"cve": "CVE-2025-69418",
"cwe": {
"id": "CWE-325",
"name": "Missing Cryptographic Step"
},
"discovery_date": "2026-01-16T14:21:52.438000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430381"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When applications directly call the low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in a single call on hardware-accelerated builds, the trailing 1-15 bytes of a message may be exposed in cleartext. These exposed bytes are not covered by the authentication tag, allowing an attacker to read or tamper with them without detection.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Information disclosure and data tampering via specific low-level OCB encryption/decryption calls",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. In the Red Hat context, impact is limited because typical OpenSSL consumers using higher-level EVP APIs are not affected. The flaw only manifests when applications directly call low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in hardware-accelerated builds. Additionally, TLS does not use OCB ciphersuites, and FIPS modules are not affected.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69418"
},
{
"category": "external",
"summary": "RHBZ#2430381",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430381"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69418"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Information disclosure and data tampering via specific low-level OCB encryption/decryption calls"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
},
{
"cve": "CVE-2025-69420",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"discovery_date": "2026-01-16T14:21:53.497000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430388"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A type confusion vulnerability exists in the TimeStamp Response verification code, where an ASN1_TYPE union member is accessed without proper type validation. A remote attacker can exploit this by providing a malformed TimeStamp Response to an application that verifies timestamp responses. This can lead to an invalid or NULL pointer dereference, resulting in a Denial of Service (DoS) due to an application crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via malformed TimeStamp Response",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. A type confusion flaw in the TimeStamp Response verification code can lead to a Denial of Service when processing a specially crafted TimeStamp Response. Exploitation requires an application to call `TS_RESP_verify_response()` with a malformed response, and the TimeStamp protocol (RFC 3161) is not widely used. Red Hat FIPS modules are not affected as the TimeStamp Response implementation is outside the FIPS module boundary.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69420"
},
{
"category": "external",
"summary": "RHBZ#2430388",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430388"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69420",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69420"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69420",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69420"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via malformed TimeStamp Response"
},
{
"cve": "CVE-2025-69421",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-01-16T14:21:53.845000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430387"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This vulnerability allows a remote attacker to trigger a Denial of Service (DoS) by providing a specially crafted, malformed PKCS#12 file to an application that processes it. The flaw occurs due to a NULL pointer dereference in the PKCS12_item_decrypt_d2i_ex() function when handling the malformed file, leading to an application crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via malformed PKCS#12 file processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat because it requires an application to process a specially crafted, malformed PKCS#12 file, leading to a Denial of Service. The vulnerability is limited to a crash and cannot be escalated to achieve code execution or memory disclosure. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69421"
},
{
"category": "external",
"summary": "RHBZ#2430387",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430387"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69421",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69421"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69421",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69421"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"category": "workaround",
"details": "Restrict applications from processing untrusted or externally supplied PKCS#12 files, ensuring certificates are sourced only from trusted internal authorities. Additionally, configure critical background services with automatic restart policies (such as systemd\u0027s Restart=on-failure) to quickly restore availability if a denial-of-service crash occurs.",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via malformed PKCS#12 file processing"
},
{
"cve": "CVE-2026-22795",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"discovery_date": "2026-01-16T14:21:53.146000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430389"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a Denial of Service (DoS) by tricking a user or application into processing a maliciously crafted PKCS#12 (Personal Information Exchange Syntax Standard) file. The vulnerability leads to an invalid or NULL pointer dereference, resulting in an application crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service due to type confusion in PKCS#12 file processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. An application processing a maliciously crafted PKCS#12 file can be caused to dereference an invalid or NULL pointer, resulting in a Denial of Service. In the Red Hat context, impact is limited as PKCS#12 files are typically used for trusted private keys and are not commonly accepted from untrusted sources.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22795"
},
{
"category": "external",
"summary": "RHBZ#2430389",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430389"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22795",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22795"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22795",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22795"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service due to type confusion in PKCS#12 file processing"
},
{
"cve": "CVE-2026-22796",
"cwe": {
"id": "CWE-1287",
"name": "Improper Validation of Specified Type of Input"
},
"discovery_date": "2026-01-16T14:43:21.598000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430390"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a denial of service (DoS) by providing specially crafted PKCS#7 data to an application that performs signature verification. The vulnerability occurs because the application accesses an ASN1_TYPE union member without proper type validation, leading to an invalid or NULL pointer dereference and a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via type confusion in PKCS#7 signature verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. A type confusion flaw in the legacy PKCS#7 API can lead to a Denial of Service when processing specially crafted PKCS#7 data. Exploitation requires an application to perform signature verification of malformed PKCS#7 data. Red Hat products utilizing the FIPS module are not affected as the PKCS#7 parsing is outside the module boundary.",
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22796"
},
{
"category": "external",
"summary": "RHBZ#2430390",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430390"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22796",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22796"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22796",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22796"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T09:06:06+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1472"
},
{
"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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.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": [
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-devel-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.aarch64",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.ppc64le",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.s390x",
"AppStream-10.1.Z:openssl-perl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.src",
"BaseOS-10.1.Z:openssl-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debuginfo-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-debugsource-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-1:3.5.1-7.el10_1.x86_64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.aarch64",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.ppc64le",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.s390x",
"BaseOS-10.1.Z:openssl-libs-debuginfo-1:3.5.1-7.el10_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via type confusion in PKCS#7 signature verification"
}
]
}
RHSA-2026:1473
Vulnerability from csaf_redhat - Published: 2026-01-28 10:08 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. When an application processes a maliciously crafted PKCS#12 file, an attacker can exploit a stack buffer overflow or a NULL pointer dereference. This can lead to a denial of service (DoS) by crashing the application, and in some cases, may enable arbitrary code execution. The vulnerability arises from the lack of validation for PBKDF2 salt and keylength parameters within the PKCS#12 file.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in openssl. A remote attacker could trigger a NULL pointer dereference by sending an unknown or unsupported cipher ID during the client hello callback in applications using the QUIC (Quick UDP Internet Connections) protocol. This vulnerability, occurring when the SSL_CIPHER_find() function is called in this specific context, leads to an abnormal termination of the running process, causing a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in openssl. When a user signs or verifies files larger than 16MB using the `openssl dgst` command with one-shot algorithms, the tool silently truncates the input to 16MB. This creates an integrity gap, allowing trailing data beyond the initial 16MB to be modified without detection because it remains unauthenticated. This vulnerability primarily impacts workflows that both sign and verify files using the affected `openssl dgst` command.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A remote attacker can exploit this vulnerability by sending a specially crafted CompressedCertificate message during the TLS 1.3 handshake. This can cause excessive per-connection memory allocations, leading to resource exhaustion and a Denial of Service (DoS) for affected clients and servers. This issue occurs when TLS 1.3 certificate compression is enabled and negotiated.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This vulnerability involves an out-of-bounds write in the line-buffering BIO filter, which can lead to memory corruption. While exploitation is unlikely to be under direct attacker control, a successful attack could cause an application to crash, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. When applications directly call the low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in a single call on hardware-accelerated builds, the trailing 1-15 bytes of a message may be exposed in cleartext. These exposed bytes are not covered by the authentication tag, allowing an attacker to read or tamper with them without detection.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. A type confusion vulnerability exists in the TimeStamp Response verification code, where an ASN1_TYPE union member is accessed without proper type validation. A remote attacker can exploit this by providing a malformed TimeStamp Response to an application that verifies timestamp responses. This can lead to an invalid or NULL pointer dereference, resulting in a Denial of Service (DoS) due to an application crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This vulnerability allows a remote attacker to trigger a Denial of Service (DoS) by providing a specially crafted, malformed PKCS#12 file to an application that processes it. The flaw occurs due to a NULL pointer dereference in the PKCS12_item_decrypt_d2i_ex() function when handling the malformed file, leading to an application crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a Denial of Service (DoS) by tricking a user or application into processing a maliciously crafted PKCS#12 (Personal Information Exchange Syntax Standard) file. The vulnerability leads to an invalid or NULL pointer dereference, resulting in an application crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a denial of service (DoS) by providing specially crafted PKCS#7 data to an application that performs signature verification. The vulnerability occurs because the application accesses an ASN1_TYPE union member without proper type validation, leading to an invalid or NULL pointer dereference and a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 9.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file (CVE-2025-11187)\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Denial of Service via NULL pointer dereference in QUIC protocol handling (CVE-2025-15468)\n\n* openssl: OpenSSL: Data integrity bypass in `openssl dgst` command due to silent truncation (CVE-2025-15469)\n\n* openssl: OpenSSL: Denial of Service due to excessive memory allocation in TLS 1.3 certificate compression (CVE-2025-66199)\n\n* openssl: OpenSSL: Denial of Service due to out-of-bounds write in BIO filter (CVE-2025-68160)\n\n* openssl: OpenSSL: Information disclosure and data tampering via specific low-level OCB encryption/decryption calls (CVE-2025-69418)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\n* openssl: OpenSSL: Denial of Service via malformed PKCS#12 file processing (CVE-2025-69421)\n\n* openssl: OpenSSL: Denial of Service via malformed TimeStamp Response (CVE-2025-69420)\n\n* openssl: OpenSSL: Denial of Service due to type confusion in PKCS#12 file processing (CVE-2026-22795)\n\n* openssl: OpenSSL: Denial of Service via type confusion in PKCS#7 signature verification (CVE-2026-22796)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1473",
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430375"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430377",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430377"
},
{
"category": "external",
"summary": "2430378",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430378"
},
{
"category": "external",
"summary": "2430379",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430379"
},
{
"category": "external",
"summary": "2430380",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430380"
},
{
"category": "external",
"summary": "2430381",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430381"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "2430387",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430387"
},
{
"category": "external",
"summary": "2430388",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430388"
},
{
"category": "external",
"summary": "2430389",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430389"
},
{
"category": "external",
"summary": "2430390",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430390"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1473.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:38+00:00",
"generator": {
"date": "2026-07-27T13:20:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1473",
"initial_release_date": "2026-01-28T10:08:56+00:00",
"revision_history": [
{
"date": "2026-01-28T10:08:56+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-28T10:08:56+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:9::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-devel-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-devel-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-perl-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-perl-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el9_7.aarch64",
"product": {
"name": "openssl-libs-1:3.5.1-7.el9_7.aarch64",
"product_id": "openssl-libs-1:3.5.1-7.el9_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el9_7?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"product": {
"name": "openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"product_id": "openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el9_7?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el9_7.i686",
"product": {
"name": "openssl-devel-1:3.5.1-7.el9_7.i686",
"product_id": "openssl-devel-1:3.5.1-7.el9_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el9_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el9_7.i686",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.i686",
"product_id": "openssl-debugsource-1:3.5.1-7.el9_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el9_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"product_id": "openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el9_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el9_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el9_7.i686",
"product": {
"name": "openssl-libs-1:3.5.1-7.el9_7.i686",
"product_id": "openssl-libs-1:3.5.1-7.el9_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el9_7?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-devel-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-devel-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-perl-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-perl-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el9_7.x86_64",
"product": {
"name": "openssl-libs-1:3.5.1-7.el9_7.x86_64",
"product_id": "openssl-libs-1:3.5.1-7.el9_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el9_7?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-devel-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-devel-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-perl-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-perl-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.5.1-7.el9_7.s390x",
"product": {
"name": "openssl-libs-1:3.5.1-7.el9_7.s390x",
"product_id": "openssl-libs-1:3.5.1-7.el9_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.5.1-7.el9_7?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.5.1-7.el9_7.src",
"product": {
"name": "openssl-1:3.5.1-7.el9_7.src",
"product_id": "openssl-1:3.5.1-7.el9_7.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.5.1-7.el9_7?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-devel-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-devel-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-devel-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-devel-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-perl-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-perl-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-perl-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "AppStream-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el9_7.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src"
},
"product_reference": "openssl-1:3.5.1-7.el9_7.src",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-libs-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-libs-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-libs-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-libs-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"relates_to_product_reference": "BaseOS-9.7.0.Z.MAIN"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-11187",
"cwe": {
"id": "CWE-233",
"name": "Improper Handling of Parameters"
},
"discovery_date": "2026-01-16T14:21:50.559000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430375"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When an application processes a maliciously crafted PKCS#12 file, an attacker can exploit a stack buffer overflow or a NULL pointer dereference. This can lead to a denial of service (DoS) by crashing the application, and in some cases, may enable arbitrary code execution. The vulnerability arises from the lack of validation for PBKDF2 salt and keylength parameters within the PKCS#12 file.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. It affects OpenSSL versions 3.6, 3.5, and 3.4, where improper validation of PBMAC1 parameters in PKCS#12 MAC verification can lead to a stack buffer overflow or NULL pointer dereference. Exploitation requires an application to process a maliciously crafted PKCS#12 file, which is uncommon as these files are typically trusted. OpenSSL versions 3.3, 3.0, 1.1.1, and 1.0.2 are not affected as they do not support PBMAC1 in PKCS#12.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-11187"
},
{
"category": "external",
"summary": "RHBZ#2430375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430375"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-11187",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11187"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-11187",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-11187"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted PKCS#12 files. Applications should only handle PKCS#12 files from trusted sources, as these files are typically used for storing private keys and are expected to be secure.",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file"
},
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-15468",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-01-16T14:21:51.062000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430377"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in openssl. A remote attacker could trigger a NULL pointer dereference by sending an unknown or unsupported cipher ID during the client hello callback in applications using the QUIC (Quick UDP Internet Connections) protocol. This vulnerability, occurring when the SSL_CIPHER_find() function is called in this specific context, leads to an abnormal termination of the running process, causing a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via NULL pointer dereference in QUIC protocol handling",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat. The NULL pointer dereference in the `SSL_CIPHER_find()` function, affecting OpenSSL versions 3.3, 3.4, 3.5, and 3.6, occurs only when applications utilizing the QUIC protocol uncommonly invoke this function from the `client_hello_cb` callback with an unknown cipher ID. This specific usage pattern and the resulting Denial of Service limit the overall impact in the Red Hat context.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15468"
},
{
"category": "external",
"summary": "RHBZ#2430377",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430377"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15468",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15468"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15468",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15468"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via NULL pointer dereference in QUIC protocol handling"
},
{
"cve": "CVE-2025-15469",
"cwe": {
"id": "CWE-1284",
"name": "Improper Validation of Specified Quantity in Input"
},
"discovery_date": "2026-01-16T14:21:51.411000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430378"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in openssl. When a user signs or verifies files larger than 16MB using the `openssl dgst` command with one-shot algorithms, the tool silently truncates the input to 16MB. This creates an integrity gap, allowing trailing data beyond the initial 16MB to be modified without detection because it remains unauthenticated. This vulnerability primarily impacts workflows that both sign and verify files using the affected `openssl dgst` command.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Data integrity bypass in `openssl dgst` command due to silent truncation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat. The flaw affects the `openssl dgst` command-line tool when used with one-shot algorithms (such as Ed25519, Ed448, or ML-DSA) on files larger than 16MB. Impact is limited as it requires both signing and verification to be performed using the affected command, and verifiers using library APIs are not impacted.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15469"
},
{
"category": "external",
"summary": "RHBZ#2430378",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430378"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15469",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15469"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid using the `openssl dgst` command with one-shot algorithms (such as Ed25519, Ed448, or ML-DSA) for files larger than 16MB. Instead, utilize streaming digest algorithms with `openssl dgst` or use library APIs for signing and verification, as these are not affected by the truncation vulnerability. Users should ensure that input files for one-shot signing/verification with `openssl dgst` do not exceed 16MB.",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Data integrity bypass in `openssl dgst` command due to silent truncation"
},
{
"cve": "CVE-2025-66199",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-16T14:21:51.739000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430379"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit this vulnerability by sending a specially crafted CompressedCertificate message during the TLS 1.3 handshake. This can cause excessive per-connection memory allocations, leading to resource exhaustion and a Denial of Service (DoS) for affected clients and servers. This issue occurs when TLS 1.3 certificate compression is enabled and negotiated.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service due to excessive memory allocation in TLS 1.3 certificate compression",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. The flaw in OpenSSL 3.3, 3.4, 3.5, and 3.6 allows an attacker to cause excessive memory allocation during TLS 1.3 handshake with certificate compression, potentially leading to a Denial of Service. This affects both clients and servers in mutual TLS scenarios where certificate compression is negotiated. Servers not requesting client certificates are not vulnerable to client-initiated attacks.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66199"
},
{
"category": "external",
"summary": "RHBZ#2430379",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430379"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66199",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66199"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66199",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66199"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable the reception of compressed certificates by setting the SSL_OP_NO_RX_CERTIFICATE_COMPRESSION option in OpenSSL configurations. This will prevent the vulnerable code path from being exercised.",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service due to excessive memory allocation in TLS 1.3 certificate compression"
},
{
"cve": "CVE-2025-68160",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-01-16T14:21:52.088000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430380"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This vulnerability involves an out-of-bounds write in the line-buffering BIO filter, which can lead to memory corruption. While exploitation is unlikely to be under direct attacker control, a successful attack could cause an application to crash, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service due to out-of-bounds write in BIO filter",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat. The `BIO_f_linebuffer` filter, where this heap out-of-bounds write occurs, is not used by default in TLS/SSL data paths within Red Hat products. Exploitation requires third-party applications to explicitly use this filter with a BIO chain that can short-write and process large, newline-free data influenced by an attacker, which is an unlikely scenario under attacker control. Red Hat FIPS modules are not affected by this issue.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68160"
},
{
"category": "external",
"summary": "RHBZ#2430380",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430380"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68160",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68160"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68160",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68160"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service due to out-of-bounds write in BIO filter"
},
{
"cve": "CVE-2025-69418",
"cwe": {
"id": "CWE-325",
"name": "Missing Cryptographic Step"
},
"discovery_date": "2026-01-16T14:21:52.438000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430381"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When applications directly call the low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in a single call on hardware-accelerated builds, the trailing 1-15 bytes of a message may be exposed in cleartext. These exposed bytes are not covered by the authentication tag, allowing an attacker to read or tamper with them without detection.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Information disclosure and data tampering via specific low-level OCB encryption/decryption calls",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. In the Red Hat context, impact is limited because typical OpenSSL consumers using higher-level EVP APIs are not affected. The flaw only manifests when applications directly call low-level CRYPTO_ocb128_encrypt() or CRYPTO_ocb128_decrypt() functions with non-block-aligned lengths in hardware-accelerated builds. Additionally, TLS does not use OCB ciphersuites, and FIPS modules are not affected.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69418"
},
{
"category": "external",
"summary": "RHBZ#2430381",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430381"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69418"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Information disclosure and data tampering via specific low-level OCB encryption/decryption calls"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
},
{
"cve": "CVE-2025-69420",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"discovery_date": "2026-01-16T14:21:53.497000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430388"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A type confusion vulnerability exists in the TimeStamp Response verification code, where an ASN1_TYPE union member is accessed without proper type validation. A remote attacker can exploit this by providing a malformed TimeStamp Response to an application that verifies timestamp responses. This can lead to an invalid or NULL pointer dereference, resulting in a Denial of Service (DoS) due to an application crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via malformed TimeStamp Response",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. A type confusion flaw in the TimeStamp Response verification code can lead to a Denial of Service when processing a specially crafted TimeStamp Response. Exploitation requires an application to call `TS_RESP_verify_response()` with a malformed response, and the TimeStamp protocol (RFC 3161) is not widely used. Red Hat FIPS modules are not affected as the TimeStamp Response implementation is outside the FIPS module boundary.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69420"
},
{
"category": "external",
"summary": "RHBZ#2430388",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430388"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69420",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69420"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69420",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69420"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via malformed TimeStamp Response"
},
{
"cve": "CVE-2025-69421",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-01-16T14:21:53.845000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430387"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This vulnerability allows a remote attacker to trigger a Denial of Service (DoS) by providing a specially crafted, malformed PKCS#12 file to an application that processes it. The flaw occurs due to a NULL pointer dereference in the PKCS12_item_decrypt_d2i_ex() function when handling the malformed file, leading to an application crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via malformed PKCS#12 file processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat because it requires an application to process a specially crafted, malformed PKCS#12 file, leading to a Denial of Service. The vulnerability is limited to a crash and cannot be escalated to achieve code execution or memory disclosure. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the OpenSSL FIPS module boundary.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69421"
},
{
"category": "external",
"summary": "RHBZ#2430387",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430387"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69421",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69421"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69421",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69421"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"category": "workaround",
"details": "Restrict applications from processing untrusted or externally supplied PKCS#12 files, ensuring certificates are sourced only from trusted internal authorities. Additionally, configure critical background services with automatic restart policies (such as systemd\u0027s Restart=on-failure) to quickly restore availability if a denial-of-service crash occurs.",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via malformed PKCS#12 file processing"
},
{
"cve": "CVE-2026-22795",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"discovery_date": "2026-01-16T14:21:53.146000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430389"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a Denial of Service (DoS) by tricking a user or application into processing a maliciously crafted PKCS#12 (Personal Information Exchange Syntax Standard) file. The vulnerability leads to an invalid or NULL pointer dereference, resulting in an application crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service due to type confusion in PKCS#12 file processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. An application processing a maliciously crafted PKCS#12 file can be caused to dereference an invalid or NULL pointer, resulting in a Denial of Service. In the Red Hat context, impact is limited as PKCS#12 files are typically used for trusted private keys and are not commonly accepted from untrusted sources.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22795"
},
{
"category": "external",
"summary": "RHBZ#2430389",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430389"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22795",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22795"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22795",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22795"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service due to type confusion in PKCS#12 file processing"
},
{
"cve": "CVE-2026-22796",
"cwe": {
"id": "CWE-1287",
"name": "Improper Validation of Specified Type of Input"
},
"discovery_date": "2026-01-16T14:43:21.598000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430390"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. This type confusion vulnerability allows a remote attacker to cause a denial of service (DoS) by providing specially crafted PKCS#7 data to an application that performs signature verification. The vulnerability occurs because the application accesses an ASN1_TYPE union member without proper type validation, leading to an invalid or NULL pointer dereference and a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Denial of Service via type confusion in PKCS#7 signature verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low for Red Hat products. A type confusion flaw in the legacy PKCS#7 API can lead to a Denial of Service when processing specially crafted PKCS#7 data. Exploitation requires an application to perform signature verification of malformed PKCS#7 data. Red Hat products utilizing the FIPS module are not affected as the PKCS#7 parsing is outside the module boundary.",
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22796"
},
{
"category": "external",
"summary": "RHBZ#2430390",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430390"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22796",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22796"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22796",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22796"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T10:08:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1473"
},
{
"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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.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": [
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-devel-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.aarch64",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.ppc64le",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.s390x",
"AppStream-9.7.0.Z.MAIN:openssl-perl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.src",
"BaseOS-9.7.0.Z.MAIN:openssl-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debuginfo-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-debugsource-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-1:3.5.1-7.el9_7.x86_64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.aarch64",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.i686",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.ppc64le",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.s390x",
"BaseOS-9.7.0.Z.MAIN:openssl-libs-debuginfo-1:3.5.1-7.el9_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "openssl: OpenSSL: Denial of Service via type confusion in PKCS#7 signature verification"
}
]
}
RHSA-2026:14773
Vulnerability from csaf_redhat - Published: 2026-05-13 14:17 - Updated: 2026-07-25 23:55A Use-After-Free vulnerability has been discovered in GRUB's gettext module. This flaw stems from a programming error where the gettext command remains registered in memory after its module is unloaded. An attacker can exploit this condition by invoking the orphaned command, causing the application to access a memory location that is no longer valid. An attacker could exploit this vulnerability to cause grub to crash, leading to a Denial of Service. Possible data integrity or confidentiality compromise is not discarded.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the OpenSSH GSSAPI (Generic Security Service Application Program Interface) delta patches, as included in various Linux distributions. A remote attacker could exploit this by sending an unexpected GSSAPI message type during the key exchange process. This occurs because the `sshpkt_disconnect()` function, when called on an error, does not properly terminate the process, leading to the continued execution of the program with uninitialized connection variables. Accessing these uninitialized variables can lead to undefined behavior, potentially resulting in information disclosure or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was identified in the RAR5 archive decompression logic of the libarchive library, specifically within the archive_read_data() processing path. When a specially crafted RAR5 archive is processed, the decompression routine may enter a state where internal logic prevents forward progress. This condition results in an infinite loop that continuously consumes CPU resources. Because the archive passes checksum validation and appears structurally valid, affected applications cannot detect the issue before processing. This can allow attackers to cause persistent denial-of-service conditions in services that automatically process archives.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libarchive. This heap out-of-bounds read vulnerability exists in the RAR archive processing logic due to improper validation of the LZSS sliding window size after transitions between compression methods. A remote attacker can exploit this by providing a specially crafted RAR archive, leading to the disclosure of sensitive heap memory information without requiring authentication or user interaction.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libarchive. On 32-bit systems, an integer overflow vulnerability exists in the zisofs block pointer allocation logic. A remote attacker can exploit this by providing a specially crafted ISO9660 image, which can lead to a heap buffer overflow. This could potentially allow for arbitrary code execution on the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A heap based buffer overflow flaw has been discovered in LibPNG. Prior to version 1.6.55, an out-of-bounds read vulnerability exists in the png_set_quantize() API function. When the function is called with no histogram and the number of colors in the palette is more than twice the maximum supported by the user's display, certain palettes will cause the function to enter into an infinite loop that reads past the end of an internal heap-allocated buffer. The images that trigger this vulnerability are valid per the PNG specification.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim, an open source, command line text editor. This heap buffer overflow vulnerability exists in the tag file resolution logic when processing the 'helpfile' option. A local user could exploit this by providing a specially crafted 'helpfile' option value, leading to a heap buffer overflow. This could result in arbitrary code execution or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in nghttp2. Due to missing internal state validation, the library continues to process incoming data even after a session has been terminated. A remote attacker could exploit this by sending a specially crafted HTTP/2 frame, leading to an assertion failure and a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
|
A flaw was found in Vim, an open-source command-line text editor. Specifically, an operating system (OS) command injection vulnerability exists in the `netrw` standard plugin. A remote attacker could exploit this by tricking a user into opening a specially crafted URL, such as one using the `scp://` protocol handler. Successful exploitation allows the attacker to execute arbitrary shell commands with the same privileges as the Vim process, leading to potential system compromise.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. This vulnerability, a heap-buffer-overflow and a segmentation fault, exists in the swap file recovery logic. A local attacker could exploit this by providing a specially crafted swap file. This could lead to a denial of service (DoS) or potentially information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel's algif_aead cryptographic algorithm interface. An incorrect in-place operation causes source and destination data mappings to differ during cryptographic processing. A low-privileged local attacker can exploit this flaw to corrupt the contents of sensitive system files and escalate to root privileges.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. By including a newline character in a pattern passed to Vim's glob() function, an attacker may be able to execute arbitrary shell commands. This command injection vulnerability allows for arbitrary code execution, depending on the user's shell settings.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0 | — |
Vendor Fix
fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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": "Red Hat OpenShift Container Platform release 4.15.64 is now available with\nupdates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container\nPlatform 4.15.\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing\nKubernetes application platform solution designed for on-premise or private\ncloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container\nPlatform 4.15.64. See the following advisory for the RPM packages for this\nrelease:\n\nhttps://access.redhat.com/errata/RHBA-2026:14772\n\nSpace precludes documenting all of the container images in this advisory.\nSee the following Release Notes documentation, which will be updated\nshortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nSecurity Fix(es):\n\n* openssh: OpenSSH GSSAPI: Information disclosure or denial of service due\nto uninitialized variables (CVE-2026-3497)\n* libarchive: Infinite Loop Denial of Service in RAR5 Decompression via\narchive_read_data() in libarchive (CVE-2026-4111)\n* libarchive: libarchive: Information disclosure via heap out-of-bounds\nread in RAR archive processing (CVE-2026-4424)\n* libpng: LIBPNG has a heap buffer overflow in png_set_quantize\n(CVE-2026-25646)\n* nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after\nsession termination (CVE-2026-27135)\n* vim: Vim: Arbitrary code execution via command injection in glob()\nfunction (CVE-2026-33412)\n* grub2: Missing unregister call for gettext command may lead to\nuse-after-free (CVE-2025-61662)\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in\nPKCS#12 processing (CVE-2025-69419)\n* libarchive: libarchive: Arbitrary code execution via integer overflow in\nISO9660 image processing (CVE-2026-5121)\n* vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing\n(CVE-2026-25749)\n* vim: Vim: Arbitrary code execution via OS command injection in the netrw\nplugin (CVE-2026-28417)\n* vim: Vim: Denial of service and information disclosure via crafted swap\nfile (CVE-2026-28421)\n* kernel: crypto: algif_aead - Revert to operating out-of-place (CVE-2026-31431)\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, acknowledgments, and other related information, refer to the CVE\npage(s) listed in the References section.\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"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:14773",
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2414683",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2414683"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "2437843",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437843"
},
{
"category": "external",
"summary": "2438542",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2438542"
},
{
"category": "external",
"summary": "2443455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443455"
},
{
"category": "external",
"summary": "2443474",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443474"
},
{
"category": "external",
"summary": "2446453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446453"
},
{
"category": "external",
"summary": "2447085",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447085"
},
{
"category": "external",
"summary": "2448754",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448754"
},
{
"category": "external",
"summary": "2449006",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449006"
},
{
"category": "external",
"summary": "2450907",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450907"
},
{
"category": "external",
"summary": "2452945",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452945"
},
{
"category": "external",
"summary": "2460538",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460538"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_14773.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.15.64 bug fix and security update",
"tracking": {
"current_release_date": "2026-07-25T23:55:31+00:00",
"generator": {
"date": "2026-07-25T23:55:31+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:14773",
"initial_release_date": "2026-05-13T14:17:24+00:00",
"revision_history": [
{
"date": "2026-05-13T14:17:24+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-13T14:17:24+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-25T23:55:31+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.15",
"product": {
"name": "Red Hat OpenShift Container Platform 4.15",
"product_id": "9Base-RHOSE-4.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.15::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Enterprise"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-aarch64-415.92.202605060220-0",
"product": {
"name": "rhcos-aarch64-415.92.202605060220-0",
"product_id": "rhcos-aarch64-415.92.202605060220-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@415.92.202605060220?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-ppc64le-415.92.202605060220-0",
"product": {
"name": "rhcos-ppc64le-415.92.202605060220-0",
"product_id": "rhcos-ppc64le-415.92.202605060220-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@415.92.202605060220?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-s390x-415.92.202605060220-0",
"product": {
"name": "rhcos-s390x-415.92.202605060220-0",
"product_id": "rhcos-s390x-415.92.202605060220-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@415.92.202605060220?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-x86_64-415.92.202605060220-0",
"product": {
"name": "rhcos-x86_64-415.92.202605060220-0",
"product_id": "rhcos-x86_64-415.92.202605060220-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@415.92.202605060220?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-aarch64-415.92.202605060220-0 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0"
},
"product_reference": "rhcos-aarch64-415.92.202605060220-0",
"relates_to_product_reference": "9Base-RHOSE-4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-ppc64le-415.92.202605060220-0 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0"
},
"product_reference": "rhcos-ppc64le-415.92.202605060220-0",
"relates_to_product_reference": "9Base-RHOSE-4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-s390x-415.92.202605060220-0 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0"
},
"product_reference": "rhcos-s390x-415.92.202605060220-0",
"relates_to_product_reference": "9Base-RHOSE-4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-x86_64-415.92.202605060220-0 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
},
"product_reference": "rhcos-x86_64-415.92.202605060220-0",
"relates_to_product_reference": "9Base-RHOSE-4.15"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61662",
"discovery_date": "2025-11-12T21:18:21.069000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2414683"
}
],
"notes": [
{
"category": "description",
"text": "A Use-After-Free vulnerability has been discovered in GRUB\u0027s gettext module. This flaw stems from a programming error where the gettext command remains registered in memory after its module is unloaded. An attacker can exploit this condition by invoking the orphaned command, causing the application to access a memory location that is no longer valid. An attacker could exploit this vulnerability to cause grub to crash, leading to a Denial of Service. Possible data integrity or confidentiality compromise is not discarded.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "grub2: Missing unregister call for gettext command may lead to use-after-free",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability has been rated as have the impact of Moderate by the Red Hat Product Security team. This decision was made based in the fact an attacker needs local or physical access to the machine, to execute the gettext command after it was unloaded. Additionally the most likely outcome from an successful attack is a Denial of Crash by leading the grub2 to crash.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61662"
},
{
"category": "external",
"summary": "RHBZ#2414683",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2414683"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61662",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61662"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61662",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61662"
},
{
"category": "external",
"summary": "https://lists.gnu.org/archive/html/grub-devel/2025-11/msg00155.html",
"url": "https://lists.gnu.org/archive/html/grub-devel/2025-11/msg00155.html"
}
],
"release_date": "2025-11-18T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "workaround",
"details": "There\u0027s no known mitigation available for this vulnerability.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "grub2: Missing unregister call for gettext command may lead to use-after-free"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
},
{
"cve": "CVE-2026-3497",
"cwe": {
"id": "CWE-824",
"name": "Access of Uninitialized Pointer"
},
"discovery_date": "2026-03-12T19:01:37.007806+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447085"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the OpenSSH GSSAPI (Generic Security Service Application Program Interface) delta patches, as included in various Linux distributions. A remote attacker could exploit this by sending an unexpected GSSAPI message type during the key exchange process. This occurs because the `sshpkt_disconnect()` function, when called on an error, does not properly terminate the process, leading to the continued execution of the program with uninitialized connection variables. Accessing these uninitialized variables can lead to undefined behavior, potentially resulting in information disclosure or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssh: OpenSSH GSSAPI: Information disclosure or denial of service due to uninitialized variables",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This vulnerability affects the OpenSSH GSSAPI delta as implemented in Red Hat Enterprise Linux and OpenShift Container Platform. An unauthenticated attacker could send a specially crafted GSSAPI message during key exchange, leading to the use of uninitialized variables and potentially undefined behavior. The severity of the impact is dependent on compiler hardening configurations.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-3497"
},
{
"category": "external",
"summary": "RHBZ#2447085",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447085"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-3497",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-3497"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-3497",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://ubuntu.com/security/CVE-2026-3497",
"url": "https://ubuntu.com/security/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/03/12/3",
"url": "https://www.openwall.com/lists/oss-security/2026/03/12/3"
}
],
"release_date": "2026-03-12T18:27:44.917000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable GSSAPI key exchange in the OpenSSH server configuration. This prevents the server from processing GSSAPI messages, eliminating the vulnerability\u0027s attack surface.\n\nEdit `/etc/ssh/sshd_config` and add or modify the line:\n```\nGSSAPIKeyExchange no\n```\n\nAfter saving the changes, restart the `sshd` service for the mitigation to take effect. This action will prevent users from authenticating via GSSAPI.\n\n```\n# systemctl restart sshd\n```",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssh: OpenSSH GSSAPI: Information disclosure or denial of service due to uninitialized variables"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-4111",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"discovery_date": "2026-03-11T11:18:51.609000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446453"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was identified in the RAR5 archive decompression logic of the libarchive library, specifically within the archive_read_data() processing path. When a specially crafted RAR5 archive is processed, the decompression routine may enter a state where internal logic prevents forward progress. This condition results in an infinite loop that continuously consumes CPU resources. Because the archive passes checksum validation and appears structurally valid, affected applications cannot detect the issue before processing. This can allow attackers to cause persistent denial-of-service conditions in services that automatically process archives.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: Infinite Loop Denial of Service in RAR5 Decompression via archive_read_data() in libarchive",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The Red Hat Product Security team would likely assess the severity of this vulnerability as High because it allows remote attackers to cause a persistent denial-of-service condition using a small crafted archive file. Successful exploitation requires no authentication, no special configuration, and no user interaction in environments that automatically process uploaded archives. By repeatedly submitting malicious archives, an attacker can exhaust CPU resources or worker threads in services such as file upload systems, CI/CD pipelines, mail scanners, and content indexing services that rely on libarchive for archive extraction.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4111"
},
{
"category": "external",
"summary": "RHBZ#2446453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446453"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4111",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4111"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4111",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4111"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2877",
"url": "https://github.com/libarchive/libarchive/pull/2877"
}
],
"release_date": "2026-03-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libarchive: Infinite Loop Denial of Service in RAR5 Decompression via archive_read_data() in libarchive"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-4424",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-03-19T12:22:21.740000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449006"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libarchive. This heap out-of-bounds read vulnerability exists in the RAR archive processing logic due to improper validation of the LZSS sliding window size after transitions between compression methods. A remote attacker can exploit this by providing a specially crafted RAR archive, leading to the disclosure of sensitive heap memory information without requiring authentication or user interaction.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: libarchive: Information disclosure via heap out-of-bounds read in RAR archive processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This heap out-of-bounds read vulnerability in libarchive\u0027s RAR archive processing logic can lead to information disclosure. A remote attacker can exploit this flaw by providing a specially crafted RAR archive, potentially revealing sensitive heap memory information without requiring authentication or user interaction on systems that process untrusted archives.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4424"
},
{
"category": "external",
"summary": "RHBZ#2449006",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449006"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4424",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4424"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4424",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4424"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2898",
"url": "https://github.com/libarchive/libarchive/pull/2898"
}
],
"release_date": "2026-03-19T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libarchive: libarchive: Information disclosure via heap out-of-bounds read in RAR archive processing"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-5121",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-03-30T07:40:25.358335+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452945"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libarchive. On 32-bit systems, an integer overflow vulnerability exists in the zisofs block pointer allocation logic. A remote attacker can exploit this by providing a specially crafted ISO9660 image, which can lead to a heap buffer overflow. This could potentially allow for arbitrary code execution on the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: libarchive: Arbitrary code execution via integer overflow in ISO9660 image processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Important: An integer overflow flaw in `libarchive` on 32-bit systems can lead to a heap buffer overflow. This vulnerability occurs when processing a specially crafted ISO9660 image, allowing an attacker to potentially execute arbitrary code. Red Hat Enterprise Linux 64-bit systems are not affected by this flaw.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5121"
},
{
"category": "external",
"summary": "RHBZ#2452945",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452945"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5121",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5121"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-2vwv-vqpv-v8vc",
"url": "https://github.com/advisories/GHSA-2vwv-vqpv-v8vc"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2934",
"url": "https://github.com/libarchive/libarchive/pull/2934"
}
],
"release_date": "2026-03-30T07:44:15.222000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted ISO9660 images with applications that utilize `libarchive`. Users should only extract or read content from ISO images obtained from trusted sources.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libarchive: libarchive: Arbitrary code execution via integer overflow in ISO9660 image processing"
},
{
"cve": "CVE-2026-25646",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-02-10T18:01:28.232408+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2438542"
}
],
"notes": [
{
"category": "description",
"text": "A heap based buffer overflow flaw has been discovered in LibPNG. Prior to version 1.6.55, an out-of-bounds read vulnerability exists in the png_set_quantize() API function. When the function is called with no histogram and the number of colors in the palette is more than twice the maximum supported by the user\u0027s display, certain palettes will cause the function to enter into an infinite loop that reads past the end of an internal heap-allocated buffer. The images that trigger this vulnerability are valid per the PNG specification.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: LIBPNG has a heap buffer overflow in png_set_quantize",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For `java-17-openjdk-headless` and `java-21-openjdk-headless`, while the affected code is present in the bundled sources, it is not exercised by these headless packages.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25646"
},
{
"category": "external",
"summary": "RHBZ#2438542",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2438542"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25646",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25646"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25646",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25646"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/02/09/7",
"url": "http://www.openwall.com/lists/oss-security/2026/02/09/7"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/01d03b8453eb30ade759cd45c707e5a1c7277d88",
"url": "https://github.com/pnggroup/libpng/commit/01d03b8453eb30ade759cd45c707e5a1c7277d88"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-g8hp-mq4h-rqm3",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-g8hp-mq4h-rqm3"
}
],
"release_date": "2026-02-10T17:04:38.501000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libpng: LIBPNG has a heap buffer overflow in png_set_quantize"
},
{
"cve": "CVE-2026-25749",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-02-09T11:08:59.061581+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437843"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim, an open source, command line text editor. This heap buffer overflow vulnerability exists in the tag file resolution logic when processing the \u0027helpfile\u0027 option. A local user could exploit this by providing a specially crafted \u0027helpfile\u0027 option value, leading to a heap buffer overflow. This could result in arbitrary code execution or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This MODERATE impact vulnerability in Vim\u0027s tag file resolution logic allows a local attacker to achieve a out-of-bounds write. By providing a specially crafted `helpfile` option value a local user can trigger a heap buffer overflow, as consequence lead to memory corruption presenting a data integrity impact or leading the vim process to crash resulting in availability impact. Although being non-trivial and very complex, arbitrary code execution is not discarded as worst case scenario.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25749"
},
{
"category": "external",
"summary": "RHBZ#2437843",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437843"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25749",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25749"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25749",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25749"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/0714b15940b245108e6e9d7aa2260dd849a26fa9",
"url": "https://github.com/vim/vim/commit/0714b15940b245108e6e9d7aa2260dd849a26fa9"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.1.2132",
"url": "https://github.com/vim/vim/releases/tag/v9.1.2132"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-5w93-4g67-mm43",
"url": "https://github.com/vim/vim/security/advisories/GHSA-5w93-4g67-mm43"
}
],
"release_date": "2026-02-06T22:43:38.630000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing"
},
{
"cve": "CVE-2026-27135",
"cwe": {
"id": "CWE-617",
"name": "Reachable Assertion"
},
"discovery_date": "2026-03-18T19:02:13.823002+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448754"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in nghttp2. Due to missing internal state validation, the library continues to process incoming data even after a session has been terminated. A remote attacker could exploit this by sending a specially crafted HTTP/2 frame, leading to an assertion failure and a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after session termination",
"title": "Vulnerability summary"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27135"
},
{
"category": "external",
"summary": "RHBZ#2448754",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448754"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27135",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27135"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27135",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27135"
},
{
"category": "external",
"summary": "https://github.com/nghttp2/nghttp2/commit/5c7df8fa815ac1004d9ecb9d1f7595c4d37f46e1",
"url": "https://github.com/nghttp2/nghttp2/commit/5c7df8fa815ac1004d9ecb9d1f7595c4d37f46e1"
},
{
"category": "external",
"summary": "https://github.com/nghttp2/nghttp2/security/advisories/GHSA-6933-cjhr-5qg6",
"url": "https://github.com/nghttp2/nghttp2/security/advisories/GHSA-6933-cjhr-5qg6"
}
],
"release_date": "2026-03-18T17:59:02.045000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
}
],
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after session termination"
},
{
"cve": "CVE-2026-28417",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-02-27T22:01:53.728412+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim, an open-source command-line text editor. Specifically, an operating system (OS) command injection vulnerability exists in the `netrw` standard plugin. A remote attacker could exploit this by tricking a user into opening a specially crafted URL, such as one using the `scp://` protocol handler. Successful exploitation allows the attacker to execute arbitrary shell commands with the same privileges as the Vim process, leading to potential system compromise.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via OS command injection in the netrw plugin",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this vulnerability is limited on Red Hat products due to user and system isolation features which are enabled by default. The impacts of this flaw will be limited by the active user\u0027s permissions and access control limits. Host systems are not at risk when following Red Hat guidelines and the root user account is not actively executing Vim.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28417"
},
{
"category": "external",
"summary": "RHBZ#2443455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28417",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28417"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28417",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28417"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/79348dbbc09332130f4c860",
"url": "https://github.com/vim/vim/commit/79348dbbc09332130f4c860"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0073",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0073"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-m3xh-9434-g336",
"url": "https://github.com/vim/vim/security/advisories/GHSA-m3xh-9434-g336"
}
],
"release_date": "2026-02-27T21:54:35.196000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Arbitrary code execution via OS command injection in the netrw plugin"
},
{
"cve": "CVE-2026-28421",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-02-27T23:01:44.673504+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443474"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. This vulnerability, a heap-buffer-overflow and a segmentation fault, exists in the swap file recovery logic. A local attacker could exploit this by providing a specially crafted swap file. This could lead to a denial of service (DoS) or potentially information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Denial of service and information disclosure via crafted swap file",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this vulnerability is limited on Red Hat products due to user and system isolation features which are enabled by default. The impacts of this flaw will be limited by the active user\u0027s permissions and access control limits. Host systems are not at risk when following Red Hat guidelines and the root user account is not actively executing Vim.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28421"
},
{
"category": "external",
"summary": "RHBZ#2443474",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443474"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28421",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28421"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28421",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28421"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/65c1a143c331c886dc28",
"url": "https://github.com/vim/vim/commit/65c1a143c331c886dc28"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0077",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0077"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-r2gw-2x48-jj5p",
"url": "https://github.com/vim/vim/security/advisories/GHSA-r2gw-2x48-jj5p"
}
],
"release_date": "2026-02-27T22:06:34.312000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Denial of service and information disclosure via crafted swap file"
},
{
"cve": "CVE-2026-31431",
"cwe": {
"id": "CWE-1288",
"name": "Improper Validation of Consistency within Input"
},
"discovery_date": "2026-04-22T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460538"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s algif_aead cryptographic algorithm interface. An incorrect in-place operation causes source and destination data mappings to differ during cryptographic processing. A low-privileged local attacker can exploit this flaw to corrupt the contents of sensitive system files and escalate to root privileges.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: crypto: algif_aead - Revert to operating out-of-place",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is classified as Important, rather than Critical severity, because exploitation requires local access to the system. A low-privileged local attacker can exploit this flaw in the Linux kernel\u0027s cryptographic interface to gain root privileges by overwriting sensitive system files. Exploitation does not require user interaction, potentially resulting in full compromise of confidentiality, integrity, and availability.",
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31431"
},
{
"category": "external",
"summary": "RHBZ#2460538",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460538"
},
{
"category": "external",
"summary": "RHSB-2026-002",
"url": "https://access.redhat.com/security/vulnerabilities/RHSB-2026-002"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31431",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31431"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31431",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31431"
},
{
"category": "external",
"summary": "https://access.redhat.com/articles/7141989",
"url": "https://access.redhat.com/articles/7141989"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141931",
"url": "https://access.redhat.com/solutions/7141931"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141979",
"url": "https://access.redhat.com/solutions/7141979"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141990",
"url": "https://access.redhat.com/solutions/7141990"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141996",
"url": "https://access.redhat.com/solutions/7141996"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7142032",
"url": "https://access.redhat.com/solutions/7142032"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/managing_monitoring_and_updating_the_kernel/configuring-kernel-command-line-parameters_managing-monitoring-and-updating-the-kernel",
"url": "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/managing_monitoring_and_updating_the_kernel/configuring-kernel-command-line-parameters_managing-monitoring-and-updating-the-kernel"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31431-3d65@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31431-3d65@gregkh/T"
},
{
"category": "external",
"summary": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog",
"url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog"
}
],
"release_date": "2026-04-22T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "exploit_status",
"date": "2026-05-01T00:00:00+00:00",
"details": "CISA: https://www.cisa.gov/known-exploited-vulnerabilities-catalog"
},
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: crypto: algif_aead - Revert to operating out-of-place"
},
{
"cve": "CVE-2026-33412",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-03-24T20:02:21.511965+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450907"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. By including a newline character in a pattern passed to Vim\u0027s glob() function, an attacker may be able to execute arbitrary shell commands. This command injection vulnerability allows for arbitrary code execution, depending on the user\u0027s shell settings.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via command injection in glob() function",
"title": "Vulnerability summary"
},
{
"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": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33412"
},
{
"category": "external",
"summary": "RHBZ#2450907",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450907"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33412",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33412"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33412",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33412"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/645ed6597d1ea896c712cd7ddbb6edee79577e9a",
"url": "https://github.com/vim/vim/commit/645ed6597d1ea896c712cd7ddbb6edee79577e9a"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0202",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0202"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-w5jw-f54h-x46c",
"url": "https://github.com/vim/vim/security/advisories/GHSA-w5jw-f54h-x46c"
}
],
"release_date": "2026-03-24T19:43:07.219000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T14:17:24+00:00",
"details": "For OpenShift Container Platform 4.15 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata\nfor x86_64, s390x, ppc64le, and aarch64 architectures. The image digests\nmay be found at\nhttps://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:20b5c12f3ca21aecb8a8b0208cc0c1e91b979f31e2dff4d7706eacc87afb9136\n\n (For s390x architecture)\n The image digest is sha256:8c7f987d305edccc45f5e8646b436b17e1ed663cf44f146eb31b16ecd721309b\n\n (For ppc64le architecture)\n The image digest is sha256:0479a675177654d15cd698e7b27b18a4638e435fd2476e198602e4865bd68e8b\n\n (For aarch64 architecture)\n The image digest is sha256:1079c0d0e47ebb0e9a9c95842c52caa8bf33105c579b090dd307639abd0c9d79\n\nAll OpenShift Container Platform 4.15 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14773"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.15:rhcos-aarch64-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-ppc64le-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-s390x-415.92.202605060220-0",
"9Base-RHOSE-4.15:rhcos-x86_64-415.92.202605060220-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vim: Vim: Arbitrary code execution via command injection in glob() function"
}
]
}
RHSA-2026:1496
Vulnerability from csaf_redhat - Published: 2026-01-28 15:32 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. When an application processes a maliciously crafted PKCS#12 file, an attacker can exploit a stack buffer overflow or a NULL pointer dereference. This can lead to a denial of service (DoS) by crashing the application, and in some cases, may enable arbitrary code execution. The vulnerability arises from the lack of validation for PBKDF2 salt and keylength parameters within the PKCS#12 file.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 10.0 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file (CVE-2025-11187)\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1496",
"url": "https://access.redhat.com/errata/RHSA-2026:1496"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430375"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1496.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:39+00:00",
"generator": {
"date": "2026-07-27T13:20:39+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1496",
"initial_release_date": "2026-01-28T15:32:54+00:00",
"revision_history": [
{
"date": "2026-01-28T15:32:54+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-28T15:32:54+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:39+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"product": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"product_id": "openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-16.el10_0.6?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"product": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"product_id": "openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-16.el10_0.6?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"product": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"product_id": "openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-16.el10_0.6?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"product": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"product_id": "openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-16.el10_0.6?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.2.2-16.el10_0.6.src",
"product": {
"name": "openssl-1:3.2.2-16.el10_0.6.src",
"product_id": "openssl-1:3.2.2-16.el10_0.6.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-16.el10_0.6?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-16.el10_0.6.src as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src"
},
"product_reference": "openssl-1:3.2.2-16.el10_0.6.src",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-11187",
"cwe": {
"id": "CWE-233",
"name": "Improper Handling of Parameters"
},
"discovery_date": "2026-01-16T14:21:50.559000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430375"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When an application processes a maliciously crafted PKCS#12 file, an attacker can exploit a stack buffer overflow or a NULL pointer dereference. This can lead to a denial of service (DoS) by crashing the application, and in some cases, may enable arbitrary code execution. The vulnerability arises from the lack of validation for PBKDF2 salt and keylength parameters within the PKCS#12 file.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. It affects OpenSSL versions 3.6, 3.5, and 3.4, where improper validation of PBMAC1 parameters in PKCS#12 MAC verification can lead to a stack buffer overflow or NULL pointer dereference. Exploitation requires an application to process a maliciously crafted PKCS#12 file, which is uncommon as these files are typically trusted. OpenSSL versions 3.3, 3.0, 1.1.1, and 1.0.2 are not affected as they do not support PBMAC1 in PKCS#12.",
"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": [
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
],
"known_not_affected": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-11187"
},
{
"category": "external",
"summary": "RHBZ#2430375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430375"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-11187",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11187"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-11187",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-11187"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T15:32:54+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1496"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted PKCS#12 files. Applications should only handle PKCS#12 files from trusted sources, as these files are typically used for storing private keys and are expected to be secure.",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution or denial of service through crafted PKCS#12 file"
},
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
],
"known_not_affected": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T15:32:54+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1496"
},
{
"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": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
],
"known_not_affected": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T15:32:54+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1496"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-devel-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.aarch64",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.ppc64le",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.s390x",
"AppStream-10.0.Z.E2S:openssl-perl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.src",
"BaseOS-10.0.Z.E2S:openssl-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debuginfo-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-debugsource-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-1:3.2.2-16.el10_0.6.x86_64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.aarch64",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.ppc64le",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.s390x",
"BaseOS-10.0.Z.E2S:openssl-libs-debuginfo-1:3.2.2-16.el10_0.6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
}
]
}
RHSA-2026:1503
Vulnerability from csaf_redhat - Published: 2026-01-28 17:17 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 9.6 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1503",
"url": "https://access.redhat.com/errata/RHSA-2026:1503"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1503.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:39+00:00",
"generator": {
"date": "2026-07-27T13:20:39+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1503",
"initial_release_date": "2026-01-28T17:17:47+00:00",
"revision_history": [
{
"date": "2026-01-28T17:17:47+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-28T17:17:47+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:39+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus:9.6::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"product": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"product_id": "openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-7.el9_6.2?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"product": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"product_id": "openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-7.el9_6.2?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-7.el9_6.2.i686",
"product": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.i686",
"product_id": "openssl-devel-1:3.2.2-7.el9_6.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-7.el9_6.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"product": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"product_id": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-7.el9_6.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"product": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"product_id": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-7.el9_6.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"product_id": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-7.el9_6.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-7.el9_6.2.i686",
"product": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.i686",
"product_id": "openssl-libs-1:3.2.2-7.el9_6.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-7.el9_6.2?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"product": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"product_id": "openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-7.el9_6.2?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"product": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"product_id": "openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.2.2-7.el9_6.2?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.2.2-7.el9_6.2.src",
"product": {
"name": "openssl-1:3.2.2-7.el9_6.2.src",
"product_id": "openssl-1:3.2.2-7.el9_6.2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.2.2-7.el9_6.2?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-devel-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-7.el9_6.2.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src"
},
"product_reference": "openssl-1:3.2.2-7.el9_6.2.src",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-libs-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64"
],
"known_not_affected": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T17:17:47+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1503"
},
{
"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": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64"
],
"known_not_affected": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-28T17:17:47+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1503"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-devel-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.aarch64",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.ppc64le",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.s390x",
"AppStream-9.6.0.Z.EUS:openssl-perl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.src",
"BaseOS-9.6.0.Z.EUS:openssl-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debuginfo-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-debugsource-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-1:3.2.2-7.el9_6.2.x86_64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.aarch64",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.i686",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.ppc64le",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.s390x",
"BaseOS-9.6.0.Z.EUS:openssl-libs-debuginfo-1:3.2.2-7.el9_6.2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
}
]
}
RHSA-2026:15087
Vulnerability from csaf_redhat - Published: 2026-05-13 13:55 - Updated: 2026-07-25 23:55A Use-After-Free vulnerability has been discovered in GRUB's gettext module. This flaw stems from a programming error where the gettext command remains registered in memory after its module is unloaded. An attacker can exploit this condition by invoking the orphaned command, causing the application to access a memory location that is no longer valid. An attacker could exploit this vulnerability to cause grub to crash, leading to a Denial of Service. Possible data integrity or confidentiality compromise is not discarded.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the OpenSSH GSSAPI (Generic Security Service Application Program Interface) delta patches, as included in various Linux distributions. A remote attacker could exploit this by sending an unexpected GSSAPI message type during the key exchange process. This occurs because the `sshpkt_disconnect()` function, when called on an error, does not properly terminate the process, leading to the continued execution of the program with uninitialized connection variables. Accessing these uninitialized variables can lead to undefined behavior, potentially resulting in information disclosure or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was identified in the RAR5 archive decompression logic of the libarchive library, specifically within the archive_read_data() processing path. When a specially crafted RAR5 archive is processed, the decompression routine may enter a state where internal logic prevents forward progress. This condition results in an infinite loop that continuously consumes CPU resources. Because the archive passes checksum validation and appears structurally valid, affected applications cannot detect the issue before processing. This can allow attackers to cause persistent denial-of-service conditions in services that automatically process archives.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libarchive. This heap out-of-bounds read vulnerability exists in the RAR archive processing logic due to improper validation of the LZSS sliding window size after transitions between compression methods. A remote attacker can exploit this by providing a specially crafted RAR archive, leading to the disclosure of sensitive heap memory information without requiring authentication or user interaction.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libarchive. On 32-bit systems, an integer overflow vulnerability exists in the zisofs block pointer allocation logic. A remote attacker can exploit this by providing a specially crafted ISO9660 image, which can lead to a heap buffer overflow. This could potentially allow for arbitrary code execution on the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A heap based buffer overflow flaw has been discovered in LibPNG. Prior to version 1.6.55, an out-of-bounds read vulnerability exists in the png_set_quantize() API function. When the function is called with no histogram and the number of colors in the palette is more than twice the maximum supported by the user's display, certain palettes will cause the function to enter into an infinite loop that reads past the end of an internal heap-allocated buffer. The images that trigger this vulnerability are valid per the PNG specification.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim, an open source, command line text editor. This heap buffer overflow vulnerability exists in the tag file resolution logic when processing the 'helpfile' option. A local user could exploit this by providing a specially crafted 'helpfile' option value, leading to a heap buffer overflow. This could result in arbitrary code execution or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in nghttp2. Due to missing internal state validation, the library continues to process incoming data even after a session has been terminated. A remote attacker could exploit this by sending a specially crafted HTTP/2 frame, leading to an assertion failure and a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
|
A flaw was found in Vim, an open-source command-line text editor. Specifically, an operating system (OS) command injection vulnerability exists in the `netrw` standard plugin. A remote attacker could exploit this by tricking a user into opening a specially crafted URL, such as one using the `scp://` protocol handler. Successful exploitation allows the attacker to execute arbitrary shell commands with the same privileges as the Vim process, leading to potential system compromise.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. This vulnerability, a heap-buffer-overflow and a segmentation fault, exists in the swap file recovery logic. A local attacker could exploit this by providing a specially crafted swap file. This could lead to a denial of service (DoS) or potentially information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel's algif_aead cryptographic algorithm interface. An incorrect in-place operation causes source and destination data mappings to differ during cryptographic processing. A low-privileged local attacker can exploit this flaw to corrupt the contents of sensitive system files and escalate to root privileges.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. By including a newline character in a pattern passed to Vim's glob() function, an attacker may be able to execute arbitrary shell commands. This command injection vulnerability allows for arbitrary code execution, depending on the user's shell settings.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0 | — |
Vendor Fix
fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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": "Red Hat OpenShift Container Platform release 4.14.65 is now available with updates to packages and images that fix several bugs and add enhancements.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.14.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability\nfrom the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing\nKubernetes application platform solution designed for on-premise or private\ncloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container\nPlatform 4.14.65. See the following advisory for the RPM packages for this\nrelease:\n\nhttps://access.redhat.com/errata/RHBA-2026:15086\n\nSpace precludes documenting all of the container images in this advisory.\nSee the following Release Notes documentation, which will be updated\nshortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nSecurity Fix(es):\n\n* openssh: OpenSSH GSSAPI: Information disclosure or denial of service due\nto uninitialized variables (CVE-2026-3497)\n* libarchive: Infinite Loop Denial of Service in RAR5 Decompression via\narchive_read_data() in libarchive (CVE-2026-4111)\n* libarchive: libarchive: Information disclosure via heap out-of-bounds\nread in RAR archive processing (CVE-2026-4424)\n* libpng: LIBPNG has a heap buffer overflow in png_set_quantize\n(CVE-2026-25646)\n* nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after\nsession termination (CVE-2026-27135)\n* vim: Vim: Arbitrary code execution via command injection in glob()\nfunction (CVE-2026-33412)\n* grub2: Missing unregister call for gettext command may lead to\nuse-after-free (CVE-2025-61662)\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in\nPKCS#12 processing (CVE-2025-69419)\n* libarchive: libarchive: Arbitrary code execution via integer overflow in\nISO9660 image processing (CVE-2026-5121)\n* vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing\n(CVE-2026-25749)\n* vim: Vim: Arbitrary code execution via OS command injection in the netrw\nplugin (CVE-2026-28417)\n* vim: Vim: Denial of service and information disclosure via crafted swap\nfile (CVE-2026-28421)\n* kernel: crypto: algif_aead - Revert to operating out-of-place (CVE-2026-31431)\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, acknowledgments, and other related information, refer to the CVE\npage(s) listed in the References section.\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"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:15087",
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2414683",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2414683"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "2437843",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437843"
},
{
"category": "external",
"summary": "2438542",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2438542"
},
{
"category": "external",
"summary": "2443455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443455"
},
{
"category": "external",
"summary": "2443474",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443474"
},
{
"category": "external",
"summary": "2446453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446453"
},
{
"category": "external",
"summary": "2447085",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447085"
},
{
"category": "external",
"summary": "2448754",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448754"
},
{
"category": "external",
"summary": "2449006",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449006"
},
{
"category": "external",
"summary": "2450907",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450907"
},
{
"category": "external",
"summary": "2452945",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452945"
},
{
"category": "external",
"summary": "2460538",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460538"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_15087.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.14.65 bug fix and security update",
"tracking": {
"current_release_date": "2026-07-25T23:55:34+00:00",
"generator": {
"date": "2026-07-25T23:55:34+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:15087",
"initial_release_date": "2026-05-13T13:55:59+00:00",
"revision_history": [
{
"date": "2026-05-13T13:55:59+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-13T13:55:59+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-25T23:55:34+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.14",
"product": {
"name": "Red Hat OpenShift Container Platform 4.14",
"product_id": "9Base-RHOSE-4.14",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.14::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Enterprise"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-aarch64-414.92.202605060243-0",
"product": {
"name": "rhcos-aarch64-414.92.202605060243-0",
"product_id": "rhcos-aarch64-414.92.202605060243-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@414.92.202605060243?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-ppc64le-414.92.202605060243-0",
"product": {
"name": "rhcos-ppc64le-414.92.202605060243-0",
"product_id": "rhcos-ppc64le-414.92.202605060243-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@414.92.202605060243?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-s390x-414.92.202605060243-0",
"product": {
"name": "rhcos-s390x-414.92.202605060243-0",
"product_id": "rhcos-s390x-414.92.202605060243-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@414.92.202605060243?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "rhcos-x86_64-414.92.202605060243-0",
"product": {
"name": "rhcos-x86_64-414.92.202605060243-0",
"product_id": "rhcos-x86_64-414.92.202605060243-0",
"product_identification_helper": {
"purl": "pkg:generic/redhat/rhcos@414.92.202605060243?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-aarch64-414.92.202605060243-0 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0"
},
"product_reference": "rhcos-aarch64-414.92.202605060243-0",
"relates_to_product_reference": "9Base-RHOSE-4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-ppc64le-414.92.202605060243-0 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0"
},
"product_reference": "rhcos-ppc64le-414.92.202605060243-0",
"relates_to_product_reference": "9Base-RHOSE-4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-s390x-414.92.202605060243-0 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0"
},
"product_reference": "rhcos-s390x-414.92.202605060243-0",
"relates_to_product_reference": "9Base-RHOSE-4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rhcos-x86_64-414.92.202605060243-0 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
},
"product_reference": "rhcos-x86_64-414.92.202605060243-0",
"relates_to_product_reference": "9Base-RHOSE-4.14"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61662",
"discovery_date": "2025-11-12T21:18:21.069000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2414683"
}
],
"notes": [
{
"category": "description",
"text": "A Use-After-Free vulnerability has been discovered in GRUB\u0027s gettext module. This flaw stems from a programming error where the gettext command remains registered in memory after its module is unloaded. An attacker can exploit this condition by invoking the orphaned command, causing the application to access a memory location that is no longer valid. An attacker could exploit this vulnerability to cause grub to crash, leading to a Denial of Service. Possible data integrity or confidentiality compromise is not discarded.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "grub2: Missing unregister call for gettext command may lead to use-after-free",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability has been rated as have the impact of Moderate by the Red Hat Product Security team. This decision was made based in the fact an attacker needs local or physical access to the machine, to execute the gettext command after it was unloaded. Additionally the most likely outcome from an successful attack is a Denial of Crash by leading the grub2 to crash.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61662"
},
{
"category": "external",
"summary": "RHBZ#2414683",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2414683"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61662",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61662"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61662",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61662"
},
{
"category": "external",
"summary": "https://lists.gnu.org/archive/html/grub-devel/2025-11/msg00155.html",
"url": "https://lists.gnu.org/archive/html/grub-devel/2025-11/msg00155.html"
}
],
"release_date": "2025-11-18T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "workaround",
"details": "There\u0027s no known mitigation available for this vulnerability.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "grub2: Missing unregister call for gettext command may lead to use-after-free"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
},
{
"cve": "CVE-2026-3497",
"cwe": {
"id": "CWE-824",
"name": "Access of Uninitialized Pointer"
},
"discovery_date": "2026-03-12T19:01:37.007806+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447085"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the OpenSSH GSSAPI (Generic Security Service Application Program Interface) delta patches, as included in various Linux distributions. A remote attacker could exploit this by sending an unexpected GSSAPI message type during the key exchange process. This occurs because the `sshpkt_disconnect()` function, when called on an error, does not properly terminate the process, leading to the continued execution of the program with uninitialized connection variables. Accessing these uninitialized variables can lead to undefined behavior, potentially resulting in information disclosure or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssh: OpenSSH GSSAPI: Information disclosure or denial of service due to uninitialized variables",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This vulnerability affects the OpenSSH GSSAPI delta as implemented in Red Hat Enterprise Linux and OpenShift Container Platform. An unauthenticated attacker could send a specially crafted GSSAPI message during key exchange, leading to the use of uninitialized variables and potentially undefined behavior. The severity of the impact is dependent on compiler hardening configurations.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-3497"
},
{
"category": "external",
"summary": "RHBZ#2447085",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447085"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-3497",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-3497"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-3497",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://ubuntu.com/security/CVE-2026-3497",
"url": "https://ubuntu.com/security/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/03/12/3",
"url": "https://www.openwall.com/lists/oss-security/2026/03/12/3"
}
],
"release_date": "2026-03-12T18:27:44.917000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable GSSAPI key exchange in the OpenSSH server configuration. This prevents the server from processing GSSAPI messages, eliminating the vulnerability\u0027s attack surface.\n\nEdit `/etc/ssh/sshd_config` and add or modify the line:\n```\nGSSAPIKeyExchange no\n```\n\nAfter saving the changes, restart the `sshd` service for the mitigation to take effect. This action will prevent users from authenticating via GSSAPI.\n\n```\n# systemctl restart sshd\n```",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssh: OpenSSH GSSAPI: Information disclosure or denial of service due to uninitialized variables"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-4111",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"discovery_date": "2026-03-11T11:18:51.609000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446453"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was identified in the RAR5 archive decompression logic of the libarchive library, specifically within the archive_read_data() processing path. When a specially crafted RAR5 archive is processed, the decompression routine may enter a state where internal logic prevents forward progress. This condition results in an infinite loop that continuously consumes CPU resources. Because the archive passes checksum validation and appears structurally valid, affected applications cannot detect the issue before processing. This can allow attackers to cause persistent denial-of-service conditions in services that automatically process archives.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: Infinite Loop Denial of Service in RAR5 Decompression via archive_read_data() in libarchive",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The Red Hat Product Security team would likely assess the severity of this vulnerability as High because it allows remote attackers to cause a persistent denial-of-service condition using a small crafted archive file. Successful exploitation requires no authentication, no special configuration, and no user interaction in environments that automatically process uploaded archives. By repeatedly submitting malicious archives, an attacker can exhaust CPU resources or worker threads in services such as file upload systems, CI/CD pipelines, mail scanners, and content indexing services that rely on libarchive for archive extraction.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4111"
},
{
"category": "external",
"summary": "RHBZ#2446453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446453"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4111",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4111"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4111",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4111"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2877",
"url": "https://github.com/libarchive/libarchive/pull/2877"
}
],
"release_date": "2026-03-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libarchive: Infinite Loop Denial of Service in RAR5 Decompression via archive_read_data() in libarchive"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-4424",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-03-19T12:22:21.740000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449006"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libarchive. This heap out-of-bounds read vulnerability exists in the RAR archive processing logic due to improper validation of the LZSS sliding window size after transitions between compression methods. A remote attacker can exploit this by providing a specially crafted RAR archive, leading to the disclosure of sensitive heap memory information without requiring authentication or user interaction.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: libarchive: Information disclosure via heap out-of-bounds read in RAR archive processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This heap out-of-bounds read vulnerability in libarchive\u0027s RAR archive processing logic can lead to information disclosure. A remote attacker can exploit this flaw by providing a specially crafted RAR archive, potentially revealing sensitive heap memory information without requiring authentication or user interaction on systems that process untrusted archives.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4424"
},
{
"category": "external",
"summary": "RHBZ#2449006",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449006"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4424",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4424"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4424",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4424"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2898",
"url": "https://github.com/libarchive/libarchive/pull/2898"
}
],
"release_date": "2026-03-19T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libarchive: libarchive: Information disclosure via heap out-of-bounds read in RAR archive processing"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-5121",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-03-30T07:40:25.358335+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452945"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libarchive. On 32-bit systems, an integer overflow vulnerability exists in the zisofs block pointer allocation logic. A remote attacker can exploit this by providing a specially crafted ISO9660 image, which can lead to a heap buffer overflow. This could potentially allow for arbitrary code execution on the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: libarchive: Arbitrary code execution via integer overflow in ISO9660 image processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Important: An integer overflow flaw in `libarchive` on 32-bit systems can lead to a heap buffer overflow. This vulnerability occurs when processing a specially crafted ISO9660 image, allowing an attacker to potentially execute arbitrary code. Red Hat Enterprise Linux 64-bit systems are not affected by this flaw.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5121"
},
{
"category": "external",
"summary": "RHBZ#2452945",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452945"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5121",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5121"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-2vwv-vqpv-v8vc",
"url": "https://github.com/advisories/GHSA-2vwv-vqpv-v8vc"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2934",
"url": "https://github.com/libarchive/libarchive/pull/2934"
}
],
"release_date": "2026-03-30T07:44:15.222000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted ISO9660 images with applications that utilize `libarchive`. Users should only extract or read content from ISO images obtained from trusted sources.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libarchive: libarchive: Arbitrary code execution via integer overflow in ISO9660 image processing"
},
{
"cve": "CVE-2026-25646",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-02-10T18:01:28.232408+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2438542"
}
],
"notes": [
{
"category": "description",
"text": "A heap based buffer overflow flaw has been discovered in LibPNG. Prior to version 1.6.55, an out-of-bounds read vulnerability exists in the png_set_quantize() API function. When the function is called with no histogram and the number of colors in the palette is more than twice the maximum supported by the user\u0027s display, certain palettes will cause the function to enter into an infinite loop that reads past the end of an internal heap-allocated buffer. The images that trigger this vulnerability are valid per the PNG specification.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: LIBPNG has a heap buffer overflow in png_set_quantize",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For `java-17-openjdk-headless` and `java-21-openjdk-headless`, while the affected code is present in the bundled sources, it is not exercised by these headless packages.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25646"
},
{
"category": "external",
"summary": "RHBZ#2438542",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2438542"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25646",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25646"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25646",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25646"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/02/09/7",
"url": "http://www.openwall.com/lists/oss-security/2026/02/09/7"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/01d03b8453eb30ade759cd45c707e5a1c7277d88",
"url": "https://github.com/pnggroup/libpng/commit/01d03b8453eb30ade759cd45c707e5a1c7277d88"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-g8hp-mq4h-rqm3",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-g8hp-mq4h-rqm3"
}
],
"release_date": "2026-02-10T17:04:38.501000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libpng: LIBPNG has a heap buffer overflow in png_set_quantize"
},
{
"cve": "CVE-2026-25749",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-02-09T11:08:59.061581+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437843"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim, an open source, command line text editor. This heap buffer overflow vulnerability exists in the tag file resolution logic when processing the \u0027helpfile\u0027 option. A local user could exploit this by providing a specially crafted \u0027helpfile\u0027 option value, leading to a heap buffer overflow. This could result in arbitrary code execution or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This MODERATE impact vulnerability in Vim\u0027s tag file resolution logic allows a local attacker to achieve a out-of-bounds write. By providing a specially crafted `helpfile` option value a local user can trigger a heap buffer overflow, as consequence lead to memory corruption presenting a data integrity impact or leading the vim process to crash resulting in availability impact. Although being non-trivial and very complex, arbitrary code execution is not discarded as worst case scenario.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25749"
},
{
"category": "external",
"summary": "RHBZ#2437843",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437843"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25749",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25749"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25749",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25749"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/0714b15940b245108e6e9d7aa2260dd849a26fa9",
"url": "https://github.com/vim/vim/commit/0714b15940b245108e6e9d7aa2260dd849a26fa9"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.1.2132",
"url": "https://github.com/vim/vim/releases/tag/v9.1.2132"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-5w93-4g67-mm43",
"url": "https://github.com/vim/vim/security/advisories/GHSA-5w93-4g67-mm43"
}
],
"release_date": "2026-02-06T22:43:38.630000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing"
},
{
"cve": "CVE-2026-27135",
"cwe": {
"id": "CWE-617",
"name": "Reachable Assertion"
},
"discovery_date": "2026-03-18T19:02:13.823002+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448754"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in nghttp2. Due to missing internal state validation, the library continues to process incoming data even after a session has been terminated. A remote attacker could exploit this by sending a specially crafted HTTP/2 frame, leading to an assertion failure and a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after session termination",
"title": "Vulnerability summary"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27135"
},
{
"category": "external",
"summary": "RHBZ#2448754",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448754"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27135",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27135"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27135",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27135"
},
{
"category": "external",
"summary": "https://github.com/nghttp2/nghttp2/commit/5c7df8fa815ac1004d9ecb9d1f7595c4d37f46e1",
"url": "https://github.com/nghttp2/nghttp2/commit/5c7df8fa815ac1004d9ecb9d1f7595c4d37f46e1"
},
{
"category": "external",
"summary": "https://github.com/nghttp2/nghttp2/security/advisories/GHSA-6933-cjhr-5qg6",
"url": "https://github.com/nghttp2/nghttp2/security/advisories/GHSA-6933-cjhr-5qg6"
}
],
"release_date": "2026-03-18T17:59:02.045000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
}
],
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after session termination"
},
{
"cve": "CVE-2026-28417",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-02-27T22:01:53.728412+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim, an open-source command-line text editor. Specifically, an operating system (OS) command injection vulnerability exists in the `netrw` standard plugin. A remote attacker could exploit this by tricking a user into opening a specially crafted URL, such as one using the `scp://` protocol handler. Successful exploitation allows the attacker to execute arbitrary shell commands with the same privileges as the Vim process, leading to potential system compromise.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via OS command injection in the netrw plugin",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this vulnerability is limited on Red Hat products due to user and system isolation features which are enabled by default. The impacts of this flaw will be limited by the active user\u0027s permissions and access control limits. Host systems are not at risk when following Red Hat guidelines and the root user account is not actively executing Vim.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28417"
},
{
"category": "external",
"summary": "RHBZ#2443455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28417",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28417"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28417",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28417"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/79348dbbc09332130f4c860",
"url": "https://github.com/vim/vim/commit/79348dbbc09332130f4c860"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0073",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0073"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-m3xh-9434-g336",
"url": "https://github.com/vim/vim/security/advisories/GHSA-m3xh-9434-g336"
}
],
"release_date": "2026-02-27T21:54:35.196000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Arbitrary code execution via OS command injection in the netrw plugin"
},
{
"cve": "CVE-2026-28421",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-02-27T23:01:44.673504+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443474"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. This vulnerability, a heap-buffer-overflow and a segmentation fault, exists in the swap file recovery logic. A local attacker could exploit this by providing a specially crafted swap file. This could lead to a denial of service (DoS) or potentially information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Denial of service and information disclosure via crafted swap file",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this vulnerability is limited on Red Hat products due to user and system isolation features which are enabled by default. The impacts of this flaw will be limited by the active user\u0027s permissions and access control limits. Host systems are not at risk when following Red Hat guidelines and the root user account is not actively executing Vim.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28421"
},
{
"category": "external",
"summary": "RHBZ#2443474",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443474"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28421",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28421"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28421",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28421"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/65c1a143c331c886dc28",
"url": "https://github.com/vim/vim/commit/65c1a143c331c886dc28"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0077",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0077"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-r2gw-2x48-jj5p",
"url": "https://github.com/vim/vim/security/advisories/GHSA-r2gw-2x48-jj5p"
}
],
"release_date": "2026-02-27T22:06:34.312000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Denial of service and information disclosure via crafted swap file"
},
{
"cve": "CVE-2026-31431",
"cwe": {
"id": "CWE-1288",
"name": "Improper Validation of Consistency within Input"
},
"discovery_date": "2026-04-22T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460538"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s algif_aead cryptographic algorithm interface. An incorrect in-place operation causes source and destination data mappings to differ during cryptographic processing. A low-privileged local attacker can exploit this flaw to corrupt the contents of sensitive system files and escalate to root privileges.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: crypto: algif_aead - Revert to operating out-of-place",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is classified as Important, rather than Critical severity, because exploitation requires local access to the system. A low-privileged local attacker can exploit this flaw in the Linux kernel\u0027s cryptographic interface to gain root privileges by overwriting sensitive system files. Exploitation does not require user interaction, potentially resulting in full compromise of confidentiality, integrity, and availability.",
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31431"
},
{
"category": "external",
"summary": "RHBZ#2460538",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460538"
},
{
"category": "external",
"summary": "RHSB-2026-002",
"url": "https://access.redhat.com/security/vulnerabilities/RHSB-2026-002"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31431",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31431"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31431",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31431"
},
{
"category": "external",
"summary": "https://access.redhat.com/articles/7141989",
"url": "https://access.redhat.com/articles/7141989"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141931",
"url": "https://access.redhat.com/solutions/7141931"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141979",
"url": "https://access.redhat.com/solutions/7141979"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141990",
"url": "https://access.redhat.com/solutions/7141990"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7141996",
"url": "https://access.redhat.com/solutions/7141996"
},
{
"category": "external",
"summary": "https://access.redhat.com/solutions/7142032",
"url": "https://access.redhat.com/solutions/7142032"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/managing_monitoring_and_updating_the_kernel/configuring-kernel-command-line-parameters_managing-monitoring-and-updating-the-kernel",
"url": "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/managing_monitoring_and_updating_the_kernel/configuring-kernel-command-line-parameters_managing-monitoring-and-updating-the-kernel"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31431-3d65@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31431-3d65@gregkh/T"
},
{
"category": "external",
"summary": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog",
"url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog"
}
],
"release_date": "2026-04-22T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "exploit_status",
"date": "2026-05-01T00:00:00+00:00",
"details": "CISA: https://www.cisa.gov/known-exploited-vulnerabilities-catalog"
},
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: crypto: algif_aead - Revert to operating out-of-place"
},
{
"cve": "CVE-2026-33412",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-03-24T20:02:21.511965+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450907"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. By including a newline character in a pattern passed to Vim\u0027s glob() function, an attacker may be able to execute arbitrary shell commands. This command injection vulnerability allows for arbitrary code execution, depending on the user\u0027s shell settings.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via command injection in glob() function",
"title": "Vulnerability summary"
},
{
"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": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33412"
},
{
"category": "external",
"summary": "RHBZ#2450907",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450907"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33412",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33412"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33412",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33412"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/645ed6597d1ea896c712cd7ddbb6edee79577e9a",
"url": "https://github.com/vim/vim/commit/645ed6597d1ea896c712cd7ddbb6edee79577e9a"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0202",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0202"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-w5jw-f54h-x46c",
"url": "https://github.com/vim/vim/security/advisories/GHSA-w5jw-f54h-x46c"
}
],
"release_date": "2026-03-24T19:43:07.219000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-13T13:55:59+00:00",
"details": "For OpenShift Container Platform 4.14 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:58619bd3685bebf42b1de421a21dd74d429a73d2842db8530468811dd8c762f6\n\n (For s390x architecture)\n The image digest is sha256:a42b5d59c2d8006a7531f21bf9494508a2223cfe0305c8323dd8d8805edd5bb6\n\n (For ppc64le architecture)\n The image digest is sha256:b3348021ca46196e46190a64246264ce6793628e3ed80b4957c0352c42014d01\n\n (For aarch64 architecture)\n The image digest is sha256:c40d6097277e7aacf96a3e883fb77cbd3d9cd42e698f98daaadf69204abaad4a\n\nAll OpenShift Container Platform 4.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15087"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.14:rhcos-aarch64-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-ppc64le-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-s390x-414.92.202605060243-0",
"9Base-RHOSE-4.14:rhcos-x86_64-414.92.202605060243-0"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vim: Vim: Arbitrary code execution via command injection in glob() function"
}
]
}
RHSA-2026:1519
Vulnerability from csaf_redhat - Published: 2026-01-29 00:24 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 9.4 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1519",
"url": "https://access.redhat.com/errata/RHSA-2026:1519"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1519.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:40+00:00",
"generator": {
"date": "2026-07-27T13:20:40+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1519",
"initial_release_date": "2026-01-29T00:24:19+00:00",
"revision_history": [
{
"date": "2026-01-29T00:24:19+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-29T00:24:19+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:40+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.4::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus:9.4::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"product": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"product_id": "openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-29.el9_4.2?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"product": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"product_id": "openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-29.el9_4.2?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-29.el9_4.2.i686",
"product": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.i686",
"product_id": "openssl-devel-1:3.0.7-29.el9_4.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-29.el9_4.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"product": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"product_id": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-29.el9_4.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"product": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"product_id": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-29.el9_4.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"product_id": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-29.el9_4.2?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-29.el9_4.2.i686",
"product": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.i686",
"product_id": "openssl-libs-1:3.0.7-29.el9_4.2.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-29.el9_4.2?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"product": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"product_id": "openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-29.el9_4.2?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"product": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"product_id": "openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-29.el9_4.2?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.7-29.el9_4.2.src",
"product": {
"name": "openssl-1:3.0.7-29.el9_4.2.src",
"product_id": "openssl-1:3.0.7-29.el9_4.2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-29.el9_4.2?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-devel-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-29.el9_4.2.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src"
},
"product_reference": "openssl-1:3.0.7-29.el9_4.2.src",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-libs-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64"
],
"known_not_affected": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T00:24:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1519"
},
{
"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": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64"
],
"known_not_affected": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T00:24:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1519"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-devel-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.aarch64",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.ppc64le",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.s390x",
"AppStream-9.4.0.Z.EUS:openssl-perl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.src",
"BaseOS-9.4.0.Z.EUS:openssl-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debuginfo-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-debugsource-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-1:3.0.7-29.el9_4.2.x86_64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.aarch64",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.i686",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.ppc64le",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.s390x",
"BaseOS-9.4.0.Z.EUS:openssl-libs-debuginfo-1:3.0.7-29.el9_4.2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
}
]
}
RHSA-2026:1594
Vulnerability from csaf_redhat - Published: 2026-01-29 17:22 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1594",
"url": "https://access.redhat.com/errata/RHSA-2026:1594"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1594.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:40+00:00",
"generator": {
"date": "2026-07-27T13:20:40+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1594",
"initial_release_date": "2026-01-29T17:22:14+00:00",
"revision_history": [
{
"date": "2026-01-29T17:22:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-29T17:22:14+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:40+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product": {
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.2::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_e4s:9.2::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.7-18.el9_2.3.src",
"product": {
"name": "openssl-1:3.0.7-18.el9_2.3.src",
"product_id": "openssl-1:3.0.7-18.el9_2.3.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-18.el9_2.3?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"product": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"product_id": "openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-18.el9_2.3?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"product": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"product_id": "openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-18.el9_2.3?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"product": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"product_id": "openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-18.el9_2.3?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-18.el9_2.3.i686",
"product": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.i686",
"product_id": "openssl-libs-1:3.0.7-18.el9_2.3.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-18.el9_2.3?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"product": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"product_id": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-18.el9_2.3?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"product": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"product_id": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-18.el9_2.3?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"product_id": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-18.el9_2.3?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-18.el9_2.3.i686",
"product": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.i686",
"product_id": "openssl-devel-1:3.0.7-18.el9_2.3.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-18.el9_2.3?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"product": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"product_id": "openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.7-18.el9_2.3?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-devel-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-18.el9_2.3.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src"
},
"product_reference": "openssl-1:3.0.7-18.el9_2.3.src",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-libs-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64"
],
"known_not_affected": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T17:22:14+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1594"
},
{
"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": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64"
],
"known_not_affected": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T17:22:14+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1594"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-devel-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.aarch64",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.ppc64le",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.s390x",
"AppStream-9.2.0.Z.E4S:openssl-perl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.src",
"BaseOS-9.2.0.Z.E4S:openssl-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debuginfo-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-debugsource-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-1:3.0.7-18.el9_2.3.x86_64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.aarch64",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.i686",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.ppc64le",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.s390x",
"BaseOS-9.2.0.Z.E4S:openssl-libs-debuginfo-1:3.0.7-18.el9_2.3.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
}
]
}
RHSA-2026:1733
Vulnerability from csaf_redhat - Published: 2026-02-02 17:33 - Updated: 2026-07-27 13:20A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686 | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x | — |
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"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 openssl is now available for Red Hat Enterprise Linux 9.0 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing (CVE-2025-15467)\n\n* openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing (CVE-2025-69419)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"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:1733",
"url": "https://access.redhat.com/errata/RHSA-2026:1733"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1733.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-07-27T13:20:42+00:00",
"generator": {
"date": "2026-07-27T13:20:42+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:1733",
"initial_release_date": "2026-02-02T17:33:59+00:00",
"revision_history": [
{
"date": "2026-02-02T17:33:59+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-02T17:33:59+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T13:20:42+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product": {
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.0::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_e4s:9.0::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.7.src",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.7.src",
"product_id": "openssl-1:3.0.1-46.el9_0.7.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0.7?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0.7?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0.7?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0.7?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.7.i686",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.i686",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0.7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0.7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0.7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0.7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.7.i686",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.i686",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0.7?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0.7?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.7.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.7.src",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15467",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-01-16T14:21:50.710000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430376"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. A remote attacker can exploit a stack buffer overflow vulnerability by supplying a crafted Cryptographic Message Syntax (CMS) message with an oversized Initialization Vector (IV) when parsing AuthEnvelopedData structures that use Authenticated Encryption with Associated Data (AEAD) ciphers such as AES-GCM. This can lead to a crash, causing a Denial of Service (DoS), or potentially allow for remote code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. On Red Hat Enterprise Linux, OpenSSL is built with stack protections enabled which mitigate the risk of code execution though a denial-of-service condition remains possible. This vulnerability only affects applications and services that parse untrusted CMS or PKCS#7 content using AEAD ciphers, such as Kerberos using the PKINIT plugin. OpenSSL versions 1.1.1 and 1.0.2 are not affected by this issue.",
"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": [
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64"
],
"known_not_affected": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15467"
},
{
"category": "external",
"summary": "RHBZ#2430376",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430376"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15467",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15467"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15467"
}
],
"release_date": "2026-01-27T14:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-02T17:33:59+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1733"
},
{
"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": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: OpenSSL: Remote code execution or Denial of Service via oversized Initialization Vector in CMS parsing"
},
{
"cve": "CVE-2025-69419",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-01-16T14:21:52.793000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2430386"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. An out-of-bounds write in OpenSSL\u0027s PKCS12_get_friendlyname() function can lead to denial of service or arbitrary code execution. Exploitation requires an application to parse a specially crafted malicious PKCS#12 file. Red Hat FIPS modules are not affected as the PKCS#12 implementation is outside the FIPS module boundary.",
"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": [
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64"
],
"known_not_affected": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69419"
},
{
"category": "external",
"summary": "RHBZ#2430386",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2430386"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69419"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69419"
}
],
"release_date": "2026-01-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-02T17:33:59+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1733"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, Red Hat recommends avoiding the processing of PKCS#12 files from untrusted or unverified sources. Applications that use the `PKCS12_get_friendlyname()` API should ensure that PKCS#12 files are only processed if they originate from trusted entities. Restricting the input sources for PKCS#12 files can significantly reduce the attack surface for this flaw.",
"product_ids": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-devel-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.aarch64",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.ppc64le",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.s390x",
"AppStream-9.0.0.Z.E4S:openssl-perl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.src",
"BaseOS-9.0.0.Z.E4S:openssl-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debuginfo-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-debugsource-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-1:3.0.1-46.el9_0.7.x86_64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.aarch64",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.i686",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.ppc64le",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.s390x",
"BaseOS-9.0.0.Z.E4S:openssl-libs-debuginfo-1:3.0.1-46.el9_0.7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing"
}
]
}
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.