Action not permitted
Modal body text goes here.
cve-2024-4603
Vulnerability from cvelistv5
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-01T20:47:41.528Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "name": "OpenSSL Advisory", "tags": [ "vendor-advisory", "x_transferred" ], "url": "https://www.openssl.org/news/secadv/20240516.txt" }, { "name": "3.0.14 git commit", "tags": [ "patch", "x_transferred" ], "url": "https://github.com/openssl/openssl/commit/3559e868e58005d15c6013a0c1fd832e51c73397" }, { "name": "3.1.6 git commit", "tags": [ "patch", "x_transferred" ], "url": "https://github.com/openssl/openssl/commit/9c39b3858091c152f52513c066ff2c5a47969f0d" }, { "name": "3.2.2 git commit", "tags": [ "patch", "x_transferred" ], "url": "https://github.com/openssl/openssl/commit/da343d0605c826ef197aceedc67e8e04f065f740" }, { "name": "3.3.1 git commit", "tags": [ "patch", "x_transferred" ], "url": "https://github.com/openssl/openssl/commit/53ea06486d296b890d565fb971b2764fcd826e7e" }, { "tags": [ "x_transferred" ], "url": "http://www.openwall.com/lists/oss-security/2024/05/16/2" }, { "tags": [ "x_transferred" ], "url": "https://security.netapp.com/advisory/ntap-20240621-0001/" } ], "title": "CVE Program Container" }, { "affected": [ { "cpes": [ "cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*" ], "defaultStatus": "unaffected", "product": "openssl", "vendor": "openssl", "versions": [ { "lessThan": "3.0.14", "status": "affected", "version": "3.0.0", "versionType": "semver" }, { "lessThan": "3.1.6", "status": "affected", "version": "3.1.0", "versionType": "semver" }, { "lessThan": "3.2.2", "status": "affected", "version": "3.2.0", "versionType": "semver" }, { "lessThan": "3.3.1", "status": "affected", "version": "3.3.0", "versionType": "semver" } ] } ], "metrics": [ { "cvssV3_1": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 5.3, "baseSeverity": "MEDIUM", "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:L", "version": "3.1" } }, { "other": { "content": { "id": "CVE-2024-4603", "options": [ { "Exploitation": "none" }, { "Automatable": "yes" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2024-05-16T18:27:25.638098Z", "version": "2.0.3" }, "type": "ssvc" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-834", "description": "CWE-834 Excessive Iteration", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2024-08-13T15:11:57.009Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" } ], "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "OpenSSL", "vendor": "OpenSSL", "versions": [ { "lessThan": "3.0.14", "status": "affected", "version": "3.0.0", "versionType": "semver" }, { "lessThan": "3.1.6", "status": "affected", "version": "3.1.0", "versionType": "semver" }, { "lessThan": "3.2.2", "status": "affected", "version": "3.2.0", "versionType": "semver" }, { "lessThan": "3.3.1", "status": "affected", "version": "3.3.0", "versionType": "semver" } ] } ], "credits": [ { "lang": "en", "type": "finder", "user": "00000000-0000-4000-9000-000000000000", "value": "OSS-Fuzz" }, { "lang": "en", "type": "remediation developer", "user": "00000000-0000-4000-9000-000000000000", "value": "Tomas Mraz" } ], "datePublic": "2024-05-16T00:00:00.000Z", "descriptions": [ { "lang": "en", "supportingMedia": [ { "base64": false, "type": "text/html", "value": "Issue summary: Checking excessively long DSA keys or parameters may be very\u003cbr\u003eslow.\u003cbr\u003e\u003cbr\u003eImpact summary: Applications that use the functions EVP_PKEY_param_check()\u003cbr\u003eor EVP_PKEY_public_check() to check a DSA public key or DSA parameters may\u003cbr\u003eexperience long delays. Where the key or parameters that are being checked\u003cbr\u003ehave been obtained from an untrusted source this may lead to a Denial of\u003cbr\u003eService.\u003cbr\u003e\u003cbr\u003eThe functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform\u003cbr\u003evarious checks on DSA parameters. Some of those computations take a long time\u003cbr\u003eif the modulus (`p` parameter) is too large.\u003cbr\u003e\u003cbr\u003eTrying to use a very large modulus is slow and OpenSSL will not allow using\u003cbr\u003epublic keys with a modulus which is over 10,000 bits in length for signature\u003cbr\u003everification. However the key and parameter check functions do not limit\u003cbr\u003ethe modulus size when performing the checks.\u003cbr\u003e\u003cbr\u003eAn application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check()\u003cbr\u003eand supplies a key or parameters obtained from an untrusted source could be\u003cbr\u003evulnerable to a Denial of Service attack.\u003cbr\u003e\u003cbr\u003eThese functions are not called by OpenSSL itself on untrusted DSA keys so\u003cbr\u003eonly applications that directly call these functions may be vulnerable.\u003cbr\u003e\u003cbr\u003eAlso vulnerable are the OpenSSL pkey and pkeyparam command line applications\u003cbr\u003ewhen using the `-check` option.\u003cbr\u003e\u003cbr\u003eThe OpenSSL SSL/TLS implementation is not affected by this issue.\u003cbr\u003e\u003cbr\u003eThe OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue." } ], "value": "Issue summary: Checking excessively long DSA keys or parameters may be very\nslow.\n\nImpact summary: Applications that use the functions EVP_PKEY_param_check()\nor EVP_PKEY_public_check() to check a DSA public key or DSA parameters may\nexperience long delays. Where the key or parameters that are being checked\nhave been obtained from an untrusted source this may lead to a Denial of\nService.\n\nThe functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform\nvarious checks on DSA parameters. Some of those computations take a long time\nif the modulus (`p` parameter) is too large.\n\nTrying to use a very large modulus is slow and OpenSSL will not allow using\npublic keys with a modulus which is over 10,000 bits in length for signature\nverification. However the key and parameter check functions do not limit\nthe modulus size when performing the checks.\n\nAn application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check()\nand supplies a key or parameters obtained from an untrusted source could be\nvulnerable to a Denial of Service attack.\n\nThese functions are not called by OpenSSL itself on untrusted DSA keys so\nonly applications that directly call these functions may be vulnerable.\n\nAlso vulnerable are the OpenSSL pkey and pkeyparam command line applications\nwhen using the `-check` option.\n\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\n\nThe OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue." } ], "metrics": [ { "format": "other", "other": { "content": { "text": "Low" }, "type": "https://www.openssl.org/policies/secpolicy.html" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-606", "description": "CWE-606 Unchecked Input for Loop Condition", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2024-10-14T14:56:01.784Z", "orgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5", "shortName": "openssl" }, "references": [ { "name": "OpenSSL Advisory", "tags": [ "vendor-advisory" ], "url": "https://www.openssl.org/news/secadv/20240516.txt" }, { "name": "3.0.14 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/3559e868e58005d15c6013a0c1fd832e51c73397" }, { "name": "3.1.6 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/9c39b3858091c152f52513c066ff2c5a47969f0d" }, { "name": "3.2.2 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/da343d0605c826ef197aceedc67e8e04f065f740" }, { "name": "3.3.1 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/53ea06486d296b890d565fb971b2764fcd826e7e" } ], "source": { "discovery": "UNKNOWN" }, "title": "Excessive time spent checking DSA keys and parameters", "x_generator": { "engine": "Vulnogram 0.1.0-dev" } } }, "cveMetadata": { "assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5", "assignerShortName": "openssl", "cveId": "CVE-2024-4603", "datePublished": "2024-05-16T15:21:20.050Z", "dateReserved": "2024-05-07T11:44:02.196Z", "dateUpdated": "2024-10-14T14:56:01.784Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2024-4603\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2024-05-16T16:15:10.643\",\"lastModified\":\"2024-10-14T15:15:14.210\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Issue summary: Checking excessively long DSA keys or parameters may be very\\nslow.\\n\\nImpact summary: Applications that use the functions EVP_PKEY_param_check()\\nor EVP_PKEY_public_check() to check a DSA public key or DSA parameters may\\nexperience long delays. Where the key or parameters that are being checked\\nhave been obtained from an untrusted source this may lead to a Denial of\\nService.\\n\\nThe functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform\\nvarious checks on DSA parameters. Some of those computations take a long time\\nif the modulus (`p` parameter) is too large.\\n\\nTrying to use a very large modulus is slow and OpenSSL will not allow using\\npublic keys with a modulus which is over 10,000 bits in length for signature\\nverification. However the key and parameter check functions do not limit\\nthe modulus size when performing the checks.\\n\\nAn application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check()\\nand supplies a key or parameters obtained from an untrusted source could be\\nvulnerable to a Denial of Service attack.\\n\\nThese functions are not called by OpenSSL itself on untrusted DSA keys so\\nonly applications that directly call these functions may be vulnerable.\\n\\nAlso vulnerable are the OpenSSL pkey and pkeyparam command line applications\\nwhen using the `-check` option.\\n\\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\\n\\nThe OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.\"},{\"lang\":\"es\",\"value\":\"Resumen del problema: la comprobaci\u00f3n de claves o par\u00e1metros DSA excesivamente largos puede resultar muy lenta. Resumen de impacto: las aplicaciones que utilizan las funciones EVP_PKEY_param_check() o EVP_PKEY_public_check() para comprobar una clave p\u00fablica de DSA o par\u00e1metros de DSA pueden experimentar grandes retrasos. Cuando la clave o los par\u00e1metros que se est\u00e1n verificando se obtuvieron de una fuente que no es confiable, esto puede dar lugar a una Denegaci\u00f3n de Servicio. Las funciones EVP_PKEY_param_check() o EVP_PKEY_public_check() realizan varias comprobaciones de los par\u00e1metros DSA. Algunos de esos c\u00e1lculos toman mucho tiempo si el m\u00f3dulo (par\u00e1metro `p`) es demasiado grande. Intentar utilizar un m\u00f3dulo muy grande es lento y OpenSSL no permitir\u00e1 el uso de claves p\u00fablicas con un m\u00f3dulo de m\u00e1s de 10.000 bits de longitud para la verificaci\u00f3n de firmas. Sin embargo, las funciones de verificaci\u00f3n de claves y par\u00e1metros no limitan el tama\u00f1o del m\u00f3dulo al realizar las verificaciones. Una aplicaci\u00f3n que llama a EVP_PKEY_param_check() o EVP_PKEY_public_check() y proporciona una clave o par\u00e1metros obtenidos de una fuente que no es de confianza podr\u00eda ser vulnerable a un ataque de denegaci\u00f3n de servicio. OpenSSL no llama a estas funciones en claves DSA que no son de confianza, por lo que solo las aplicaciones que llaman directamente a estas funciones pueden ser vulnerables. Tambi\u00e9n son vulnerables las aplicaciones de l\u00ednea de comandos OpenSSL pkey y pkeyparam cuando se usa la opci\u00f3n `-check`. La implementaci\u00f3n de OpenSSL SSL/TLS no se ve afectada por este problema. Los proveedores FIPS OpenSSL 3.0 y 3.1 se ven afectados por este problema.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"LOW\",\"baseScore\":5.3,\"baseSeverity\":\"MEDIUM\"},\"exploitabilityScore\":3.9,\"impactScore\":1.4}]},\"weaknesses\":[{\"source\":\"openssl-security@openssl.org\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-606\"}]},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-834\"}]}],\"references\":[{\"url\":\"https://github.com/openssl/openssl/commit/3559e868e58005d15c6013a0c1fd832e51c73397\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/53ea06486d296b890d565fb971b2764fcd826e7e\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/9c39b3858091c152f52513c066ff2c5a47969f0d\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/da343d0605c826ef197aceedc67e8e04f065f740\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20240516.txt\",\"source\":\"openssl-security@openssl.org\"}]}}" } }
wid-sec-w-2024-1171
Vulnerability from csaf_certbund
Notes
{ "document": { "aggregate_severity": { "text": "mittel" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "OpenSSL ist eine im Quelltext frei verf\u00fcgbare Bibliothek, die Secure Sockets Layer (SSL) und Transport Layer Security (TLS) implementiert.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann eine Schwachstelle in OpenSSL ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren.", "title": "Angriff" }, { "category": "general", "text": "- Appliance\n- Linux\n- MacOS X\n- Sonstiges\n- UNIX\n- Windows", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2024-1171 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-1171.json" }, { "category": "self", "summary": "WID-SEC-2024-1171 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-1171" }, { "category": "external", "summary": "OpenSSL Security Advisory 16th May 2024 vom 2024-05-16", "url": "https://www.openssl.org/news/secadv/20240516.txt" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1789-1 vom 2024-05-27", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-May/018603.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1947-1 vom 2024-06-07", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018663.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2066-1 vom 2024-06-18", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/FEPGR4PUJO7QAVC45W5LDGC6S6WWRFPY/" }, { "category": "external", "summary": "Meinberg Security Advisory vom 2024-07-22", "url": "https://www.meinberg.de/german/news/meinberg-security-advisory-mbgsa-2024-04-lantime-firmware-v7-08-014.htm" }, { "category": "external", "summary": "IBM Security Bulletin 7162032 vom 2024-07-31", "url": "https://www.ibm.com/support/pages/node/7162032" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6937-1 vom 2024-07-31", "url": "https://ubuntu.com/security/notices/USN-6937-1" }, { "category": "external", "summary": "Securepoint UTM Changelog vom 2024-08-14", "url": "https://wiki.securepoint.de/UTM/Changelog" }, { "category": "external", "summary": "XEROX Security Advisory XRX24-013 vom 2024-09-05", "url": "https://securitydocs.business.xerox.com/wp-content/uploads/2024/09/Xerox-Security-Bulletin-XRX24-013-for-Xerox-FreeFlow-Print-Server-v2-_Windows10.pdf" } ], "source_lang": "en-US", "title": "OpenSSL: Schwachstelle erm\u00f6glicht Denial of Service", "tracking": { "current_release_date": "2024-09-05T22:00:00.000+00:00", "generator": { "date": "2024-09-06T08:14:37.540+00:00", "engine": { "name": "BSI-WID", "version": "1.3.6" } }, "id": "WID-SEC-W-2024-1171", "initial_release_date": "2024-05-16T22:00:00.000+00:00", "revision_history": [ { "date": "2024-05-16T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2024-05-27T22:00:00.000+00:00", "number": "2", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-09T22:00:00.000+00:00", "number": "3", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-18T22:00:00.000+00:00", "number": "4", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-07-23T22:00:00.000+00:00", "number": "5", "summary": "Neue Updates von Meinberg aufgenommen" }, { "date": "2024-07-30T22:00:00.000+00:00", "number": "6", "summary": "Neue Updates von IBM aufgenommen" }, { "date": "2024-07-31T22:00:00.000+00:00", "number": "7", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2024-08-14T22:00:00.000+00:00", "number": "8", "summary": "Neue Updates aufgenommen" }, { "date": "2024-09-05T22:00:00.000+00:00", "number": "9", "summary": "Neue Updates von XEROX aufgenommen" } ], "status": "final", "version": "9" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "7.3", "product": { "name": "IBM AIX 7.3", "product_id": "1139691", "product_identification_helper": { "cpe": "cpe:/o:ibm:aix:7.3" } } }, { "category": "product_version", "name": "7.2", "product": { "name": "IBM AIX 7.2", "product_id": "434967", "product_identification_helper": { "cpe": "cpe:/o:ibm:aix:7.2" } } } ], "category": "product_name", "name": "AIX" }, { "branches": [ { "category": "product_version", "name": "3.1", "product": { "name": "IBM VIOS 3.1", "product_id": "1039165", "product_identification_helper": { "cpe": "cpe:/a:ibm:vios:3.1" } } }, { "category": "product_version", "name": "4.1", "product": { "name": "IBM VIOS 4.1", "product_id": "1522854", "product_identification_helper": { "cpe": "cpe:/a:ibm:vios:4.1" } } } ], "category": "product_name", "name": "VIOS" } ], "category": "vendor", "name": "IBM" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003cV7.08.014", "product": { "name": "Meinberg LANTIME \u003cV7.08.014", "product_id": "T036396" } }, { "category": "product_version", "name": "V7.08.014", "product": { "name": "Meinberg LANTIME V7.08.014", "product_id": "T036396-fixed", "product_identification_helper": { "cpe": "cpe:/h:meinberg:lantime:v7.08.014" } } } ], "category": "product_name", "name": "LANTIME" } ], "category": "vendor", "name": "Meinberg" }, { "branches": [ { "branches": [ { "category": "product_version", "name": "3.1", "product": { "name": "Open Source OpenSSL 3.1", "product_id": "T028638", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.1" } } }, { "category": "product_version", "name": "3", "product": { "name": "Open Source OpenSSL 3.0", "product_id": "T030963", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.0" } } }, { "category": "product_version", "name": "3.0 FIPS", "product": { "name": "Open Source OpenSSL 3.0 FIPS", "product_id": "T034876", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.0::fips" } } }, { "category": "product_version", "name": "3.1 FIPS", "product": { "name": "Open Source OpenSSL 3.1 FIPS", "product_id": "T034877", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.1::fips" } } }, { "category": "product_version", "name": "3.2", "product": { "name": "Open Source OpenSSL 3.2", "product_id": "T034878", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.2" } } }, { "category": "product_version", "name": "3.3", "product": { "name": "Open Source OpenSSL 3.3", "product_id": "T034879", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.3" } } } ], "category": "product_name", "name": "OpenSSL" } ], "category": "vendor", "name": "Open Source" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux", "product": { "name": "SUSE Linux", "product_id": "T002207", "product_identification_helper": { "cpe": "cpe:/o:suse:suse_linux:-" } } } ], "category": "vendor", "name": "SUSE" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003c12.7.2", "product": { "name": "Securepoint UTM \u003c12.7.2", "product_id": "T036885" } }, { "category": "product_version", "name": "12.7.2", "product": { "name": "Securepoint UTM 12.7.2", "product_id": "T036885-fixed", "product_identification_helper": { "cpe": "cpe:/o:securepoint:unified_threat_management:12.7.2" } } } ], "category": "product_name", "name": "UTM" } ], "category": "vendor", "name": "Securepoint" }, { "branches": [ { "category": "product_name", "name": "Ubuntu Linux", "product": { "name": "Ubuntu Linux", "product_id": "T000126", "product_identification_helper": { "cpe": "cpe:/o:canonical:ubuntu_linux:-" } } } ], "category": "vendor", "name": "Ubuntu" }, { "branches": [ { "category": "product_name", "name": "Xerox FreeFlow Print Server", "product": { "name": "Xerox FreeFlow Print Server", "product_id": "T010509", "product_identification_helper": { "cpe": "cpe:/a:xerox:freeflow_print_server:-" } } } ], "category": "vendor", "name": "Xerox" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-4603", "notes": [ { "category": "description", "text": "Es besteht eine Schwachstelle in OpenSSL. Dies betrifft Anwendungen, die \u00f6ffentliche DSA-Schl\u00fcssel oder -Parameter mit den Funktionen \"EVP_PKEY_param_check()\" oder \"EVP_PKEY_public_check()\" validieren. Wenn der DSA Modulus (\"p\")-Parameter zu gro\u00df ist, dauern bestimmte Validierungen sehr lange und verz\u00f6gern die aufrufende Anwendung. Ein entfernter, anonymer Angreifer kann dies ausnutzen, um mit speziell gestalteten DSA-Schl\u00fcsseln einen Denial of Service-Zustand herbeizuf\u00fchren." } ], "product_status": { "known_affected": [ "T034877", "T034876", "T030963", "434967", "T034879", "T034878", "1039165", "1522854", "T036885", "T036396", "1139691", "T002207", "T000126", "T028638", "T010509" ] }, "release_date": "2024-05-16T22:00:00.000+00:00", "title": "CVE-2024-4603" } ] }
wid-sec-w-2024-1645
Vulnerability from csaf_certbund
Notes
{ "document": { "aggregate_severity": { "text": "mittel" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "Die Oracle Datenbank ist ein weit verbreitetes relationales Datenbanksystem.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in Oracle Database Server ausnutzen, um die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit zu gef\u00e4hrden.", "title": "Angriff" }, { "category": "general", "text": "- Sonstiges\n- UNIX\n- Windows", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2024-1645 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-1645.json" }, { "category": "self", "summary": "WID-SEC-2024-1645 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-1645" }, { "category": "external", "summary": "Oracle Critical Patch Update Advisory - July 2024 - Appendix Oracle Database Server vom 2024-07-16", "url": "https://www.oracle.com/security-alerts/cpujul2024.html#AppendixDB" } ], "source_lang": "en-US", "title": "Oracle Database Server: Mehrere Schwachstellen", "tracking": { "current_release_date": "2024-07-16T22:00:00.000+00:00", "generator": { "date": "2024-08-15T18:11:28.160+00:00", "engine": { "name": "BSI-WID", "version": "1.3.5" } }, "id": "WID-SEC-W-2024-1645", "initial_release_date": "2024-07-16T22:00:00.000+00:00", "revision_history": [ { "date": "2024-07-16T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "23.4", "product": { "name": "Oracle Database Server 23.4", "product_id": "T036180", "product_identification_helper": { "cpe": "cpe:/a:oracle:database_server:23.4" } } }, { "category": "product_version_range", "name": "\u003c=19.23", "product": { "name": "Oracle Database Server \u003c=19.23", "product_id": "T036181" } }, { "category": "product_version_range", "name": "\u003c=21.14", "product": { "name": "Oracle Database Server \u003c=21.14", "product_id": "T036182" } } ], "category": "product_name", "name": "Database Server" } ], "category": "vendor", "name": "Oracle" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-41881", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2022-41881" }, { "cve": "CVE-2024-0397", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-0397" }, { "cve": "CVE-2024-21098", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-21098" }, { "cve": "CVE-2024-21123", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-21123" }, { "cve": "CVE-2024-21126", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-21126" }, { "cve": "CVE-2024-21174", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-21174" }, { "cve": "CVE-2024-21184", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-21184" }, { "cve": "CVE-2024-4603", "notes": [ { "category": "description", "text": "In Oracle Database Server existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"Hoch\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T036180" ], "last_affected": [ "T036182", "T036181" ] }, "release_date": "2024-07-16T22:00:00.000+00:00", "title": "CVE-2024-4603" } ] }
wid-sec-w-2024-2112
Vulnerability from csaf_certbund
Notes
{ "document": { "aggregate_severity": { "text": "mittel" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "InsydeH2O UEFI BIOS ist eine propriet\u00e4re, lizenzierte UEFI-BIOS-Firmware, die Intel und AMD basierte Computer unterst\u00fctzt.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Insyde UEFI Firmware ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren.", "title": "Angriff" }, { "category": "general", "text": "- BIOS/Firmware", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2024-2112 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-2112.json" }, { "category": "self", "summary": "WID-SEC-2024-2112 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-2112" }, { "category": "external", "summary": "Insyde Security Pledge INSYDE-SA-2024009 vom 2024-09-10", "url": "https://www.insyde.com/security-pledge/SA-2024009" } ], "source_lang": "en-US", "title": "Insyde UEFI Firmware: Mehrere Schwachstellen erm\u00f6glichen Denial of Service", "tracking": { "current_release_date": "2024-09-10T22:00:00.000+00:00", "generator": { "date": "2024-09-11T09:40:00.857+00:00", "engine": { "name": "BSI-WID", "version": "1.3.6" } }, "id": "WID-SEC-W-2024-2112", "initial_release_date": "2024-09-10T22:00:00.000+00:00", "revision_history": [ { "date": "2024-09-10T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "OpenSSL \u003c3.2.1", "product": { "name": "Insyde UEFI Firmware OpenSSL \u003c3.2.1", "product_id": "T037494" } }, { "category": "product_version", "name": "OpenSSL 3.2.1", "product": { "name": "Insyde UEFI Firmware OpenSSL 3.2.1", "product_id": "T037494-fixed", "product_identification_helper": { "cpe": "cpe:/h:insyde:uefi:openssl__3.2.1" } } } ], "category": "product_name", "name": "UEFI Firmware" } ], "category": "vendor", "name": "Insyde" } ] }, "vulnerabilities": [ { "cve": "CVE-2023-5678", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2023-5678" }, { "cve": "CVE-2024-0727", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-0727" }, { "cve": "CVE-2024-2511", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-2511" }, { "cve": "CVE-2024-4603", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-4603" }, { "cve": "CVE-2024-4741", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-4741" }, { "cve": "CVE-2024-5535", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-5535" } ] }
rhsa-2024_9333
Vulnerability from csaf_redhat
Notes
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Low" }, "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 and openssl-fips-provider is now available for Red Hat Enterprise Linux 9.\n\nRed Hat Product Security has rated this update as having a security impact of Low. 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: Unbounded memory growth with session handling in TLSv1.3 (CVE-2024-2511)\n\n* openssl: Excessive time spent checking DSA keys and parameters (CVE-2024-4603)\n\n* openssl: Use After Free with SSL_free_buffers (CVE-2024-4741)\n\n* openssl: SSL_select_next_proto buffer overread (CVE-2024-5535)\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.\n\nAdditional Changes:\n\nFor detailed information on changes in this release, see the Red Hat Enterprise Linux 9.5 Release Notes linked from 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-2024:9333", "url": "https://access.redhat.com/errata/RHSA-2024:9333" }, { "category": "external", "summary": "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/9.5_release_notes/index", "url": "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/9.5_release_notes/index" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#low", "url": "https://access.redhat.com/security/updates/classification/#low" }, { "category": "external", "summary": "2274020", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2274020" }, { "category": "external", "summary": "2281029", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281029" }, { "category": "external", "summary": "2283757", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283757" }, { "category": "external", "summary": "2294581", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2294581" }, { "category": "external", "summary": "RHEL-26271", "url": "https://issues.redhat.com/browse/RHEL-26271" }, { "category": "external", "summary": "RHEL-32123", "url": "https://issues.redhat.com/browse/RHEL-32123" }, { "category": "external", "summary": "RHEL-38514", "url": "https://issues.redhat.com/browse/RHEL-38514" }, { "category": "external", "summary": "RHEL-40723", "url": "https://issues.redhat.com/browse/RHEL-40723" }, { "category": "external", "summary": "RHEL-58662", "url": "https://issues.redhat.com/browse/RHEL-58662" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_9333.json" } ], "title": "Red Hat Security Advisory: openssl and openssl-fips-provider security update", "tracking": { "current_release_date": "2025-02-07T06:28:10+00:00", "generator": { "date": "2025-02-07T06:28:10+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.3.0" } }, "id": "RHSA-2024:9333", "initial_release_date": "2024-11-12T09:22:03+00:00", "revision_history": [ { "date": "2024-11-12T09:22:03+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-11-12T09:22:03+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2025-02-07T06:28:10+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.5.0.GA", "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.5.0.GA", "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-1:3.2.2-6.el9_5.src", "product": { "name": "openssl-1:3.2.2-6.el9_5.src", "product_id": "openssl-1:3.2.2-6.el9_5.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl@3.2.2-6.el9_5?arch=src\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-fips-provider-0:3.0.7-6.el9_5.src", "product": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.src", "product_id": "openssl-fips-provider-0:3.0.7-6.el9_5.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider@3.0.7-6.el9_5?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "openssl-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-libs-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-libs-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-devel-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-devel-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-devel-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-devel@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-perl-1:3.2.2-6.el9_5.aarch64", "product": { "name": "openssl-perl-1:3.2.2-6.el9_5.aarch64", "product_id": "openssl-perl-1:3.2.2-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-perl@3.2.2-6.el9_5?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "product": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "product_id": "openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider@3.0.7-6.el9_5?arch=aarch64" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "product": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "product_id": "openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so@3.0.7-6.el9_5?arch=aarch64" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "product": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "product_id": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debugsource@3.0.7-6.el9_5?arch=aarch64" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "product": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "product_id": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debuginfo@3.0.7-6.el9_5?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "openssl-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-libs-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-libs-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-devel-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-devel-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-devel-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-devel@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-perl-1:3.2.2-6.el9_5.ppc64le", "product": { "name": "openssl-perl-1:3.2.2-6.el9_5.ppc64le", "product_id": "openssl-perl-1:3.2.2-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-perl@3.2.2-6.el9_5?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "product": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "product_id": "openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider@3.0.7-6.el9_5?arch=ppc64le" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "product": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "product_id": "openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so@3.0.7-6.el9_5?arch=ppc64le" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "product": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "product_id": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debugsource@3.0.7-6.el9_5?arch=ppc64le" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "product": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "product_id": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debuginfo@3.0.7-6.el9_5?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "openssl-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-libs-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-libs-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-devel-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-devel-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-devel-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-devel@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-perl-1:3.2.2-6.el9_5.x86_64", "product": { "name": "openssl-perl-1:3.2.2-6.el9_5.x86_64", "product_id": "openssl-perl-1:3.2.2-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-perl@3.2.2-6.el9_5?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "product": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "product_id": "openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider@3.0.7-6.el9_5?arch=x86_64" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "product": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "product_id": "openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so@3.0.7-6.el9_5?arch=x86_64" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "product": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "product_id": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debugsource@3.0.7-6.el9_5?arch=x86_64" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "product": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "product_id": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debuginfo@3.0.7-6.el9_5?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "openssl-libs-1:3.2.2-6.el9_5.i686", "product": { "name": "openssl-libs-1:3.2.2-6.el9_5.i686", "product_id": "openssl-libs-1:3.2.2-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs@3.2.2-6.el9_5?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debugsource-1:3.2.2-6.el9_5.i686", "product": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.i686", "product_id": "openssl-debugsource-1:3.2.2-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-6.el9_5?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debuginfo-1:3.2.2-6.el9_5.i686", "product": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.i686", "product_id": "openssl-debuginfo-1:3.2.2-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-6.el9_5?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "product": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "product_id": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-6.el9_5?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-devel-1:3.2.2-6.el9_5.i686", "product": { "name": "openssl-devel-1:3.2.2-6.el9_5.i686", "product_id": "openssl-devel-1:3.2.2-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-devel@3.2.2-6.el9_5?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-fips-provider-0:3.0.7-6.el9_5.i686", "product": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.i686", "product_id": "openssl-fips-provider-0:3.0.7-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider@3.0.7-6.el9_5?arch=i686" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "product": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "product_id": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debugsource@3.0.7-6.el9_5?arch=i686" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "product": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "product_id": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debuginfo@3.0.7-6.el9_5?arch=i686" } } } ], "category": "architecture", "name": "i686" }, { "branches": [ { "category": "product_version", "name": "openssl-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-libs-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-libs-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debugsource-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-debugsource-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debugsource@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-debuginfo@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-devel-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-devel-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-devel-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-devel@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-perl-1:3.2.2-6.el9_5.s390x", "product": { "name": "openssl-perl-1:3.2.2-6.el9_5.s390x", "product_id": "openssl-perl-1:3.2.2-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-perl@3.2.2-6.el9_5?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "product": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "product_id": "openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider@3.0.7-6.el9_5?arch=s390x" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "product": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "product_id": "openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so@3.0.7-6.el9_5?arch=s390x" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "product": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "product_id": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debugsource@3.0.7-6.el9_5?arch=s390x" } } }, { "category": "product_version", "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "product": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "product_id": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/openssl-fips-provider-so-debuginfo@3.0.7-6.el9_5?arch=s390x" } } } ], "category": "architecture", "name": "s390x" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src" }, "product_reference": "openssl-1:3.2.2-6.el9_5.src", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "AppStream-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src" }, "product_reference": "openssl-1:3.2.2-6.el9_5.src", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-devel-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-devel-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64" }, "product_reference": "openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686" }, "product_reference": "openssl-fips-provider-0:3.0.7-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le" }, "product_reference": "openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x" }, "product_reference": "openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src" }, "product_reference": "openssl-fips-provider-0:3.0.7-6.el9_5.src", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-0:3.0.7-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64" }, "product_reference": "openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64" }, "product_reference": "openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le" }, "product_reference": "openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x" }, "product_reference": "openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64" }, "product_reference": "openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64" }, "product_reference": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686" }, "product_reference": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le" }, "product_reference": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x" }, "product_reference": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64" }, "product_reference": "openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64" }, "product_reference": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686" }, "product_reference": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le" }, "product_reference": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x" }, "product_reference": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" }, "product_reference": "openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-libs-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.aarch64", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.ppc64le", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.s390x", "relates_to_product_reference": "BaseOS-9.5.0.GA" }, { "category": "default_component_of", "full_product_name": { "name": "openssl-perl-1:3.2.2-6.el9_5.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", "product_id": "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" }, "product_reference": "openssl-perl-1:3.2.2-6.el9_5.x86_64", "relates_to_product_reference": "BaseOS-9.5.0.GA" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-2511", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "discovery_date": "2024-04-08T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2274020" } ], "notes": [ { "category": "description", "text": "A flaw was found in OpenSSL. A malicious client can trigger an uncontrolled memory consumption, resulting in a Denial of Service. This issue occurs due to OpenSSL\u0027s TLSv3.1 session cache going into an incorrect state, leading to it failing to flush properly as it fills. OpenSSL must be configured with the non-default SSL_OP_NO_TICKET option enabled to be vulnerable. This issue only affects TLSv1.3 servers, while TLS clients are not affected.", "title": "Vulnerability description" }, { "category": "summary", "text": "openssl: Unbounded memory growth with session handling in TLSv1.3", "title": "Vulnerability summary" }, { "category": "other", "text": "The OpenSSL version shipped with Red Hat Enterprise Linux 7 is not affected by this issue, as the version 1.0.2 does not contain the related bug.", "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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "known_not_affected": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-2511" }, { "category": "external", "summary": "RHBZ#2274020", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2274020" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-2511", "url": "https://www.cve.org/CVERecord?id=CVE-2024-2511" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-2511", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-2511" }, { "category": "external", "summary": "https://www.openssl.org/news/vulnerabilities.html", "url": "https://www.openssl.org/news/vulnerabilities.html" } ], "release_date": "2024-04-08T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-11-12T09:22:03+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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:9333" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 3.7, "baseSeverity": "LOW", "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:L", "version": "3.1" }, "products": [ "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "openssl: Unbounded memory growth with session handling in TLSv1.3" }, { "cve": "CVE-2024-4603", "discovery_date": "2024-05-17T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281029" } ], "notes": [ { "category": "description", "text": "A flaw was found in OpenSSL. Applications that use the EVP_PKEY_param_check() or EVP_PKEY_public_check() function to check a DSA public key or DSA parameters may experience long delays when checking excessively long DSA keys or parameters.\u00a0 In applications that allow untrusted sources to provide the key or parameters that are checked, an attacker may be able to cause a denial of service. These functions are not called by OpenSSL on untrusted DSA keys. The applications that directly call these functions are the ones that may be vulnerable to this issue.", "title": "Vulnerability description" }, { "category": "summary", "text": "openssl: Excessive time spent checking DSA keys and parameters", "title": "Vulnerability summary" }, { "category": "other", "text": "Only OpenSSL 3.3, 3.2, 3.1 and 3.0 are vulnerable to this issue. OpenSSL 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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "known_not_affected": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-4603" }, { "category": "external", "summary": "RHBZ#2281029", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281029" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-4603", "url": "https://www.cve.org/CVERecord?id=CVE-2024-4603" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-4603", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-4603" }, { "category": "external", "summary": "https://www.openssl.org/news/secadv/20240516.txt", "url": "https://www.openssl.org/news/secadv/20240516.txt" } ], "release_date": "2024-05-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-11-12T09:22:03+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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:9333" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 5.3, "baseSeverity": "MEDIUM", "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:L", "version": "3.1" }, "products": [ "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "openssl: Excessive time spent checking DSA keys and parameters" }, { "cve": "CVE-2024-4741", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-05-29T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2283757" } ], "notes": [ { "category": "description", "text": "A use-after-free vulnerability was found in OpenSSL. Calling the OpenSSL API SSL_free_buffers function may cause memory to be accessed that was previously freed in some situations.", "title": "Vulnerability description" }, { "category": "summary", "text": "openssl: Use After Free with SSL_free_buffers", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability is classified as low severity rather than moderate because it only affects applications that explicitly call SSL_free_buffers, a rarely used OpenSSL function. \n\nThe issue arises in specific conditions where the function is called while a buffer is still in use, leading to a potential use-after-free scenario. However, exploitation is significantly constrained because\n\n(1) an application must intentionally invoke this function, which is not typical in common OpenSSL usage, \n\n(2) triggering the vulnerability requires precise timing and conditions where partially processed records remain unread or incomplete, and \n\n(3) there are no known active exploits leveraging this issue. \n\nGiven these factors, while the bug could theoretically lead to crashes or corruption, the practical risk of widespread exploitation remains minimal.", "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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "known_not_affected": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-4741" }, { "category": "external", "summary": "RHBZ#2283757", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283757" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-4741", "url": "https://www.cve.org/CVERecord?id=CVE-2024-4741" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-4741", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-4741" }, { "category": "external", "summary": "https://www.openssl.org/news/secadv/20240528.txt", "url": "https://www.openssl.org/news/secadv/20240528.txt" } ], "release_date": "2024-05-28T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-11-12T09:22:03+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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:9333" }, { "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": [ "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 5.6, "baseSeverity": "MEDIUM", "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:L", "version": "3.1" }, "products": [ "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "openssl: Use After Free with SSL_free_buffers" }, { "cve": "CVE-2024-5535", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "discovery_date": "2024-06-27T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2294581" } ], "notes": [ { "category": "description", "text": "A flaw was found in OpenSSL. Affected versions of this package are vulnerable to Information Exposure through the SSL_select_next_proto function. This flaw allows an attacker to cause unexpected application behavior or a crash by exploiting the buffer overread condition when the function is called with a zero-length client list. This issue is only exploitable if the application is misconfigured to use a zero-length server list and mishandles the \u0027no overlap\u0027 response in ALPN or uses the output as the opportunistic protocol in NPN.", "title": "Vulnerability description" }, { "category": "summary", "text": "openssl: SSL_select_next_proto buffer overread", "title": "Vulnerability summary" }, { "category": "other", "text": "The FIPS modules in versions 3.3, 3.2, 3.1, and 3.0 are not affected by this issue.\nThe packages shim and shim-unsigned-x64 are not impacted by this CVE, as the affected OpenSSL code path is not utilized.", "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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "known_not_affected": [ "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-5535" }, { "category": "external", "summary": "RHBZ#2294581", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2294581" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-5535", "url": "https://www.cve.org/CVERecord?id=CVE-2024-5535" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-5535", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-5535" }, { "category": "external", "summary": "https://www.oracle.com/security-alerts/cpuoct2024.html#AppendixMSQL", "url": "https://www.oracle.com/security-alerts/cpuoct2024.html#AppendixMSQL" } ], "release_date": "2024-06-27T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-11-12T09:22:03+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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:9333" }, { "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.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.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.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.0" }, "products": [ "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "AppStream-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "AppStream-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-debugsource-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-devel-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.src", "BaseOS-9.5.0.GA:openssl-fips-provider-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debuginfo-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-fips-provider-so-debugsource-0:3.0.7-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.i686", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-libs-debuginfo-1:3.2.2-6.el9_5.x86_64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.aarch64", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.ppc64le", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.s390x", "BaseOS-9.5.0.GA:openssl-perl-1:3.2.2-6.el9_5.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "openssl: SSL_select_next_proto buffer overread" } ] }
ghsa-85xr-ghj6-6m46
Vulnerability from github
Issue summary: Checking excessively long DSA keys or parameters may be very slow.
Impact summary: Applications that use the functions EVP_PKEY_param_check() or EVP_PKEY_public_check() to check a DSA public key or DSA parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service.
The functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform
various checks on DSA parameters. Some of those computations take a long time
if the modulus (p
parameter) is too large.
Trying to use a very large modulus is slow and OpenSSL will not allow using public keys with a modulus which is over 10,000 bits in length for signature verification. However the key and parameter check functions do not limit the modulus size when performing the checks.
An application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack.
These functions are not called by OpenSSL itself on untrusted DSA keys so only applications that directly call these functions may be vulnerable.
Also vulnerable are the OpenSSL pkey and pkeyparam command line applications
when using the -check
option.
The OpenSSL SSL/TLS implementation is not affected by this issue.
The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.
{ "affected": [], "aliases": [ "CVE-2024-4603" ], "database_specific": { "cwe_ids": [ "CWE-606", "CWE-834" ], "github_reviewed": false, "github_reviewed_at": null, "nvd_published_at": "2024-05-16T16:15:10Z", "severity": "MODERATE" }, "details": "Issue summary: Checking excessively long DSA keys or parameters may be very\nslow.\n\nImpact summary: Applications that use the functions EVP_PKEY_param_check()\nor EVP_PKEY_public_check() to check a DSA public key or DSA parameters may\nexperience long delays. Where the key or parameters that are being checked\nhave been obtained from an untrusted source this may lead to a Denial of\nService.\n\nThe functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform\nvarious checks on DSA parameters. Some of those computations take a long time\nif the modulus (`p` parameter) is too large.\n\nTrying to use a very large modulus is slow and OpenSSL will not allow using\npublic keys with a modulus which is over 10,000 bits in length for signature\nverification. However the key and parameter check functions do not limit\nthe modulus size when performing the checks.\n\nAn application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check()\nand supplies a key or parameters obtained from an untrusted source could be\nvulnerable to a Denial of Service attack.\n\nThese functions are not called by OpenSSL itself on untrusted DSA keys so\nonly applications that directly call these functions may be vulnerable.\n\nAlso vulnerable are the OpenSSL pkey and pkeyparam command line applications\nwhen using the `-check` option.\n\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\n\nThe OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.", "id": "GHSA-85xr-ghj6-6m46", "modified": "2024-08-13T18:31:13Z", "published": "2024-05-16T18:30:32Z", "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-4603" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/3559e868e58005d15c6013a0c1fd832e51c73397" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/53ea06486d296b890d565fb971b2764fcd826e7e" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/9c39b3858091c152f52513c066ff2c5a47969f0d" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/da343d0605c826ef197aceedc67e8e04f065f740" }, { "type": "WEB", "url": "https://security.netapp.com/advisory/ntap-20240621-0001" }, { "type": "WEB", "url": "https://www.openssl.org/news/secadv/20240516.txt" }, { "type": "WEB", "url": "http://www.openwall.com/lists/oss-security/2024/05/16/2" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "type": "CVSS_V3" } ] }
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.