Action not permitted
Modal body text goes here.
cve-2024-4741
Vulnerability from cvelistv5
{ "containers": { "adp": [ { "affected": [ { "cpes": [ "cpe:2.3:a:openssl:openssl:-:*:*:*:*:*:*:*" ], "defaultStatus": "unknown", "product": "openssl", "vendor": "openssl", "versions": [ { "lessThan": "1.1.1y", "status": "affected", "version": "1.1.1", "versionType": "semver" }, { "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": "HIGH", "baseScore": 7.5, "baseSeverity": "HIGH", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" } }, { "other": { "content": { "id": "CVE-2024-4741", "options": [ { "Exploitation": "none" }, { "Automatable": "yes" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2024-11-13T14:45:07.092438Z", "version": "2.0.3" }, "type": "ssvc" } } ], "providerMetadata": { "dateUpdated": "2024-11-13T14:49:05.977Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" } ], "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "OpenSSL", "vendor": "OpenSSL", "versions": [ { "lessThan": "3.3.1", "status": "affected", "version": "3.3.0", "versionType": "semver" }, { "lessThan": "3.2.2", "status": "affected", "version": "3.2.0", "versionType": "semver" }, { "lessThan": "3.1.6", "status": "affected", "version": "3.1.0", "versionType": "semver" }, { "lessThan": "3.0.14", "status": "affected", "version": "3.0.0", "versionType": "semver" }, { "lessThan": "1.1.1y", "status": "affected", "version": "1.1.1", "versionType": "custom" } ] } ], "credits": [ { "lang": "en", "type": "finder", "value": "William Ahern (Akamai)" }, { "lang": "en", "type": "remediation developer", "value": "Matt Caswell" }, { "lang": "en", "type": "remediation developer", "value": "Watson Ladd (Akamai)" } ], "datePublic": "2024-05-27T23:00:00.000Z", "descriptions": [ { "lang": "en", "supportingMedia": [ { "base64": false, "type": "text/html", "value": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause\u003cbr\u003ememory to be accessed that was previously freed in some situations\u003cbr\u003e\u003cbr\u003eImpact summary: A use after free can have a range of potential consequences such\u003cbr\u003eas the corruption of valid data, crashes or execution of arbitrary code.\u003cbr\u003eHowever, only applications that directly call the SSL_free_buffers function are\u003cbr\u003eaffected by this issue. Applications that do not call this function are not\u003cbr\u003evulnerable. Our investigations indicate that this function is rarely used by\u003cbr\u003eapplications.\u003cbr\u003e\u003cbr\u003eThe SSL_free_buffers function is used to free the internal OpenSSL buffer used\u003cbr\u003ewhen processing an incoming record from the network. The call is only expected\u003cbr\u003eto succeed if the buffer is not currently in use. However, two scenarios have\u003cbr\u003ebeen identified where the buffer is freed even when still in use.\u003cbr\u003e\u003cbr\u003eThe first scenario occurs where a record header has been received from the\u003cbr\u003enetwork and processed by OpenSSL, but the full record body has not yet arrived.\u003cbr\u003eIn this case calling SSL_free_buffers will succeed even though a record has only\u003cbr\u003ebeen partially processed and the buffer is still in use.\u003cbr\u003e\u003cbr\u003eThe second scenario occurs where a full record containing application data has\u003cbr\u003ebeen received and processed by OpenSSL but the application has only read part of\u003cbr\u003ethis data. Again a call to SSL_free_buffers will succeed even though the buffer\u003cbr\u003eis still in use.\u003cbr\u003e\u003cbr\u003eWhile these scenarios could occur accidentally during normal operation a\u003cbr\u003emalicious attacker could attempt to engineer a stituation where this occurs.\u003cbr\u003eWe are not aware of this issue being actively exploited.\u003cbr\u003e\u003cbr\u003eThe FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue." } ], "value": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause\nmemory to be accessed that was previously freed in some situations\n\nImpact summary: A use after free can have a range of potential consequences such\nas the corruption of valid data, crashes or execution of arbitrary code.\nHowever, only applications that directly call the SSL_free_buffers function are\naffected by this issue. Applications that do not call this function are not\nvulnerable. Our investigations indicate that this function is rarely used by\napplications.\n\nThe SSL_free_buffers function is used to free the internal OpenSSL buffer used\nwhen processing an incoming record from the network. The call is only expected\nto succeed if the buffer is not currently in use. However, two scenarios have\nbeen identified where the buffer is freed even when still in use.\n\nThe first scenario occurs where a record header has been received from the\nnetwork and processed by OpenSSL, but the full record body has not yet arrived.\nIn this case calling SSL_free_buffers will succeed even though a record has only\nbeen partially processed and the buffer is still in use.\n\nThe second scenario occurs where a full record containing application data has\nbeen received and processed by OpenSSL but the application has only read part of\nthis data. Again a call to SSL_free_buffers will succeed even though the buffer\nis still in use.\n\nWhile these scenarios could occur accidentally during normal operation a\nmalicious attacker could attempt to engineer a stituation where this occurs.\nWe are not aware of this issue being actively exploited.\n\nThe FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue." } ], "metrics": [ { "format": "other", "other": { "content": { "text": "Low" }, "type": "https://www.openssl.org/policies/secpolicy.html" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-416", "description": "CWE-416 Use After Free", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2024-11-13T10:20:50.711Z", "orgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5", "shortName": "openssl" }, "references": [ { "name": "OpenSSL Advisory", "tags": [ "vendor-advisory" ], "url": "https://www.openssl.org/news/secadv/20240528.txt" }, { "name": "3.3.1 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/e5093133c35ca82874ad83697af76f4b0f7e3bd8" }, { "name": "3.2.2 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/c88c3de51020c37e8706bf7a682a162593053aac" }, { "name": "3.1.6 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/704f725b96aa373ee45ecfb23f6abfe8be8d9177" }, { "name": "3.0.14 git commit", "tags": [ "patch" ], "url": "https://github.com/openssl/openssl/commit/b3f0eb0a295f58f16ba43ba99dad70d4ee5c437d" }, { "name": "1.1.1y git commit", "tags": [ "patch" ], "url": "https://github.openssl.org/openssl/extended-releases/commit/f7a045f3143fc6da2ee66bf52d8df04829590dd4" } ], "source": { "discovery": "UNKNOWN" }, "title": "Use After Free with SSL_free_buffers", "x_generator": { "engine": "Vulnogram 0.2.0" } } }, "cveMetadata": { "assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5", "assignerShortName": "openssl", "cveId": "CVE-2024-4741", "datePublished": "2024-11-13T10:20:50.711Z", "dateReserved": "2024-05-10T09:56:11.310Z", "dateUpdated": "2024-11-13T14:49:05.977Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2024-4741\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2024-11-13T11:15:04.480\",\"lastModified\":\"2024-11-13T17:01:16.850\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause\\nmemory to be accessed that was previously freed in some situations\\n\\nImpact summary: A use after free can have a range of potential consequences such\\nas the corruption of valid data, crashes or execution of arbitrary code.\\nHowever, only applications that directly call the SSL_free_buffers function are\\naffected by this issue. Applications that do not call this function are not\\nvulnerable. Our investigations indicate that this function is rarely used by\\napplications.\\n\\nThe SSL_free_buffers function is used to free the internal OpenSSL buffer used\\nwhen processing an incoming record from the network. The call is only expected\\nto succeed if the buffer is not currently in use. However, two scenarios have\\nbeen identified where the buffer is freed even when still in use.\\n\\nThe first scenario occurs where a record header has been received from the\\nnetwork and processed by OpenSSL, but the full record body has not yet arrived.\\nIn this case calling SSL_free_buffers will succeed even though a record has only\\nbeen partially processed and the buffer is still in use.\\n\\nThe second scenario occurs where a full record containing application data has\\nbeen received and processed by OpenSSL but the application has only read part of\\nthis data. Again a call to SSL_free_buffers will succeed even though the buffer\\nis still in use.\\n\\nWhile these scenarios could occur accidentally during normal operation a\\nmalicious attacker could attempt to engineer a stituation where this occurs.\\nWe are not aware of this issue being actively exploited.\\n\\nThe FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"openssl-security@openssl.org\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-416\"}]}],\"references\":[{\"url\":\"https://github.com/openssl/openssl/commit/704f725b96aa373ee45ecfb23f6abfe8be8d9177\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/b3f0eb0a295f58f16ba43ba99dad70d4ee5c437d\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/c88c3de51020c37e8706bf7a682a162593053aac\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.com/openssl/openssl/commit/e5093133c35ca82874ad83697af76f4b0f7e3bd8\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://github.openssl.org/openssl/extended-releases/commit/f7a045f3143fc6da2ee66bf52d8df04829590dd4\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20240528.txt\",\"source\":\"openssl-security@openssl.org\"}]}}" } }
wid-sec-w-2024-1240
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 beliebigen Code auszuf\u00fchren, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen und Daten zu manipulieren.", "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-1240 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-1240.json" }, { "category": "self", "summary": "WID-SEC-2024-1240 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-1240" }, { "category": "external", "summary": "OpenSSL Security Advisory 28th May 2024 vom 2024-05-28", "url": "https://www.openssl.org/news/secadv/20240528.txt" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2020-1 vom 2024-06-13", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/FRKC6MTTC2OHBLDFWWYWRJXOWRLSQD5N/" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2035-1 vom 2024-06-17", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018730.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2036-1 vom 2024-06-17", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018729.html" }, { "category": "external", "summary": "Fedora Security Advisory FEDORA-EPEL-2024-C58045D54F vom 2024-06-18", "url": "https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2024-c58045d54f" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2051-1 vom 2024-06-18", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018732.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": "SUSE Security Update SUSE-SU-2024:2059-1 vom 2024-06-18", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/message/KTCLC2WCMISEBFZZUIWULJWTUJURF3FA/" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2089-1 vom 2024-06-19", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018758.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2088-1 vom 2024-06-19", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018759.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2197-1 vom 2024-06-25", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018817.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2271-1 vom 2024-07-02", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018839.html" }, { "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" } ], "source_lang": "en-US", "title": "OpenSSL: Schwachstelle erm\u00f6glicht Codeausf\u00fchrung, Datenmanipulation, Offenlegung von Informationen und Dos", "tracking": { "current_release_date": "2024-07-23T22:00:00.000+00:00", "generator": { "date": "2024-07-24T09:08:13.230+00:00", "engine": { "name": "BSI-WID", "version": "1.3.0" } }, "id": "WID-SEC-W-2024-1240", "initial_release_date": "2024-05-28T22:00:00.000+00:00", "revision_history": [ { "date": "2024-05-28T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2024-05-30T22:00:00.000+00:00", "number": "2", "summary": "Bewertung angepasst" }, { "date": "2024-06-13T22:00:00.000+00:00", "number": "3", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-16T22:00:00.000+00:00", "number": "4", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-17T22:00:00.000+00:00", "number": "5", "summary": "Neue Updates von Fedora und SUSE aufgenommen" }, { "date": "2024-06-18T22:00:00.000+00:00", "number": "6", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-19T22:00:00.000+00:00", "number": "7", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-25T22:00:00.000+00:00", "number": "8", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-07-02T22:00:00.000+00:00", "number": "9", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-07-23T22:00:00.000+00:00", "number": "10", "summary": "Neue Updates von Meinberg aufgenommen" } ], "status": "final", "version": "10" } }, "product_tree": { "branches": [ { "branches": [ { "category": "product_name", "name": "Fedora Linux", "product": { "name": "Fedora Linux", "product_id": "74185", "product_identification_helper": { "cpe": "cpe:/o:fedoraproject:fedora:-" } } } ], "category": "vendor", "name": "Fedora" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003cV7.08.014", "product": { "name": "Meinberg LANTIME \u003cV7.08.014", "product_id": "T036396", "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_range", "name": "\u003c3.3.1", "product": { "name": "Open Source OpenSSL \u003c3.3.1", "product_id": "T035088", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.3.1" } } }, { "category": "product_version_range", "name": "\u003c3.2.2", "product": { "name": "Open Source OpenSSL \u003c3.2.2", "product_id": "T035089", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.2.2" } } }, { "category": "product_version_range", "name": "\u003c3.1.6", "product": { "name": "Open Source OpenSSL \u003c3.1.6", "product_id": "T035090", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.1.6" } } }, { "category": "product_version_range", "name": "\u003c3.0.14", "product": { "name": "Open Source OpenSSL \u003c3.0.14", "product_id": "T035091", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:3.0.14" } } }, { "category": "product_version_range", "name": "\u003c1.1.1y", "product": { "name": "Open Source OpenSSL \u003c1.1.1y", "product_id": "T035092", "product_identification_helper": { "cpe": "cpe:/a:openssl:openssl:1.1.1y" } } } ], "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" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-4741", "notes": [ { "category": "description", "text": "Es besteht eine Schwachstelle in OpenSSL. Auf den zuvor freigegebenen Speicher in der OpenSSL API Funktion SSL_free_buffers kann zugegriffen werden, was zu einem Use After Free Angriff f\u00fchrt. Ein Angreifer kann diese Schwachstelle ausnutzen, um beliebigen Code auszuf\u00fchren, einen \u0027Denial of Service\u0027-Zustand zu verursachen, vertrauliche Informationen offenzulegen und Daten zu manipulieren." } ], "product_status": { "known_affected": [ "T002207", "T036396", "74185" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-4741" } ] }
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": "2024-11-21T19:33:31+00:00", "generator": { "date": "2024-11-21T19:33:31+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.2.1" } }, "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": "2024-11-21T19:33:31+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-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-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": "Red Hat classifies this vulnerability as having a low impact because the affected function is infrequently used by applications. However, Red Hat includes this function in their regular packages, which is why the related components are listed as affected in the table below.", "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-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-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-6vgq-8qjq-h578
Vulnerability from github
Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations
Impact summary: A use after free can have a range of potential consequences such as the corruption of valid data, crashes or execution of arbitrary code. However, only applications that directly call the SSL_free_buffers function are affected by this issue. Applications that do not call this function are not vulnerable. Our investigations indicate that this function is rarely used by applications.
The SSL_free_buffers function is used to free the internal OpenSSL buffer used when processing an incoming record from the network. The call is only expected to succeed if the buffer is not currently in use. However, two scenarios have been identified where the buffer is freed even when still in use.
The first scenario occurs where a record header has been received from the network and processed by OpenSSL, but the full record body has not yet arrived. In this case calling SSL_free_buffers will succeed even though a record has only been partially processed and the buffer is still in use.
The second scenario occurs where a full record containing application data has been received and processed by OpenSSL but the application has only read part of this data. Again a call to SSL_free_buffers will succeed even though the buffer is still in use.
While these scenarios could occur accidentally during normal operation a malicious attacker could attempt to engineer a stituation where this occurs. We are not aware of this issue being actively exploited.
The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue.
{ "affected": [], "aliases": [ "CVE-2024-4741" ], "database_specific": { "cwe_ids": [ "CWE-416" ], "github_reviewed": false, "github_reviewed_at": null, "nvd_published_at": "2024-11-13T11:15:04Z", "severity": "HIGH" }, "details": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause\nmemory to be accessed that was previously freed in some situations\n\nImpact summary: A use after free can have a range of potential consequences such\nas the corruption of valid data, crashes or execution of arbitrary code.\nHowever, only applications that directly call the SSL_free_buffers function are\naffected by this issue. Applications that do not call this function are not\nvulnerable. Our investigations indicate that this function is rarely used by\napplications.\n\nThe SSL_free_buffers function is used to free the internal OpenSSL buffer used\nwhen processing an incoming record from the network. The call is only expected\nto succeed if the buffer is not currently in use. However, two scenarios have\nbeen identified where the buffer is freed even when still in use.\n\nThe first scenario occurs where a record header has been received from the\nnetwork and processed by OpenSSL, but the full record body has not yet arrived.\nIn this case calling SSL_free_buffers will succeed even though a record has only\nbeen partially processed and the buffer is still in use.\n\nThe second scenario occurs where a full record containing application data has\nbeen received and processed by OpenSSL but the application has only read part of\nthis data. Again a call to SSL_free_buffers will succeed even though the buffer\nis still in use.\n\nWhile these scenarios could occur accidentally during normal operation a\nmalicious attacker could attempt to engineer a stituation where this occurs.\nWe are not aware of this issue being actively exploited.\n\nThe FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue.", "id": "GHSA-6vgq-8qjq-h578", "modified": "2024-11-13T18:32:00Z", "published": "2024-11-13T12:32:12Z", "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-4741" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/704f725b96aa373ee45ecfb23f6abfe8be8d9177" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/b3f0eb0a295f58f16ba43ba99dad70d4ee5c437d" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/c88c3de51020c37e8706bf7a682a162593053aac" }, { "type": "WEB", "url": "https://github.com/openssl/openssl/commit/e5093133c35ca82874ad83697af76f4b0f7e3bd8" }, { "type": "WEB", "url": "https://github.openssl.org/openssl/extended-releases/commit/f7a045f3143fc6da2ee66bf52d8df04829590dd4" }, { "type": "WEB", "url": "https://www.openssl.org/news/secadv/20240528.txt" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "type": "CVSS_V3" } ] }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- 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.