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.\"},{\"lang\":\"es\",\"value\":\"Resumen del problema: Llamar a la funci\u00f3n de API de OpenSSL SSL_free_buffers puede provocar que se acceda a la memoria que se liber\u00f3 previamente en algunas situaciones Resumen del impacto: Un use after free puede tener una variedad de posibles consecuencias, como la corrupci\u00f3n de datos v\u00e1lidos, fallas o ejecuci\u00f3n de c\u00f3digo arbitrario. Sin embargo, solo las aplicaciones que llaman directamente a la funci\u00f3n SSL_free_buffers se ven afectadas por este problema. Las aplicaciones que no llaman a esta funci\u00f3n no son vulnerables. Nuestras investigaciones indican que las aplicaciones rara vez usan esta funci\u00f3n. La funci\u00f3n SSL_free_buffers se usa para liberar el b\u00fafer interno de OpenSSL que se usa al procesar un registro entrante de la red. Solo se espera que la llamada tenga \u00e9xito si el b\u00fafer no est\u00e1 actualmente en uso. Sin embargo, se han identificado dos escenarios en los que el b\u00fafer se libera incluso cuando todav\u00eda est\u00e1 en uso. El primer escenario ocurre cuando se recibi\u00f3 un encabezado de registro de la red y OpenSSL lo proces\u00f3, pero a\u00fan no lleg\u00f3 el cuerpo completo del registro. En este caso, llamar a SSL_free_buffers tendr\u00e1 \u00e9xito incluso si un registro solo se proces\u00f3 parcialmente y el b\u00fafer todav\u00eda est\u00e1 en uso. El segundo escenario ocurre cuando OpenSSL ha recibido y procesado un registro completo que contiene datos de la aplicaci\u00f3n, pero la aplicaci\u00f3n solo ha le\u00eddo parte de estos datos. Nuevamente, una llamada a SSL_free_buffers tendr\u00e1 \u00e9xito aunque el b\u00fafer a\u00fan est\u00e9 en uso. Si bien estos escenarios podr\u00edan ocurrir accidentalmente durante el funcionamiento normal, un atacante malintencionado podr\u00eda intentar crear una situaci\u00f3n en la que esto ocurra. No tenemos conocimiento de que este problema se est\u00e9 explotando activamente. Los m\u00f3dulos FIPS en 3.3, 3.2, 3.1 y 3.0 no se ven afectados por este problema.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6}]},\"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" }, { "category": "external", "summary": "IBM Security Bulletin 7162032 vom 2024-07-31", "url": "https://www.ibm.com/support/pages/node/7162032" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6937-1 vom 2024-07-31", "url": "https://ubuntu.com/security/notices/USN-6937-1" }, { "category": "external", "summary": "Dell Security Advisory DSA-2024-348 vom 2024-08-06", "url": "https://www.dell.com/support/kbdoc/de-de/000227573/dsa-2024-348-security-update-for-dell-avamar-dell-networker-virtual-edition-nve-and-dell-powerprotect-dp-series-appliance-dell-integrated-data-protection-appliance-idpa-security-update-for-multiple-vulnerabilities" }, { "category": "external", "summary": "Amazon Linux Security Advisory ALAS-2024-2621 vom 2024-08-13", "url": "https://alas.aws.amazon.com/AL2/ALAS-2024-2621.html" }, { "category": "external", "summary": "Securepoint UTM Changelog vom 2024-08-14", "url": "https://wiki.securepoint.de/UTM/Changelog" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2051-2 vom 2024-08-19", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-August/019235.html" }, { "category": "external", "summary": "Hitachi Vulnerability Information HITACHI-SEC-2024-145 vom 2024-09-17", "url": "https://www.hitachi.com/products/it/software/security/info/vuls/hitachi-sec-2024-145/index.html" }, { "category": "external", "summary": "Dell Security Advisory DSA-2024-422 vom 2024-10-10", "url": "https://www.dell.com/support/kbdoc/de-de/000234730/dsa-2024-422-security-update-for-dell-networker-vproxy-multiple-component-vulnerabilities" }, { "category": "external", "summary": "IBM Security Bulletin 7173018 vom 2024-10-14", "url": "https://www.ibm.com/support/pages/node/7173018" }, { "category": "external", "summary": "Debian Security Advisory DLA-3942 vom 2024-10-31", "url": "https://lists.debian.org/debian-lts-announce/2024/10/msg00033.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:9333 vom 2024-11-12", "url": "https://access.redhat.com/errata/RHSA-2024:9333" }, { "category": "external", "summary": "Insyde Security Advisory INSYDE-SA-2024012 vom 2024-11-12", "url": "https://www.insyde.com/security-pledge/SA-2024012" }, { "category": "external", "summary": "HPE Security Bulletin vom 2024-11-14", "url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbux04744en_us\u0026docLocale=en_US" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:10135 vom 2024-11-21", "url": "https://access.redhat.com/errata/RHSA-2024:10135" } ], "source_lang": "en-US", "title": "OpenSSL: Schwachstelle erm\u00f6glicht Codeausf\u00fchrung, Datenmanipulation, Offenlegung von Informationen und Dos", "tracking": { "current_release_date": "2024-11-20T23:00:00.000+00:00", "generator": { "date": "2024-11-21T13:14:10.910+00:00", "engine": { "name": "BSI-WID", "version": "1.3.8" } }, "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" }, { "date": "2024-07-30T22:00:00.000+00:00", "number": "11", "summary": "Neue Updates von IBM aufgenommen" }, { "date": "2024-07-31T22:00:00.000+00:00", "number": "12", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2024-08-05T22:00:00.000+00:00", "number": "13", "summary": "Neue Updates von Dell aufgenommen" }, { "date": "2024-08-13T22:00:00.000+00:00", "number": "14", "summary": "Neue Updates von Amazon aufgenommen" }, { "date": "2024-08-14T22:00:00.000+00:00", "number": "15", "summary": "Neue Updates aufgenommen" }, { "date": "2024-08-19T22:00:00.000+00:00", "number": "16", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-09-16T22:00:00.000+00:00", "number": "17", "summary": "Neue Updates von HITACHI aufgenommen" }, { "date": "2024-10-09T22:00:00.000+00:00", "number": "18", "summary": "Neue Updates von Dell aufgenommen" }, { "date": "2024-10-13T22:00:00.000+00:00", "number": "19", "summary": "Neue Updates von IBM aufgenommen" }, { "date": "2024-10-30T23:00:00.000+00:00", "number": "20", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2024-11-11T23:00:00.000+00:00", "number": "21", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-11-12T23:00:00.000+00:00", "number": "22", "summary": "Neue Updates von Insyde aufgenommen" }, { "date": "2024-11-14T23:00:00.000+00:00", "number": "23", "summary": "Neue Updates von HP aufgenommen" }, { "date": "2024-11-20T23:00:00.000+00:00", "number": "24", "summary": "Neue Updates von Red Hat aufgenommen" } ], "status": "final", "version": "24" } }, "product_tree": { "branches": [ { "branches": [ { "category": "product_name", "name": "Amazon Linux 2", "product": { "name": "Amazon Linux 2", "product_id": "398363", "product_identification_helper": { "cpe": "cpe:/o:amazon:linux_2:-" } } } ], "category": "vendor", "name": "Amazon" }, { "branches": [ { "category": "product_name", "name": "Debian Linux", "product": { "name": "Debian Linux", "product_id": "2951", "product_identification_helper": { "cpe": "cpe:/o:debian:debian_linux:-" } } } ], "category": "vendor", "name": "Debian" }, { "branches": [ { "category": "product_name", "name": "Dell NetWorker", "product": { "name": "Dell NetWorker", "product_id": "T024663", "product_identification_helper": { "cpe": "cpe:/a:dell:networker:-" } } } ], "category": "vendor", "name": "Dell" }, { "branches": [ { "category": "product_name", "name": "EMC Avamar", "product": { "name": "EMC Avamar", "product_id": "T014381", "product_identification_helper": { "cpe": "cpe:/a:emc:avamar:-" } } } ], "category": "vendor", "name": "EMC" }, { "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": "OpenSSL Software \u003cA.03.00.15.001", "product": { "name": "HPE HP-UX OpenSSL Software \u003cA.03.00.15.001", "product_id": "T039192" } }, { "category": "product_version", "name": "OpenSSL Software A.03.00.15.001", "product": { "name": "HPE HP-UX OpenSSL Software A.03.00.15.001", "product_id": "T039192-fixed", "product_identification_helper": { "cpe": "cpe:/o:hp:hp-ux:openssl_software__a.03.00.15.001" } } } ], "category": "product_name", "name": "HP-UX" } ], "category": "vendor", "name": "HPE" }, { "branches": [ { "category": "product_name", "name": "Hitachi Command Suite", "product": { "name": "Hitachi Command Suite", "product_id": "T010951", "product_identification_helper": { "cpe": "cpe:/a:hitachi:command_suite:-" } } }, { "category": "product_name", "name": "Hitachi Configuration Manager", "product": { "name": "Hitachi Configuration Manager", "product_id": "T020304", "product_identification_helper": { "cpe": "cpe:/a:hitachi:configuration_manager:-" } } }, { "category": "product_name", "name": "Hitachi Ops Center", "product": { "name": "Hitachi Ops Center", "product_id": "T017562", "product_identification_helper": { "cpe": "cpe:/a:hitachi:ops_center:-" } } } ], "category": "vendor", "name": "Hitachi" }, { "branches": [ { "branches": [ { "category": "product_version", "name": "7.3", "product": { "name": "IBM AIX 7.3", "product_id": "1139691", "product_identification_helper": { "cpe": "cpe:/o:ibm:aix:7.3" } } }, { "category": "product_version", "name": "7.2", "product": { "name": "IBM AIX 7.2", "product_id": "434967", "product_identification_helper": { "cpe": "cpe:/o:ibm:aix:7.2" } } } ], "category": "product_name", "name": "AIX" }, { "branches": [ { "category": "product_version_range", "name": "\u003c8.0.0.27", "product": { "name": "IBM Rational Build Forge \u003c8.0.0.27", "product_id": "T038286" } }, { "category": "product_version", "name": "8.0.0.27", "product": { "name": "IBM Rational Build Forge 8.0.0.27", "product_id": "T038286-fixed", "product_identification_helper": { "cpe": "cpe:/a:ibm:rational_build_forge:8.0.0.27" } } } ], "category": "product_name", "name": "Rational Build Forge" }, { "branches": [ { "category": "product_version", "name": "3.1", "product": { "name": "IBM VIOS 3.1", "product_id": "1039165", "product_identification_helper": { "cpe": "cpe:/a:ibm:vios:3.1" } } }, { "category": "product_version", "name": "4.1", "product": { "name": "IBM VIOS 4.1", "product_id": "1522854", "product_identification_helper": { "cpe": "cpe:/a:ibm:vios:4.1" } } } ], "category": "product_name", "name": "VIOS" } ], "category": "vendor", "name": "IBM" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003cRV24.06.3", "product": { "name": "Insyde UEFI Firmware \u003cRV24.06.3", "product_id": "T038993" } }, { "category": "product_version", "name": "RV24.06.3", "product": { "name": "Insyde UEFI Firmware RV24.06.3", "product_id": "T038993-fixed", "product_identification_helper": { "cpe": "cpe:/h:insyde:uefi:rv24.06.3" } } }, { "category": "product_version_range", "name": "\u003cRV23.08.1", "product": { "name": "Insyde UEFI Firmware \u003cRV23.08.1", "product_id": "T038994" } }, { "category": "product_version", "name": "RV23.08.1", "product": { "name": "Insyde UEFI Firmware RV23.08.1", "product_id": "T038994-fixed", "product_identification_helper": { "cpe": "cpe:/h:insyde:uefi:rv23.08.1" } } } ], "category": "product_name", "name": "UEFI Firmware" } ], "category": "vendor", "name": "Insyde" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003cV7.08.014", "product": { "name": "Meinberg LANTIME \u003cV7.08.014", "product_id": "T036396" } }, { "category": "product_version", "name": "V7.08.014", "product": { "name": "Meinberg LANTIME V7.08.014", "product_id": "T036396-fixed", "product_identification_helper": { "cpe": "cpe:/h:meinberg:lantime:v7.08.014" } } } ], "category": "product_name", "name": "LANTIME" } ], "category": "vendor", "name": "Meinberg" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003c3.3.1", "product": { "name": "Open Source OpenSSL \u003c3.3.1", "product_id": "T035088" } }, { "category": "product_version", "name": "3.3.1", "product": { "name": "Open Source OpenSSL 3.3.1", "product_id": "T035088-fixed", "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" } }, { "category": "product_version", "name": "3.2.2", "product": { "name": "Open Source OpenSSL 3.2.2", "product_id": "T035089-fixed", "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" } }, { "category": "product_version", "name": "3.1.6", "product": { "name": "Open Source OpenSSL 3.1.6", "product_id": "T035090-fixed", "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" } }, { "category": "product_version", "name": "3.0.14", "product": { "name": "Open Source OpenSSL 3.0.14", "product_id": "T035091-fixed", "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" } }, { "category": "product_version", "name": "1.1.1y", "product": { "name": "Open Source OpenSSL 1.1.1y", "product_id": "T035092-fixed", "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": "Red Hat Enterprise Linux", "product": { "name": "Red Hat Enterprise Linux", "product_id": "67646", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:-" } } } ], "category": "vendor", "name": "Red Hat" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux", "product": { "name": "SUSE Linux", "product_id": "T002207", "product_identification_helper": { "cpe": "cpe:/o:suse:suse_linux:-" } } } ], "category": "vendor", "name": "SUSE" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003c12.7.2", "product": { "name": "Securepoint UTM \u003c12.7.2", "product_id": "T036885" } }, { "category": "product_version", "name": "12.7.2", "product": { "name": "Securepoint UTM 12.7.2", "product_id": "T036885-fixed", "product_identification_helper": { "cpe": "cpe:/o:securepoint:unified_threat_management:12.7.2" } } } ], "category": "product_name", "name": "UTM" } ], "category": "vendor", "name": "Securepoint" }, { "branches": [ { "category": "product_name", "name": "Ubuntu Linux", "product": { "name": "Ubuntu Linux", "product_id": "T000126", "product_identification_helper": { "cpe": "cpe:/o:canonical:ubuntu_linux:-" } } } ], "category": "vendor", "name": "Ubuntu" } ] }, "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": [ "67646", "T010951", "T036885", "1139691", "T035092", "T035091", "T035090", "T038286", "T039192", "T020304", "T024663", "398363", "434967", "1039165", "T035089", "1522854", "T035088", "T036396", "74185", "T038994", "T017562", "T038993", "T014381", "2951", "T002207", "T000126" ] }, "release_date": "2024-05-28T22:00:00.000+00:00", "title": "CVE-2024-4741" } ] }
wid-sec-w-2024-3199
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": "Oracle Secure Backup ist eine Managementsoftware f\u00fcr Bandsicherungen. Sie erm\u00f6glicht eine sichere Verschl\u00fcsselung der Daten beim Schreiben auf das Band.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Oracle Secure Backup ausnutzen, um die Verf\u00fcgbarkeit zu gef\u00e4hrden.", "title": "Angriff" }, { "category": "general", "text": "- 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-3199 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-3199.json" }, { "category": "self", "summary": "WID-SEC-2024-3199 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-3199" }, { "category": "external", "summary": "Oracle Critical Patch Update Advisory - October 2024 - Appendix Oracle Secure Backup vom 2024-10-15", "url": "https://www.oracle.com/security-alerts/cpuoct2024.html#AppendixOSB" } ], "source_lang": "en-US", "title": "Oracle Secure Backup: Mehrere Schwachstellen", "tracking": { "current_release_date": "2024-10-15T22:00:00.000+00:00", "generator": { "date": "2024-10-16T10:12:42.056+00:00", "engine": { "name": "BSI-WID", "version": "1.3.8" } }, "id": "WID-SEC-W-2024-3199", "initial_release_date": "2024-10-15T22:00:00.000+00:00", "revision_history": [ { "date": "2024-10-15T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "18.1.0.1.0", "product": { "name": "Oracle Secure Backup 18.1.0.1.0", "product_id": "1133939", "product_identification_helper": { "cpe": "cpe:/a:oracle:secure_backup:18.1.0.1.0" } } }, { "category": "product_version", "name": "18.1.0.2.0", "product": { "name": "Oracle Secure Backup 18.1.0.2.0", "product_id": "T024963", "product_identification_helper": { "cpe": "cpe:/a:oracle:secure_backup:18.1.0.2.0" } } } ], "category": "product_name", "name": "Secure Backup" } ], "category": "vendor", "name": "Oracle" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-38476", "notes": [ { "category": "description", "text": "In Oracle Secure Backup existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer Angreifer die Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"MITTEL\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T024963", "1133939" ] }, "release_date": "2024-10-15T22:00:00.000+00:00", "title": "CVE-2024-38476" }, { "cve": "CVE-2024-4741", "notes": [ { "category": "description", "text": "In Oracle Secure Backup existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer Angreifer die Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"MITTEL\" f\u00fcr die Schadensh\u00f6he." } ], "product_status": { "known_affected": [ "T024963", "1133939" ] }, "release_date": "2024-10-15T22:00:00.000+00:00", "title": "CVE-2024-4741" } ] }
wid-sec-w-2024-2112
Vulnerability from csaf_certbund
Notes
{ "document": { "aggregate_severity": { "text": "mittel" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "InsydeH2O UEFI BIOS ist eine propriet\u00e4re, lizenzierte UEFI-BIOS-Firmware, die Intel und AMD basierte Computer unterst\u00fctzt.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Insyde UEFI Firmware ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren.", "title": "Angriff" }, { "category": "general", "text": "- BIOS/Firmware", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2024-2112 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-2112.json" }, { "category": "self", "summary": "WID-SEC-2024-2112 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-2112" }, { "category": "external", "summary": "Insyde Security Pledge INSYDE-SA-2024009 vom 2024-09-10", "url": "https://www.insyde.com/security-pledge/SA-2024009" } ], "source_lang": "en-US", "title": "Insyde UEFI Firmware: Mehrere Schwachstellen erm\u00f6glichen Denial of Service", "tracking": { "current_release_date": "2024-09-10T22:00:00.000+00:00", "generator": { "date": "2024-09-11T09:40:00.857+00:00", "engine": { "name": "BSI-WID", "version": "1.3.6" } }, "id": "WID-SEC-W-2024-2112", "initial_release_date": "2024-09-10T22:00:00.000+00:00", "revision_history": [ { "date": "2024-09-10T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "OpenSSL \u003c3.2.1", "product": { "name": "Insyde UEFI Firmware OpenSSL \u003c3.2.1", "product_id": "T037494" } }, { "category": "product_version", "name": "OpenSSL 3.2.1", "product": { "name": "Insyde UEFI Firmware OpenSSL 3.2.1", "product_id": "T037494-fixed", "product_identification_helper": { "cpe": "cpe:/h:insyde:uefi:openssl__3.2.1" } } } ], "category": "product_name", "name": "UEFI Firmware" } ], "category": "vendor", "name": "Insyde" } ] }, "vulnerabilities": [ { "cve": "CVE-2023-5678", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2023-5678" }, { "cve": "CVE-2024-0727", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-0727" }, { "cve": "CVE-2024-2511", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-2511" }, { "cve": "CVE-2024-4603", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-4603" }, { "cve": "CVE-2024-4741", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-4741" }, { "cve": "CVE-2024-5535", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in der Insyde UEFI Firmware. Diese Fehler existieren in der OpenSSL-Komponente wegen mehrerer Puffer\u00fcberlaufprobleme. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um den Dienst zu beenden und einen Denial-of-Service-Zustand zu erzeugen." } ], "product_status": { "known_affected": [ "T037494" ] }, "release_date": "2024-09-10T22:00:00.000+00:00", "title": "CVE-2024-5535" } ] }
icsa-24-319-06
Vulnerability from csaf_cisa
Notes
{ "document": { "acknowledgments": [ { "organization": "Siemens ProductCERT", "summary": "reporting these vulnerabilities to CISA." } ], "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Disclosure is not limited", "tlp": { "label": "WHITE", "url": "https://us-cert.cisa.gov/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "SCALANCE M-800 family before V8.2 is affected by multiple vulnerabilities.\n\nSiemens has released new versions for the affected products and recommends to update to the latest versions.", "title": "Summary" }, { "category": "general", "text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity", "title": "General Recommendations" }, { "category": "general", "text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories", "title": "Additional Resources" }, { "category": "legal_disclaimer", "text": "The use of Siemens Security Advisories is subject to the terms and conditions listed on: https://www.siemens.com/productcert/terms-of-use.", "title": "Terms of Use" }, { "category": "legal_disclaimer", "text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.", "title": "Legal Notice" }, { "category": "other", "text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.", "title": "Advisory Conversion Disclaimer" }, { "category": "other", "text": "Multiple", "title": "Critical infrastructure sectors" }, { "category": "other", "text": "Worldwide", "title": "Countries/areas deployed" }, { "category": "other", "text": "Germany", "title": "Company headquarters location" }, { "category": "general", "text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.", "title": "Recommended Practices" }, { "category": "general", "text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.", "title": "Recommended Practices" }, { "category": "general", "text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.", "title": "Recommended Practices" }, { "category": "general", "text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.", "title": "Recommended Practices" }, { "category": "general", "text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.", "title": "Recommended Practices" }, { "category": "general", "text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.", "title": "Recommended Practices" }, { "category": "general", "text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.", "title": "Recommended Practices" }, { "category": "general", "text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.", "title": "Recommended Practices" } ], "publisher": { "category": "other", "contact_details": "central@cisa.dhs.gov", "name": "CISA", "namespace": "https://www.cisa.gov/" }, "references": [ { "category": "self", "summary": "SSA-354112: Multiple Vulnerabilities in SCALANCE M-800 Family Before V8.2 - CSAF Version", "url": "https://cert-portal.siemens.com/productcert/csaf/ssa-354112.json" }, { "category": "self", "summary": "SSA-354112: Multiple Vulnerabilities in SCALANCE M-800 Family Before V8.2 - HTML Version", "url": "https://cert-portal.siemens.com/productcert/html/ssa-354112.html" }, { "category": "self", "summary": "ICS Advisory ICSA-24-319-06 JSON", "url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-319-06.json" }, { "category": "self", "summary": "ICS Advisory ICSA-24-319-06 - Web Version", "url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-319-06" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/topics/industrial-control-systems" }, { "category": "external", "summary": "Recommended Practices", "url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B" } ], "title": "Siemens SCALANCE M-800 Family", "tracking": { "current_release_date": "2024-11-12T00:00:00.000000Z", "generator": { "engine": { "name": "CISA CSAF Generator", "version": "1.0.0" } }, "id": "ICSA-24-319-06", "initial_release_date": "2024-11-12T00:00:00.000000Z", "revision_history": [ { "date": "2024-11-12T00:00:00.000000Z", "legacy_version": "1.0", "number": "1", "summary": "Publication Date" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "RUGGEDCOM RM1224 LTE(4G) EU (6GK6108-4AM00-2BA2)", "product_id": "CSAFPID-0001", "product_identification_helper": { "model_numbers": [ "6GK6108-4AM00-2BA2" ] } } } ], "category": "product_name", "name": "RUGGEDCOM RM1224 LTE(4G) EU (6GK6108-4AM00-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "RUGGEDCOM RM1224 LTE(4G) NAM (6GK6108-4AM00-2DA2)", "product_id": "CSAFPID-0002", "product_identification_helper": { "model_numbers": [ "6GK6108-4AM00-2DA2" ] } } } ], "category": "product_name", "name": "RUGGEDCOM RM1224 LTE(4G) NAM (6GK6108-4AM00-2DA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M804PB (6GK5804-0AP00-2AA2)", "product_id": "CSAFPID-0003", "product_identification_helper": { "model_numbers": [ "6GK5804-0AP00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M804PB (6GK5804-0AP00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1AA00-2AA2)", "product_id": "CSAFPID-0004", "product_identification_helper": { "model_numbers": [ "6GK5812-1AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1BA00-2AA2)", "product_id": "CSAFPID-0005", "product_identification_helper": { "model_numbers": [ "6GK5812-1BA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1BA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1AA00-2AA2)", "product_id": "CSAFPID-0006", "product_identification_helper": { "model_numbers": [ "6GK5816-1AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1BA00-2AA2)", "product_id": "CSAFPID-0007", "product_identification_helper": { "model_numbers": [ "6GK5816-1BA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1BA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M826-2 SHDSL-Router (6GK5826-2AB00-2AB2)", "product_id": "CSAFPID-0008", "product_identification_helper": { "model_numbers": [ "6GK5826-2AB00-2AB2" ] } } } ], "category": "product_name", "name": "SCALANCE M826-2 SHDSL-Router (6GK5826-2AB00-2AB2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M874-2 (6GK5874-2AA00-2AA2)", "product_id": "CSAFPID-0009", "product_identification_helper": { "model_numbers": [ "6GK5874-2AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M874-2 (6GK5874-2AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M874-3 3G-Router (CN) (6GK5874-3AA00-2FA2)", "product_id": "CSAFPID-0010", "product_identification_helper": { "model_numbers": [ "6GK5874-3AA00-2FA2" ] } } } ], "category": "product_name", "name": "SCALANCE M874-3 3G-Router (CN) (6GK5874-3AA00-2FA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M874-3 (6GK5874-3AA00-2AA2)", "product_id": "CSAFPID-0011", "product_identification_helper": { "model_numbers": [ "6GK5874-3AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M874-3 (6GK5874-3AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-3 (6GK5876-3AA02-2BA2)", "product_id": "CSAFPID-0012", "product_identification_helper": { "model_numbers": [ "6GK5876-3AA02-2BA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-3 (6GK5876-3AA02-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-3 (ROK) (6GK5876-3AA02-2EA2)", "product_id": "CSAFPID-0013", "product_identification_helper": { "model_numbers": [ "6GK5876-3AA02-2EA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-3 (ROK) (6GK5876-3AA02-2EA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-4 (6GK5876-4AA10-2BA2)", "product_id": "CSAFPID-0014", "product_identification_helper": { "model_numbers": [ "6GK5876-4AA10-2BA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-4 (6GK5876-4AA10-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-4 (EU) (6GK5876-4AA00-2BA2)", "product_id": "CSAFPID-0015", "product_identification_helper": { "model_numbers": [ "6GK5876-4AA00-2BA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-4 (EU) (6GK5876-4AA00-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-4 (NAM) (6GK5876-4AA00-2DA2)", "product_id": "CSAFPID-0016", "product_identification_helper": { "model_numbers": [ "6GK5876-4AA00-2DA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-4 (NAM) (6GK5876-4AA00-2DA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM853-1 (A1) (6GK5853-2EA10-2AA1)", "product_id": "CSAFPID-0017", "product_identification_helper": { "model_numbers": [ "6GK5853-2EA10-2AA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM853-1 (A1) (6GK5853-2EA10-2AA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM853-1 (B1) (6GK5853-2EA10-2BA1)", "product_id": "CSAFPID-0018", "product_identification_helper": { "model_numbers": [ "6GK5853-2EA10-2BA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM853-1 (B1) (6GK5853-2EA10-2BA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM853-1 (EU) (6GK5853-2EA00-2DA1)", "product_id": "CSAFPID-0019", "product_identification_helper": { "model_numbers": [ "6GK5853-2EA00-2DA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM853-1 (EU) (6GK5853-2EA00-2DA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (A1) (6GK5856-2EA10-3AA1)", "product_id": "CSAFPID-0020", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA10-3AA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (A1) (6GK5856-2EA10-3AA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (B1) (6GK5856-2EA10-3BA1)", "product_id": "CSAFPID-0021", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA10-3BA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (B1) (6GK5856-2EA10-3BA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (CN) (6GK5856-2EA00-3FA1)", "product_id": "CSAFPID-0022", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA00-3FA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (CN) (6GK5856-2EA00-3FA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (EU) (6GK5856-2EA00-3DA1)", "product_id": "CSAFPID-0023", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA00-3DA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (EU) (6GK5856-2EA00-3DA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (RoW) (6GK5856-2EA00-3AA1)", "product_id": "CSAFPID-0024", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA00-3AA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (RoW) (6GK5856-2EA00-3AA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE S615 EEC LAN-Router (6GK5615-0AA01-2AA2)", "product_id": "CSAFPID-0025", "product_identification_helper": { "model_numbers": [ "6GK5615-0AA01-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE S615 EEC LAN-Router (6GK5615-0AA01-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE S615 LAN-Router (6GK5615-0AA00-2AA2)", "product_id": "CSAFPID-0026", "product_identification_helper": { "model_numbers": [ "6GK5615-0AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE S615 LAN-Router (6GK5615-0AA00-2AA2)" } ], "category": "vendor", "name": "Siemens" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-3506", "cwe": { "id": "CWE-125", "name": "Out-of-bounds Read" }, "notes": [ { "category": "summary", "text": "An out-of-bounds (OOB) memory access flaw was found in fs/f2fs/node.c in the f2fs module in the Linux kernel in versions before 5.12.0-rc4. A bounds check failure allows a local attacker to gain access to out-of-bounds memory leading to a system crash or a leak of internal kernel information. The highest threat from this vulnerability is to system availability.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2021-3506" }, { "cve": "CVE-2023-28450", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "An issue was discovered in Dnsmasq before 2.90. The default maximum EDNS.0 UDP packet size was set to 4096 but should be 1232 because of DNS Flag Day 2020.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2023-28450" }, { "cve": "CVE-2023-49441", "cwe": { "id": "CWE-190", "name": "Integer Overflow or Wraparound" }, "notes": [ { "category": "summary", "text": "dnsmasq 2.9 is vulnerable to Integer Overflow via forward_query.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2023-49441" }, { "cve": "CVE-2024-2511", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Issue summary: Some non-default TLS server configurations can cause unbounded memory growth when processing TLSv1.3 sessions\r\nImpact summary: An attacker may exploit certain server configurations to trigger unbounded memory growth that would lead to a Denial of Service This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option is being used (but not if early_data support is also configured and the default anti-replay protection is in use). In this case, under certain conditions, the session cache can get into an incorrect state and it will fail to flush properly as it fills. The session cache will continue to grow in an unbounded manner. A malicious client could deliberately create the scenario for this failure to force a Denial of Service. It may also happen by accident in normal operation. This issue only affects TLS servers supporting TLSv1.3. It does not affect TLS clients. The FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue. OpenSSL 1.0.2 is also not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.7, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-2511" }, { "cve": "CVE-2024-4603", "cwe": { "id": "CWE-834", "name": "Excessive Iteration" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long DSA keys or parameters may be very slow. Impact summary: Applications that use the functions EVP_PKEY_param_check() or EVP_PKEY_public_check() to check a DSA public key or DSA parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform various checks on DSA parameters. Some of those computations take a long time if the modulus (`p` parameter) is too large. Trying to use a very large modulus is slow and OpenSSL will not allow using public keys with a modulus which is over 10,000 bits in length for signature verification. However the key and parameter check functions do not limit the modulus size when performing the checks. An application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. These functions are not called by OpenSSL itself on untrusted DSA keys so only applications that directly call these functions may be vulnerable. Also vulnerable are the OpenSSL pkey and pkeyparam command line applications when using the `-check` option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-4603" }, { "cve": "CVE-2024-4741", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "notes": [ { "category": "summary", "text": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-4741" }, { "cve": "CVE-2024-5594", "cwe": { "id": "CWE-117", "name": "Improper Output Neutralization for Logs" }, "notes": [ { "category": "summary", "text": "control channel: refuse control channel messages with nonprintable characters in them. Security scope: a malicious openvpn peer can send garbage to openvpn log, or cause high CPU load", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.4, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-5594" }, { "cve": "CVE-2024-26306", "cwe": { "id": "CWE-203", "name": "Observable Discrepancy" }, "notes": [ { "category": "summary", "text": "iPerf3 before 3.17, when used with OpenSSL before 3.2.0 as a server with RSA authentication, allows a timing side channel in RSA decryption operations. This side channel could be sufficient for an attacker to recover credential plaintext. It requires the attacker to send a large number of messages for decryption, as described in \"Everlasting ROBOT: the Marvin Attack\" by Hubert Kario.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-26306" }, { "cve": "CVE-2024-26925", "cwe": { "id": "CWE-667", "name": "Improper Locking" }, "notes": [ { "category": "summary", "text": "In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: release mutex after nft_gc_seq_end from abort path The commit mutex should not be released during the critical section between nft_gc_seq_begin() and nft_gc_seq_end(), otherwise, async GC worker could collect expired objects and get the released commit lock within the same GC sequence. nf_tables_module_autoload() temporarily releases the mutex to load module dependencies, then it goes back to replay the transaction again. Move it at the end of the abort phase after nft_gc_seq_end() is called.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-26925" }, { "cve": "CVE-2024-28882", "cwe": { "id": "CWE-772", "name": "Missing Release of Resource after Effective Lifetime" }, "notes": [ { "category": "summary", "text": "OpenVPN from 2.6.0 through 2.6.10 in a server role accepts multiple exit notifications from authenticated clients which will extend the validity of a closing session", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-28882" }, { "cve": "CVE-2024-50557", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly validate input in configuration fields of the iperf functionality. This could allow an unauthenticated remote attacker to execute arbitrary code on the device.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-50557" }, { "cve": "CVE-2024-50558", "cwe": { "id": "CWE-284", "name": "Improper Access Control" }, "notes": [ { "category": "summary", "text": "Affected devices improperly manage access control for read-only users. This could allow an attacker to cause a temporary denial of service condition.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-50558" }, { "cve": "CVE-2024-50559", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly validate the filenames of the certificate. This could allow an authenticated remote attacker to append arbitrary values which will lead to compromise of integrity of the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-50559" }, { "cve": "CVE-2024-50560", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Affected devices truncates usernames longer than 15 characters when accessed via SSH or Telnet. This could allow an attacker to compromise system integrity.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.1, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-50560" }, { "cve": "CVE-2024-50561", "cwe": { "id": "CWE-79", "name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly sanitize the filenames before uploading. This could allow an authenticated remote attacker to compromise of integrity of the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-50561" }, { "cve": "CVE-2024-50572", "cwe": { "id": "CWE-74", "name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly sanitize an input field. This could allow an authenticated remote attacker with administrative privileges to inject code or spawn a system root shell.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001", "CSAFPID-0002", "CSAFPID-0003", "CSAFPID-0004", "CSAFPID-0005", "CSAFPID-0006", "CSAFPID-0007", "CSAFPID-0008", "CSAFPID-0009", "CSAFPID-0011", "CSAFPID-0010", "CSAFPID-0012", "CSAFPID-0013", "CSAFPID-0014", "CSAFPID-0015", "CSAFPID-0016", "CSAFPID-0017", "CSAFPID-0018", "CSAFPID-0019", "CSAFPID-0020", "CSAFPID-0021", "CSAFPID-0022", "CSAFPID-0023", "CSAFPID-0024", "CSAFPID-0025", "CSAFPID-0026" ] } ], "title": "CVE-2024-50572" } ] }
icsa-24-319-08
Vulnerability from csaf_cisa
Notes
{ "document": { "acknowledgments": [ { "organization": "Siemens ProductCERT", "summary": "reporting these vulnerabilities to CISA." } ], "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Disclosure is not limited", "tlp": { "label": "WHITE", "url": "https://us-cert.cisa.gov/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "SINEC INS before V1.0 SP2 Update 3 is affected by multiple vulnerabilities.\n\nSiemens has released a new version for SINEC INS and recommends to update to the latest version.", "title": "Summary" }, { "category": "general", "text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity", "title": "General Recommendations" }, { "category": "general", "text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories", "title": "Additional Resources" }, { "category": "legal_disclaimer", "text": "The use of Siemens Security Advisories is subject to the terms and conditions listed on: https://www.siemens.com/productcert/terms-of-use.", "title": "Terms of Use" }, { "category": "legal_disclaimer", "text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.", "title": "Legal Notice" }, { "category": "other", "text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.", "title": "Advisory Conversion Disclaimer" }, { "category": "other", "text": "Multiple", "title": "Critical infrastructure sectors" }, { "category": "other", "text": "Worldwide", "title": "Countries/areas deployed" }, { "category": "other", "text": "Germany", "title": "Company headquarters location" }, { "category": "general", "text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.", "title": "Recommended Practices" }, { "category": "general", "text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.", "title": "Recommended Practices" }, { "category": "general", "text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.", "title": "Recommended Practices" }, { "category": "general", "text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.", "title": "Recommended Practices" }, { "category": "general", "text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.", "title": "Recommended Practices" }, { "category": "general", "text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.", "title": "Recommended Practices" }, { "category": "general", "text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.", "title": "Recommended Practices" }, { "category": "general", "text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.", "title": "Recommended Practices" } ], "publisher": { "category": "other", "contact_details": "central@cisa.dhs.gov", "name": "CISA", "namespace": "https://www.cisa.gov/" }, "references": [ { "category": "self", "summary": "SSA-915275: Multiple Vulnerabilities in SINEC INS Before V1.0 SP2 Update 3 - CSAF Version", "url": "https://cert-portal.siemens.com/productcert/csaf/ssa-915275.json" }, { "category": "self", "summary": "SSA-915275: Multiple Vulnerabilities in SINEC INS Before V1.0 SP2 Update 3 - HTML Version", "url": "https://cert-portal.siemens.com/productcert/html/ssa-915275.html" }, { "category": "self", "summary": "ICS Advisory ICSA-24-319-08 JSON", "url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-319-08.json" }, { "category": "self", "summary": "ICS Advisory ICSA-24-319-08 - Web Version", "url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-319-08" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/topics/industrial-control-systems" }, { "category": "external", "summary": "Recommended Practices", "url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf" }, { "category": "external", "summary": "Recommended Practices", "url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B" } ], "title": "Siemens SINEC INS", "tracking": { "current_release_date": "2024-11-12T00:00:00.000000Z", "generator": { "engine": { "name": "CISA CSAF Generator", "version": "1.0.0" } }, "id": "ICSA-24-319-08", "initial_release_date": "2024-11-12T00:00:00.000000Z", "revision_history": [ { "date": "2024-11-12T00:00:00.000000Z", "legacy_version": "1.0", "number": "1", "summary": "Publication Date" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003cV1.0_SP2_Update_3", "product": { "name": "SINEC INS", "product_id": "CSAFPID-0001" } } ], "category": "product_name", "name": "SINEC INS" } ], "category": "vendor", "name": "Siemens" } ] }, "vulnerabilities": [ { "cve": "CVE-2023-2975", "cwe": { "id": "CWE-287", "name": "Improper Authentication" }, "notes": [ { "category": "summary", "text": "Issue summary: The AES-SIV cipher implementation contains a bug that causes it to ignore empty associated data entries which are unauthenticated as a consequence. Impact summary: Applications that use the AES-SIV algorithm and want to authenticate empty data entries as associated data can be mislead by removing adding or reordering such empty entries as these are ignored by the OpenSSL implementation. We are currently unaware of any such applications. The AES-SIV algorithm allows for authentication of multiple associated data entries along with the encryption. To authenticate empty data the application has to call EVP_EncryptUpdate() (or EVP_CipherUpdate()) with NULL pointer as the output buffer and 0 as the input buffer length. The AES-SIV implementation in OpenSSL just returns success for such a call instead of performing the associated data authentication operation. The empty data thus will not be authenticated. As this issue does not affect non-empty associated data authentication and we expect it to be rare for an application to use empty associated data entries this is qualified as Low severity issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-2975" }, { "cve": "CVE-2023-3341", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "notes": [ { "category": "summary", "text": "The code that processes control channel messages sent to `named` calls certain functions recursively during packet parsing. Recursion depth is only limited by the maximum accepted packet size; depending on the environment, this may cause the packet-parsing code to run out of available stack memory, causing `named` to terminate unexpectedly. Since each incoming control channel message is fully parsed before its contents are authenticated, exploiting this flaw does not require the attacker to hold a valid RNDC key; only network access to the control channel\u0027s configured TCP port is necessary. This issue affects BIND 9 versions 9.2.0 through 9.16.43, 9.18.0 through 9.18.18, 9.19.0 through 9.19.16, 9.9.3-S1 through 9.16.43-S1, and 9.18.0-S1 through 9.18.18-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-3341" }, { "cve": "CVE-2023-3446", "cwe": { "id": "CWE-1333", "name": "Inefficient Regular Expression Complexity" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. One of those checks confirms that the modulus (\u0027p\u0027 parameter) is not too large. Trying to use a very large modulus is slow and OpenSSL will not normally use a modulus which is over 10,000 bits in length. However the DH_check() function checks numerous aspects of the key or parameters that have been supplied. Some of those checks use the supplied modulus value even if it has already been found to be too large. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulernable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \u0027-check\u0027 option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-3446" }, { "cve": "CVE-2023-3817", "cwe": { "id": "CWE-834", "name": "Excessive Iteration" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. After fixing CVE-2023-3446 it was discovered that a large q parameter value can also trigger an overly long computation during some of these checks. A correct q value, if present, cannot be larger than the modulus p parameter, thus it is unnecessary to perform these checks if q is larger than p. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \"-check\" option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-3817" }, { "cve": "CVE-2023-4236", "cwe": { "id": "CWE-617", "name": "Reachable Assertion" }, "notes": [ { "category": "summary", "text": "A flaw in the networking code handling DNS-over-TLS queries may cause `named` to terminate unexpectedly due to an assertion failure. This happens when internal data structures are incorrectly reused under significant DNS-over-TLS query load. This issue affects BIND 9 versions 9.18.0 through 9.18.18 and 9.18.11-S1 through 9.18.18-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-4236" }, { "cve": "CVE-2023-4408", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The DNS message parsing code in `named` includes a section whose computational complexity is overly high. It does not cause problems for typical DNS traffic, but crafted queries and responses may cause excessive CPU load on the affected `named` instance by exploiting this flaw. This issue affects both authoritative servers and recursive resolvers. This issue affects BIND 9 versions 9.0.0 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.9.3-S1 through 9.11.37-S1, 9.16.8-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-4408" }, { "cve": "CVE-2023-4807", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Issue summary: The POLY1305 MAC (message authentication code) implementation contains a bug that might corrupt the internal state of applications on the Windows 64 platform when running on newer X86_64 processors supporting the AVX512-IFMA instructions. Impact summary: If in an application that uses the OpenSSL library an attacker can influence whether the POLY1305 MAC algorithm is used, the application state might be corrupted with various application dependent consequences. The POLY1305 MAC (message authentication code) implementation in OpenSSL does not save the contents of non-volatile XMM registers on Windows 64 platform when calculating the MAC of data larger than 64 bytes. Before returning to the caller all the XMM registers are set to zero rather than restoring their previous content. The vulnerable code is used only on newer x86_64 processors supporting the AVX512-IFMA instructions. The consequences of this kind of internal application state corruption can be various - from no consequences, if the calling application does not depend on the contents of non-volatile XMM registers at all, to the worst consequences, where the attacker could get complete control of the application process. However given the contents of the registers are just zeroized so the attacker cannot put arbitrary values inside, the most likely consequence, if any, would be an incorrect result of some application dependent calculations or a crash leading to a denial of service. The POLY1305 MAC algorithm is most frequently used as part of the CHACHA20-POLY1305 AEAD (authenticated encryption with associated data) algorithm. The most common usage of this AEAD cipher is with TLS protocol versions 1.2 and 1.3 and a malicious client can influence whether this AEAD cipher is used by the server. This implies that server applications using OpenSSL can be potentially impacted. However we are currently not aware of any concrete application that would be affected by this issue therefore we consider this a Low severity security issue. As a workaround the AVX512-IFMA instructions support can be disabled at runtime by setting the environment variable OPENSSL_ia32cap: OPENSSL_ia32cap=:~0x200000 The FIPS provider is not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-4807" }, { "cve": "CVE-2023-5517", "cwe": { "id": "CWE-617", "name": "Reachable Assertion" }, "notes": [ { "category": "summary", "text": "A flaw in query-handling code can cause `named` to exit prematurely with an assertion failure when: - `nxdomain-redirect \u003cdomain\u003e;` is configured, and - the resolver receives a PTR query for an RFC 1918 address that would normally result in an authoritative NXDOMAIN response. This issue affects BIND 9 versions 9.12.0 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.16.8-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-5517" }, { "cve": "CVE-2023-5678", "cwe": { "id": "CWE-754", "name": "Improper Check for Unusual or Exceptional Conditions" }, "notes": [ { "category": "summary", "text": "Issue summary: Generating excessively long X9.42 DH keys or checking excessively long X9.42 DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_generate_key() to generate an X9.42 DH key may experience long delays. Likewise, applications that use DH_check_pub_key(), DH_check_pub_key_ex() or EVP_PKEY_public_check() to check an X9.42 DH key or X9.42 DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. While DH_check() performs all the necessary checks (as of CVE-2023-3817), DH_check_pub_key() doesn\u0027t make any of these checks, and is therefore vulnerable for excessively large P and Q parameters. Likewise, while DH_generate_key() performs a check for an excessively large P, it doesn\u0027t check for an excessively large Q. An application that calls DH_generate_key() or DH_check_pub_key() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. DH_generate_key() and DH_check_pub_key() are also called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_pub_key_ex(), EVP_PKEY_public_check(), and EVP_PKEY_generate(). Also vulnerable are the OpenSSL pkey command line application when using the \"-pubcheck\" option, as well as the OpenSSL genpkey command line application. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-5678" }, { "cve": "CVE-2023-5679", "cwe": { "id": "CWE-617", "name": "Reachable Assertion" }, "notes": [ { "category": "summary", "text": "A bad interaction between DNS64 and serve-stale may cause `named` to crash with an assertion failure during recursive resolution, when both of these features are enabled. This issue affects BIND 9 versions 9.16.12 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.16.12-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-5679" }, { "cve": "CVE-2023-5680", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "A bad interaction between DNS64 and serve-stale may cause `named` to crash with an assertion failure during recursive resolution, when both of these features are enabled. This issue affects BIND 9 versions 9.16.12 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.16.12-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-5680" }, { "cve": "CVE-2023-6129", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "notes": [ { "category": "summary", "text": "Issue summary: The POLY1305 MAC (message authentication code) implementation\r\ncontains a bug that might corrupt the internal state of applications running\r\non PowerPC CPU based platforms if the CPU provides vector instructions.\r\n\r\nImpact summary: If an attacker can influence whether the POLY1305 MAC\r\nalgorithm is used, the application state might be corrupted with various\r\napplication dependent consequences.\r\n\r\nThe POLY1305 MAC (message authentication code) implementation in OpenSSL for\r\nPowerPC CPUs restores the contents of vector registers in a different order\r\nthan they are saved. Thus the contents of some of these vector registers\r\nare corrupted when returning to the caller. The vulnerable code is used only\r\non newer PowerPC processors supporting the PowerISA 2.07 instructions.\r\n\r\nThe consequences of this kind of internal application state corruption can\r\nbe various - from no consequences, if the calling application does not\r\ndepend on the contents of non-volatile XMM registers at all, to the worst\r\nconsequences, where the attacker could get complete control of the application\r\nprocess. However unless the compiler uses the vector registers for storing\r\npointers, the most likely consequence, if any, would be an incorrect result\r\nof some application dependent calculations or a crash leading to a denial of\r\nservice.\r\n\r\nThe POLY1305 MAC algorithm is most frequently used as part of the\r\nCHACHA20-POLY1305 AEAD (authenticated encryption with associated data)\r\nalgorithm. The most common usage of this AEAD cipher is with TLS protocol\r\nversions 1.2 and 1.3. If this cipher is enabled on the server a malicious\r\nclient can influence whether this AEAD cipher is used. This implies that\r\nTLS server applications using OpenSSL can be potentially impacted. However\r\nwe are currently not aware of any concrete application that would be affected\r\nby this issue therefore we consider this a Low severity security issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-6129" }, { "cve": "CVE-2023-6237", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long invalid RSA public keys may take a long time. Impact summary: Applications that use the function EVP_PKEY_public_check() to check RSA public keys may experience long delays. Where the key that is being checked has been obtained from an untrusted source this may lead to a Denial of Service. When function EVP_PKEY_public_check() is called on RSA public keys, a computation is done to confirm that the RSA modulus, n, is composite. For valid RSA keys, n is a product of two or more large primes and this computation completes quickly. However, if n is an overly large prime, then this computation would take a long time. An application that calls EVP_PKEY_public_check() and supplies an RSA key obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function EVP_PKEY_public_check() is not called from other OpenSSL functions however it is called from the OpenSSL pkey command line application. For that reason that application is also vulnerable if used with the \u0027-pubin\u0027 and \u0027-check\u0027 options on untrusted data. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-6237" }, { "cve": "CVE-2023-6516", "cwe": { "id": "CWE-789", "name": "Memory Allocation with Excessive Size Value" }, "notes": [ { "category": "summary", "text": "To keep its cache database efficient, `named` running as a recursive resolver occasionally attempts to clean up the database. It uses several methods, including some that are asynchronous: a small chunk of memory pointing to the cache element that can be cleaned up is first allocated and then queued for later processing. It was discovered that if the resolver is continuously processing query patterns triggering this type of cache-database maintenance, `named` may not be able to handle the cleanup events in a timely manner. This in turn enables the list of queued cleanup events to grow infinitely large over time, allowing the configured `max-cache-size` limit to be significantly exceeded. This issue affects BIND 9 versions 9.16.0 through 9.16.45 and 9.16.8-S1 through 9.16.45-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-6516" }, { "cve": "CVE-2023-7104", "cwe": { "id": "CWE-122", "name": "Heap-based Buffer Overflow" }, "notes": [ { "category": "summary", "text": "A vulnerability was found in SQLite SQLite3 up to 3.43.0 and classified as critical. This issue affects the function sessionReadRecord of the file ext/session/sqlite3session.c of the component make alltest Handler. The manipulation leads to heap-based buffer overflow. It is recommended to apply a patch to fix this issue. The associated identifier of this vulnerability is VDB-248999.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-7104" }, { "cve": "CVE-2023-32002", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "The use of `Module._load()` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\n\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32002" }, { "cve": "CVE-2023-32003", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "`fs.mkdtemp()` and `fs.mkdtempSync()` can be used to bypass the permission model check using a path traversal attack. This flaw arises from a missing check in the fs.mkdtemp() API and the impact is a malicious actor could create an arbitrary directory.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32003" }, { "cve": "CVE-2023-32004", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "A vulnerability has been discovered in Node.js version 20, specifically within the experimental permission model. This flaw relates to improper handling of Buffers in file system APIs causing a traversal path to bypass when verifying file permissions.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 8.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32004" }, { "cve": "CVE-2023-32005", "cwe": { "id": "CWE-732", "name": "Incorrect Permission Assignment for Critical Resource" }, "notes": [ { "category": "summary", "text": "A vulnerability has been identified in Node.js version 20, affecting users of the experimental permission model when the --allow-fs-read flag is used with a non-* argument.\n\nThis flaw arises from an inadequate permission model that fails to restrict file stats through the `fs.statfs` API. As a result, malicious actors can retrieve stats from files that they do not have explicit read access to.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32005" }, { "cve": "CVE-2023-32006", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "The use of `module.constructor.createRequire()` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\n\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x, and, 20.x.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 8.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32006" }, { "cve": "CVE-2023-32558", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "The use of the deprecated API `process.binding()` can bypass the permission model through path traversal. \n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.x.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32558" }, { "cve": "CVE-2023-32559", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "A privilege escalation vulnerability exists in the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x. The use of the deprecated API `process.binding()` can bypass the policy mechanism by requiring internal modules and eventually take advantage of `process.binding(\u0027spawn_sync\u0027)` run arbitrary code, outside of the limits defined in a `policy.json` file. Please note that at the time this CVE was issued, the policy is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-32559" }, { "cve": "CVE-2023-38552", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "When the Node.js policy feature checks the integrity of a resource against a trusted manifest, the application can intercept the operation and return a forged checksum to the node\u0027s policy implementation, thus effectively disabling the integrity check.\r\nImpacts:\r\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 18.x and, 20.x.\r\nPlease note that at the time this CVE was issued, the policy mechanism is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-38552" }, { "cve": "CVE-2023-39331", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "A previously disclosed vulnerability (CVE-2023-30584) was patched insufficiently in commit 205f1e6. The new path traversal vulnerability arises because the implementation does not protect itself against the application overwriting built-in utility functions with user-defined implementations.\r\n\r\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-39331" }, { "cve": "CVE-2023-39332", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Various `node:fs` functions allow specifying paths as either strings or `Uint8Array` objects. In Node.js environments, the `Buffer` class extends the `Uint8Array` class. Node.js prevents path traversal through strings (see CVE-2023-30584) and `Buffer` objects (see CVE-2023-32004), but not through non-`Buffer` `Uint8Array` objects.\r\n\r\nThis is distinct from CVE-2023-32004 which only referred to `Buffer` objects. However, the vulnerability follows the same pattern using `Uint8Array` instead of `Buffer`.\r\n\r\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-39332" }, { "cve": "CVE-2023-39333", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Maliciously crafted export names in an imported WebAssembly module can inject JavaScript code. The injected code may be able to access data and functions that the WebAssembly module itself does not have access to, similar to as if the WebAssembly module was a JavaScript module.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-39333" }, { "cve": "CVE-2023-44487", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-44487" }, { "cve": "CVE-2023-45143", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "Undici is an HTTP/1.1 client written from scratch for Node.js. Prior to version 5.26.2, Undici already cleared Authorization headers on cross-origin redirects, but did not clear `Cookie` headers. By design, `cookie` headers are forbidden request headers, disallowing them to be set in RequestInit.headers in browser environments. Since undici handles headers more liberally than the spec, there was a disconnect from the assumptions the spec made, and undici\u0027s implementation of fetch. As such this may lead to accidental leakage of cookie to a third-party site or a malicious attacker who can control the redirection target (ie. an open redirector) to leak the cookie to the third party site. This was patched in version 5.26.2. There are no known workarounds.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.9, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-45143" }, { "cve": "CVE-2023-46809", "cwe": { "id": "CWE-385", "name": "Covert Timing Channel" }, "notes": [ { "category": "summary", "text": "Node.js versions which bundle an unpatched version of OpenSSL or run against a dynamically linked version of OpenSSL which are unpatched are vulnerable to the Marvin Attack - https://people.redhat.com/~hkario/marvin/, if PCKS #1 v1.5 padding is allowed when performing RSA descryption using a private key.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.4, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-46809" }, { "cve": "CVE-2023-47038", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "notes": [ { "category": "summary", "text": "A vulnerability was found in perl 5.30.0 through 5.38.0. This issue occurs when a crafted regular expression is compiled by perl, which can allow an attacker controlled byte buffer overflow in a heap allocated buffer.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.0, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-47038" }, { "cve": "CVE-2023-47039", "cwe": { "id": "CWE-122", "name": "Heap-based Buffer Overflow" }, "notes": [ { "category": "summary", "text": "A vulnerability was found in Perl. This security issue occurs while Perl for Windows relies on the system path environment variable to find the shell (`cmd.exe`). When running an executable that uses the Windows Perl interpreter, Perl attempts to find and execute `cmd.exe` within the operating system. However, due to path search order issues, Perl initially looks for cmd.exe in the current working directory. This flaw allows an attacker with limited privileges to place`cmd.exe` in locations with weak permissions, such as `C:\\ProgramData`. By doing so, arbitrary code can be executed when an administrator attempts to use this executable from these compromised locations.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-47039" }, { "cve": "CVE-2023-47100", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "In Perl before 5.38.2, S_parse_uniprop_string in regcomp.c can write to unallocated space because a property name associated with a \\p{...} regular expression construct is mishandled. The earliest affected version is 5.30.0.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-47100" }, { "cve": "CVE-2023-48795", "cwe": { "id": "CWE-222", "name": "Truncation of Security-relevant Information" }, "notes": [ { "category": "summary", "text": "The SSH transport protocol with certain OpenSSH extensions, found in OpenSSH before 9.6 and other products, allows remote attackers to bypass integrity checks such that some packets are omitted (from the extension negotiation message), and a client and server may consequently end up with a connection for which some security features have been downgraded or disabled, aka a Terrapin attack. This occurs because the SSH Binary Packet Protocol (BPP), implemented by these extensions, mishandles the handshake phase and mishandles use of sequence numbers. For example, there is an effective attack against SSH\u0027s use of ChaCha20-Poly1305 (and CBC with Encrypt-then-MAC). The bypass occurs in chacha20-poly1305@openssh.com and (if CBC is used) the -etm@openssh.com MAC algorithms. This also affects Maverick Synergy Java SSH API before 3.1.0-SNAPSHOT, Dropbear through 2022.83, Ssh before 5.1.1 in Erlang/OTP, PuTTY before 0.80, AsyncSSH before 2.14.2, golang.org/x/crypto before 0.17.0, libssh before 0.10.6, libssh2 through 1.11.0, Thorn Tech SFTP Gateway before 3.4.6, Tera Term before 5.1, Paramiko before 3.4.0, jsch before 0.2.15, SFTPGo before 2.5.6, Netgate pfSense Plus through 23.09.1, Netgate pfSense CE through 2.7.2, HPN-SSH through 18.2.0, ProFTPD before 1.3.8b (and before1.3.9rc2), ORYX CycloneSSH before 2.3.4, NetSarang XShell 7 before Build 0144, CrushFTP before 10.6.0, ConnectBot SSH library before 2.2.22, Apache MINA sshd through 2.11.0, sshj through 0.37.0, TinySSH through 20230101, trilead-ssh2 6401, the net-ssh gem 7.2.0 for Ruby, the mscdex ssh2 module before 1.15.0 for Node.js, the thrussh library before 0.35.1 for Rust, and the Russh crate before 0.40.2 for Rust; and there could be effects on Bitvise SSH through 9.31.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-48795" }, { "cve": "CVE-2023-50387", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Certain DNSSEC aspects of the DNS protocol (in RFC 4033, 4034, 4035, 6840, and related RFCs) allow remote attackers to cause a denial of service (CPU consumption) via one or more DNSSEC responses, aka the \"KeyTrap\" issue. One of the concerns is that, when there is a zone with many DNSKEY and RRSIG records, the protocol specification implies that an algorithm must evaluate all combinations of DNSKEY and RRSIG records.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-50387" }, { "cve": "CVE-2023-50868", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The Closest Encloser Proof aspect of the DNS protocol (in RFC 5155 when RFC 9276 guidance is skipped) allows remote attackers to cause a denial of service (CPU consumption for SHA-1 computations) via DNSSEC responses in a random subdomain attack, aka the \"NSEC3\" issue. The RFC 5155 specification implies that an algorithm must perform thousands of iterations of a hash function in certain situations.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-50868" }, { "cve": "CVE-2023-52389", "cwe": { "id": "CWE-190", "name": "Integer Overflow or Wraparound" }, "notes": [ { "category": "summary", "text": "UTF32Encoding.cpp in POCO has a Poco::UTF32Encoding integer overflow and resultant stack buffer overflow because Poco::UTF32Encoding::convert() and Poco::UTF32::queryConvert() may return a negative integer if a UTF-32 byte sequence evaluates to a value of 0x80000000 or higher. This is fixed in 1.11.8p2, 1.12.5p2, and 1.13.0.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2023-52389" }, { "cve": "CVE-2024-0232", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "notes": [ { "category": "summary", "text": "A heap use-after-free issue has been identified in SQLite in the jsonParseAddNodeArray() function in sqlite3.c. This flaw allows a local attacker to leverage a victim to pass specially crafted malicious input to the application, potentially causing a crash and leading to a denial of service.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.7, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-0232" }, { "cve": "CVE-2024-0727", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Issue summary: Processing a maliciously formatted PKCS12 file may lead OpenSSL\r\nto crash leading to a potential Denial of Service attack\r\n\r\nImpact summary: Applications loading files in the PKCS12 format from untrusted\r\nsources might terminate abruptly.\r\n\r\nA file in PKCS12 format can contain certificates and keys and may come from an\r\nuntrusted source. The PKCS12 specification allows certain fields to be NULL, but\r\nOpenSSL does not correctly check for this case. This can lead to a NULL pointer\r\ndereference that results in OpenSSL crashing. If an application processes PKCS12\r\nfiles from an untrusted source using the OpenSSL APIs then that application will\r\nbe vulnerable to this issue.\r\n\r\nOpenSSL APIs that are vulnerable to this are: PKCS12_parse(),\r\nPKCS12_unpack_p7data(), PKCS12_unpack_p7encdata(), PKCS12_unpack_authsafes()\r\nand PKCS12_newpass().\r\n\r\nWe have also fixed a similar issue in SMIME_write_PKCS7(). However since this\r\nfunction is related to writing data we do not consider it security significant.\r\n\r\nThe FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-0727" }, { "cve": "CVE-2024-2511", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Issue summary: Some non-default TLS server configurations can cause unbounded memory growth when processing TLSv1.3 sessions\r\nImpact summary: An attacker may exploit certain server configurations to trigger unbounded memory growth that would lead to a Denial of Service This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option is being used (but not if early_data support is also configured and the default anti-replay protection is in use). In this case, under certain conditions, the session cache can get into an incorrect state and it will fail to flush properly as it fills. The session cache will continue to grow in an unbounded manner. A malicious client could deliberately create the scenario for this failure to force a Denial of Service. It may also happen by accident in normal operation. This issue only affects TLS servers supporting TLSv1.3. It does not affect TLS clients. The FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue. OpenSSL 1.0.2 is also not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.7, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-2511" }, { "cve": "CVE-2024-4741", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "notes": [ { "category": "summary", "text": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-4741" }, { "cve": "CVE-2024-5535", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "Issue summary: Calling the OpenSSL API function SSL_select_next_proto with an empty supported client protocols buffer may cause a crash or memory contents to be sent to the peer. Impact summary: A buffer overread can have a range of potential consequences such as unexpected application beahviour or a crash. In particular this issue could result in up to 255 bytes of arbitrary private data from memory being sent to the peer leading to a loss of confidentiality. However, only applications that directly call the SSL_select_next_proto function with a 0 length list of supported client protocols are affected by this issue. This would normally never be a valid scenario and is typically not under attacker control but may occur by accident in the case of a configuration or programming error in the calling application. The OpenSSL API function SSL_select_next_proto is typically used by TLS applications that support ALPN (Application Layer Protocol Negotiation) or NPN (Next Protocol Negotiation). NPN is older, was never standardised and is deprecated in favour of ALPN. We believe that ALPN is significantly more widely deployed than NPN. The SSL_select_next_proto function accepts a list of protocols from the server and a list of protocols from the client and returns the first protocol that appears in the server list that also appears in the client list. In the case of no overlap between the two lists it returns the first item in the client list. In either case it will signal whether an overlap between the two lists was found. In the case where SSL_select_next_proto is called with a zero length client list it fails to notice this condition and returns the memory immediately following the client list pointer (and reports that there was no overlap in the lists). This function is typically called from a server side application callback for ALPN or a client side application callback for NPN. In the case of ALPN the list of protocols supplied by the client is guaranteed by libssl to never be zero in length. The list of server protocols comes from the application and should never normally be expected to be of zero length. In this case if the SSL_select_next_proto function has been called as expected (with the list supplied by the client passed in the client/client_len parameters), then the application will not be vulnerable to this issue. If the application has accidentally been configured with a zero length server list, and has accidentally passed that zero length server list in the client/client_len parameters, and has additionally failed to correctly handle a \"no overlap\" response (which would normally result in a handshake failure in ALPN) then it will be vulnerable to this problem. In the case of NPN, the protocol permits the client to opportunistically select a protocol when there is no overlap. OpenSSL returns the first client protocol in the no overlap case in support of this. The list of client protocols comes from the application and should never normally be expected to be of zero length. However if the SSL_select_next_proto function is accidentally called with a client_len of 0 then an invalid memory pointer will be returned instead. If the application uses this output as the opportunistic protocol then the loss of confidentiality will occur. This issue has been assessed as Low severity because applications are most likely to be vulnerable if they are using NPN instead of ALPN - but NPN is not widely used. It also requires an application configuration or programming error. Finally, this issue would not typically be under attacker control making active exploitation unlikely. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue. Due to the low severity of this issue we are not issuing new releases of OpenSSL at this time. The fix will be included in the next releases when they become available.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-5535" }, { "cve": "CVE-2024-21890", "cwe": { "id": "CWE-287", "name": "Improper Authentication" }, "notes": [ { "category": "summary", "text": "The Node.js Permission Model does not clarify in the documentation that wildcards should be only used as the last character of a file path. For example: ``` --allow-fs-read=/home/node/.ssh/*.pub ``` will ignore `pub` and give access to everything after `.ssh/`. This misleading documentation affects all users using the experimental permission model in Node.js 20 and Node.js 21. Please note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-21890" }, { "cve": "CVE-2024-21891", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "Node.js could allow a remote attacker to bypass security restrictions, caused by improper path traversal sequence sanitization. By using a path traversal attack, an attacker could exploit this vulnerability leading to filesystem permission model bypass.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-21891" }, { "cve": "CVE-2024-21892", "cwe": { "id": "CWE-94", "name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)" }, "notes": [ { "category": "summary", "text": "Node.js could allow a local authenticated attacker to gain elevated privileges on the system, caused by a bug in the implementation of the exception of CAP_NET_BIND_SERVICE. An attacker could exploit this vulnerability to inject code that inherits the process\u0027s elevated privileges.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-21892" }, { "cve": "CVE-2024-21896", "cwe": { "id": "CWE-27", "name": "Path Traversal: \u0027dir/../../filename\u0027" }, "notes": [ { "category": "summary", "text": "Node.js could allow a remote attacker to traverse directories on the system. By monkey-patching Buffer internals, namely, Buffer.prototype.utf8Write, an attacker could send a specially crafted URL request containing \"dot dot\" sequences (/../) to read arbitrary files on the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.9, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-21896" }, { "cve": "CVE-2024-22017", "cwe": { "id": "CWE-250", "name": "Execution with Unnecessary Privileges" }, "notes": [ { "category": "summary", "text": "setuid() does not affect libuv\u0027s internal io_uring operations if initialized before the call to setuid(). This allows the process to perform privileged operations despite presumably having dropped such privileges through a call to setuid(). This vulnerability affects all users using version greater or equal than Node.js 18.18.0, Node.js 20.4.0 and Node.js 21.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:H/UI:N/S:C/C:L/I:H/A:L", "version": "3.0" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-22017" }, { "cve": "CVE-2024-22019", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "A vulnerability in Node.js HTTP servers allows an attacker to send a specially crafted HTTP request with chunked encoding, leading to resource exhaustion and denial of service (DoS). The server reads an unbounded number of bytes from a single connection, exploiting the lack of limitations on chunk extension bytes. The issue can cause CPU and network bandwidth exhaustion, bypassing standard safeguards like timeouts and body size limits.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.0" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-22019" }, { "cve": "CVE-2024-22025", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Node.js is vulnerable to a denial of service, caused by a resource exhaustion vulnerability in fetch() brotli decoding . By sending a specially crafted request, a remote attacker could exploit this vulnerability to cause a denial of service condition.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-22025" }, { "cve": "CVE-2024-24758", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "Undici is an HTTP/1.1 client, written from scratch for Node.js. Undici already cleared Authorization headers on cross-origin redirects, but did not clear `Proxy-Authentication` headers. This issue has been patched in versions 5.28.3 and 6.6.1. Users are advised to upgrade. There are no known workarounds for this vulnerability.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.9, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-24758" }, { "cve": "CVE-2024-24806", "cwe": { "id": "CWE-918", "name": "Server-Side Request Forgery (SSRF)" }, "notes": [ { "category": "summary", "text": "libuv is a multi-platform support library with a focus on asynchronous I/O. The `uv_getaddrinfo` function in `src/unix/getaddrinfo.c` (and its windows counterpart `src/win/getaddrinfo.c`), truncates hostnames to 256 characters before calling `getaddrinfo`. This behavior can be exploited to create addresses like `0x00007f000001`, which are considered valid by `getaddrinfo` and could allow an attacker to craft payloads that resolve to unintended IP addresses, bypassing developer checks. The vulnerability arises due to how the `hostname_ascii` variable (with a length of 256 bytes) is handled in `uv_getaddrinfo` and subsequently in `uv__idna_toascii`. When the hostname exceeds 256 characters, it gets truncated without a terminating null byte. As a result attackers may be able to access internal APIs or for websites (similar to MySpace) that allows users to have `username.example.com` pages. Internal services that crawl or cache these user pages can be exposed to SSRF attacks if a malicious user chooses a long vulnerable username. This issue has been addressed in release version 1.48.0. Users are advised to upgrade. There are no known workarounds for this vulnerability.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-24806" }, { "cve": "CVE-2024-27980", "cwe": { "id": "CWE-78", "name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)" }, "notes": [ { "category": "summary", "text": "Node.js could allow a remote attacker to execute arbitrary commands on the system, caused by the improper handling of batch files in child_process.spawn / child_process.spawnSync. By sending a specially crafted command line argument using args parameter, an attacker could exploit this vulnerability to inject and execute arbitrary commands on the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-27980" }, { "cve": "CVE-2024-27982", "cwe": { "id": "CWE-444", "name": "Inconsistent Interpretation of HTTP Requests (\u0027HTTP Request/Response Smuggling\u0027)" }, "notes": [ { "category": "summary", "text": "A vulnerability in the http server, where malformed headers can lead to HTTP request smuggling. Specifically, if a space is placed before a content-length header, it is not interpreted correctly, enabling attackers to smuggle in a second request within the body of the first.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-27982" }, { "cve": "CVE-2024-27983", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Node.js is vulnerable to a denial of service, caused by an assertion failure in `node::http2::Http2Session::~Http2Session()`. By sending a small amount of HTTP/2 frames packets with a few HTTP/2 frames inside, an attacker could exploit this vulnerability to cause the HTTP/2 server to crash.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-27983" }, { "cve": "CVE-2024-46888", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "The affected application does not properly sanitize user provided paths for SFTP-based file up- and downloads. This could allow an authenticated remote attacker to manipulate arbitrary files on the filesystem and achieve arbitrary code execution on the device.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.9, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-46888" }, { "cve": "CVE-2024-46889", "cwe": { "id": "CWE-321", "name": "Use of Hard-coded Cryptographic Key" }, "notes": [ { "category": "summary", "text": "The affected application uses hard-coded cryptographic key material to obfuscate configuration files. This could allow an attacker to learn that cryptographic key material through reverse engineering of the application binary and decrypt arbitrary backup files.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-46889" }, { "cve": "CVE-2024-46890", "cwe": { "id": "CWE-78", "name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)" }, "notes": [ { "category": "summary", "text": "The affected application does not properly validate input sent to specific endpoints of its web API. This could allow an authenticated remote attacker with high privileges on the application to execute arbitrary code on the underlying OS.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.1, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-46890" }, { "cve": "CVE-2024-46891", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The affected application does not properly restrict the size of generated log files. This could allow an unauthenticated remote attacker to trigger a large amount of logged events to exhaust the system\u0027s resources and create a denial of service condition.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-46891" }, { "cve": "CVE-2024-46892", "cwe": { "id": "CWE-613", "name": "Insufficient Session Expiration" }, "notes": [ { "category": "summary", "text": "The affected application does not properly invalidate sessions when the associated user is deleted or disabled or their permissions are modified. This could allow an authenticated attacker to continue performing malicious actions even after their user account has been disabled.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-46892" }, { "cve": "CVE-2024-46894", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "The affected application does not properly validate authorization of a user to query the \"/api/sftp/users\" endpoint. This could allow an authenticated remote attacker to gain knowledge about the list of configured users of the SFTP service and also modify that configuration.", "title": "Summary" } ], "product_status": { "known_affected": [ "CSAFPID-0001" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "CSAFPID-0001" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "CSAFPID-0001" ] } ], "title": "CVE-2024-46894" } ] }
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-12-04T11:54:26+00:00", "generator": { "date": "2024-12-04T11:54:26+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-12-04T11:54:26+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" } ] }
ssa-354112
Vulnerability from csaf_siemens
Notes
{ "document": { "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Disclosure is not limited. (TLPv2: TLP:CLEAR)", "tlp": { "label": "WHITE" } }, "lang": "en", "notes": [ { "category": "summary", "text": "SCALANCE M-800 family before V8.2 is affected by multiple vulnerabilities.\n\nSiemens has released new versions for the affected products and recommends to update to the latest versions.", "title": "Summary" }, { "category": "general", "text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity", "title": "General Recommendations" }, { "category": "general", "text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories", "title": "Additional Resources" }, { "category": "legal_disclaimer", "text": "The use of Siemens Security Advisories is subject to the terms and conditions listed on: https://www.siemens.com/productcert/terms-of-use.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "productcert@siemens.com", "name": "Siemens ProductCERT", "namespace": "https://www.siemens.com" }, "references": [ { "category": "self", "summary": "SSA-354112: Multiple Vulnerabilities in SCALANCE M-800 Family Before V8.2 - HTML Version", "url": "https://cert-portal.siemens.com/productcert/html/ssa-354112.html" }, { "category": "self", "summary": "SSA-354112: Multiple Vulnerabilities in SCALANCE M-800 Family Before V8.2 - CSAF Version", "url": "https://cert-portal.siemens.com/productcert/csaf/ssa-354112.json" } ], "title": "SSA-354112: Multiple Vulnerabilities in SCALANCE M-800 Family Before V8.2", "tracking": { "current_release_date": "2024-11-12T00:00:00Z", "generator": { "engine": { "name": "Siemens ProductCERT CSAF Generator", "version": "1" } }, "id": "SSA-354112", "initial_release_date": "2024-11-12T00:00:00Z", "revision_history": [ { "date": "2024-11-12T00:00:00Z", "legacy_version": "1.0", "number": "1", "summary": "Publication Date" } ], "status": "interim", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "RUGGEDCOM RM1224 LTE(4G) EU (6GK6108-4AM00-2BA2)", "product_id": "1", "product_identification_helper": { "model_numbers": [ "6GK6108-4AM00-2BA2" ] } } } ], "category": "product_name", "name": "RUGGEDCOM RM1224 LTE(4G) EU (6GK6108-4AM00-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "RUGGEDCOM RM1224 LTE(4G) NAM (6GK6108-4AM00-2DA2)", "product_id": "2", "product_identification_helper": { "model_numbers": [ "6GK6108-4AM00-2DA2" ] } } } ], "category": "product_name", "name": "RUGGEDCOM RM1224 LTE(4G) NAM (6GK6108-4AM00-2DA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M804PB (6GK5804-0AP00-2AA2)", "product_id": "3", "product_identification_helper": { "model_numbers": [ "6GK5804-0AP00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M804PB (6GK5804-0AP00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1AA00-2AA2)", "product_id": "4", "product_identification_helper": { "model_numbers": [ "6GK5812-1AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1BA00-2AA2)", "product_id": "5", "product_identification_helper": { "model_numbers": [ "6GK5812-1BA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M812-1 ADSL-Router (6GK5812-1BA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1AA00-2AA2)", "product_id": "6", "product_identification_helper": { "model_numbers": [ "6GK5816-1AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1BA00-2AA2)", "product_id": "7", "product_identification_helper": { "model_numbers": [ "6GK5816-1BA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M816-1 ADSL-Router (6GK5816-1BA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M826-2 SHDSL-Router (6GK5826-2AB00-2AB2)", "product_id": "8", "product_identification_helper": { "model_numbers": [ "6GK5826-2AB00-2AB2" ] } } } ], "category": "product_name", "name": "SCALANCE M826-2 SHDSL-Router (6GK5826-2AB00-2AB2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M874-2 (6GK5874-2AA00-2AA2)", "product_id": "9", "product_identification_helper": { "model_numbers": [ "6GK5874-2AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M874-2 (6GK5874-2AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M874-3 3G-Router (CN) (6GK5874-3AA00-2FA2)", "product_id": "10", "product_identification_helper": { "model_numbers": [ "6GK5874-3AA00-2FA2" ] } } } ], "category": "product_name", "name": "SCALANCE M874-3 3G-Router (CN) (6GK5874-3AA00-2FA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M874-3 (6GK5874-3AA00-2AA2)", "product_id": "11", "product_identification_helper": { "model_numbers": [ "6GK5874-3AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE M874-3 (6GK5874-3AA00-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-3 (6GK5876-3AA02-2BA2)", "product_id": "12", "product_identification_helper": { "model_numbers": [ "6GK5876-3AA02-2BA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-3 (6GK5876-3AA02-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-3 (ROK) (6GK5876-3AA02-2EA2)", "product_id": "13", "product_identification_helper": { "model_numbers": [ "6GK5876-3AA02-2EA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-3 (ROK) (6GK5876-3AA02-2EA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-4 (6GK5876-4AA10-2BA2)", "product_id": "14", "product_identification_helper": { "model_numbers": [ "6GK5876-4AA10-2BA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-4 (6GK5876-4AA10-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-4 (EU) (6GK5876-4AA00-2BA2)", "product_id": "15", "product_identification_helper": { "model_numbers": [ "6GK5876-4AA00-2BA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-4 (EU) (6GK5876-4AA00-2BA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE M876-4 (NAM) (6GK5876-4AA00-2DA2)", "product_id": "16", "product_identification_helper": { "model_numbers": [ "6GK5876-4AA00-2DA2" ] } } } ], "category": "product_name", "name": "SCALANCE M876-4 (NAM) (6GK5876-4AA00-2DA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM853-1 (A1) (6GK5853-2EA10-2AA1)", "product_id": "17", "product_identification_helper": { "model_numbers": [ "6GK5853-2EA10-2AA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM853-1 (A1) (6GK5853-2EA10-2AA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM853-1 (B1) (6GK5853-2EA10-2BA1)", "product_id": "18", "product_identification_helper": { "model_numbers": [ "6GK5853-2EA10-2BA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM853-1 (B1) (6GK5853-2EA10-2BA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM853-1 (EU) (6GK5853-2EA00-2DA1)", "product_id": "19", "product_identification_helper": { "model_numbers": [ "6GK5853-2EA00-2DA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM853-1 (EU) (6GK5853-2EA00-2DA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (A1) (6GK5856-2EA10-3AA1)", "product_id": "20", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA10-3AA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (A1) (6GK5856-2EA10-3AA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (B1) (6GK5856-2EA10-3BA1)", "product_id": "21", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA10-3BA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (B1) (6GK5856-2EA10-3BA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (CN) (6GK5856-2EA00-3FA1)", "product_id": "22", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA00-3FA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (CN) (6GK5856-2EA00-3FA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (EU) (6GK5856-2EA00-3DA1)", "product_id": "23", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA00-3DA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (EU) (6GK5856-2EA00-3DA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE MUM856-1 (RoW) (6GK5856-2EA00-3AA1)", "product_id": "24", "product_identification_helper": { "model_numbers": [ "6GK5856-2EA00-3AA1" ] } } } ], "category": "product_name", "name": "SCALANCE MUM856-1 (RoW) (6GK5856-2EA00-3AA1)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE S615 EEC LAN-Router (6GK5615-0AA01-2AA2)", "product_id": "25", "product_identification_helper": { "model_numbers": [ "6GK5615-0AA01-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE S615 EEC LAN-Router (6GK5615-0AA01-2AA2)" }, { "branches": [ { "category": "product_version_range", "name": "vers:all/\u003cV8.2", "product": { "name": "SCALANCE S615 LAN-Router (6GK5615-0AA00-2AA2)", "product_id": "26", "product_identification_helper": { "model_numbers": [ "6GK5615-0AA00-2AA2" ] } } } ], "category": "product_name", "name": "SCALANCE S615 LAN-Router (6GK5615-0AA00-2AA2)" } ], "category": "vendor", "name": "Siemens" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-3506", "cwe": { "id": "CWE-125", "name": "Out-of-bounds Read" }, "notes": [ { "category": "summary", "text": "An out-of-bounds (OOB) memory access flaw was found in fs/f2fs/node.c in the f2fs module in the Linux kernel in versions before 5.12.0-rc4. A bounds check failure allows a local attacker to gain access to out-of-bounds memory leading to a system crash or a leak of internal kernel information. The highest threat from this vulnerability is to system availability.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2021-3506" }, { "cve": "CVE-2023-28450", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "An issue was discovered in Dnsmasq before 2.90. The default maximum EDNS.0 UDP packet size was set to 4096 but should be 1232 because of DNS Flag Day 2020.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2023-28450" }, { "cve": "CVE-2023-49441", "cwe": { "id": "CWE-190", "name": "Integer Overflow or Wraparound" }, "notes": [ { "category": "summary", "text": "dnsmasq 2.9 is vulnerable to Integer Overflow via forward_query.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2023-49441" }, { "cve": "CVE-2024-2511", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Issue summary: Some non-default TLS server configurations can cause unbounded memory growth when processing TLSv1.3 sessions\r\nImpact summary: An attacker may exploit certain server configurations to trigger unbounded memory growth that would lead to a Denial of Service This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option is being used (but not if early_data support is also configured and the default anti-replay protection is in use). In this case, under certain conditions, the session cache can get into an incorrect state and it will fail to flush properly as it fills. The session cache will continue to grow in an unbounded manner. A malicious client could deliberately create the scenario for this failure to force a Denial of Service. It may also happen by accident in normal operation. This issue only affects TLS servers supporting TLSv1.3. It does not affect TLS clients. The FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue. OpenSSL 1.0.2 is also not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.7, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-2511" }, { "cve": "CVE-2024-4603", "cwe": { "id": "CWE-834", "name": "Excessive Iteration" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long DSA keys or parameters may be very slow. Impact summary: Applications that use the functions EVP_PKEY_param_check() or EVP_PKEY_public_check() to check a DSA public key or DSA parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform various checks on DSA parameters. Some of those computations take a long time if the modulus (`p` parameter) is too large. Trying to use a very large modulus is slow and OpenSSL will not allow using public keys with a modulus which is over 10,000 bits in length for signature verification. However the key and parameter check functions do not limit the modulus size when performing the checks. An application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. These functions are not called by OpenSSL itself on untrusted DSA keys so only applications that directly call these functions may be vulnerable. Also vulnerable are the OpenSSL pkey and pkeyparam command line applications when using the `-check` option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-4603" }, { "cve": "CVE-2024-4741", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "notes": [ { "category": "summary", "text": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-4741" }, { "cve": "CVE-2024-5594", "cwe": { "id": "CWE-117", "name": "Improper Output Neutralization for Logs" }, "notes": [ { "category": "summary", "text": "control channel: refuse control channel messages with nonprintable characters in them. Security scope: a malicious openvpn peer can send garbage to openvpn log, or cause high CPU load", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.4, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-5594" }, { "cve": "CVE-2024-26306", "cwe": { "id": "CWE-203", "name": "Observable Discrepancy" }, "notes": [ { "category": "summary", "text": "iPerf3 before 3.17, when used with OpenSSL before 3.2.0 as a server with RSA authentication, allows a timing side channel in RSA decryption operations. This side channel could be sufficient for an attacker to recover credential plaintext. It requires the attacker to send a large number of messages for decryption, as described in \"Everlasting ROBOT: the Marvin Attack\" by Hubert Kario.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-26306" }, { "cve": "CVE-2024-26925", "cwe": { "id": "CWE-667", "name": "Improper Locking" }, "notes": [ { "category": "summary", "text": "In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: release mutex after nft_gc_seq_end from abort path The commit mutex should not be released during the critical section between nft_gc_seq_begin() and nft_gc_seq_end(), otherwise, async GC worker could collect expired objects and get the released commit lock within the same GC sequence. nf_tables_module_autoload() temporarily releases the mutex to load module dependencies, then it goes back to replay the transaction again. Move it at the end of the abort phase after nft_gc_seq_end() is called.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-26925" }, { "cve": "CVE-2024-28882", "cwe": { "id": "CWE-772", "name": "Missing Release of Resource after Effective Lifetime" }, "notes": [ { "category": "summary", "text": "OpenVPN from 2.6.0 through 2.6.10 in a server role accepts multiple exit notifications from authenticated clients which will extend the validity of a closing session", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-28882" }, { "cve": "CVE-2024-50557", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly validate input in configuration fields of the iperf functionality. This could allow an unauthenticated remote attacker to execute arbitrary code on the device.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-50557" }, { "cve": "CVE-2024-50558", "cwe": { "id": "CWE-284", "name": "Improper Access Control" }, "notes": [ { "category": "summary", "text": "Affected devices improperly manage access control for read-only users. This could allow an attacker to cause a temporary denial of service condition.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-50558" }, { "cve": "CVE-2024-50559", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly validate the filenames of the certificate. This could allow an authenticated remote attacker to append arbitrary values which will lead to compromise of integrity of the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-50559" }, { "cve": "CVE-2024-50560", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Affected devices truncates usernames longer than 15 characters when accessed via SSH or Telnet. This could allow an attacker to compromise system integrity.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.1, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-50560" }, { "cve": "CVE-2024-50561", "cwe": { "id": "CWE-79", "name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly sanitize the filenames before uploading. This could allow an authenticated remote attacker to compromise of integrity of the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-50561" }, { "cve": "CVE-2024-50572", "cwe": { "id": "CWE-74", "name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)" }, "notes": [ { "category": "summary", "text": "Affected devices do not properly sanitize an input field. This could allow an authenticated remote attacker with administrative privileges to inject code or spawn a system root shell.", "title": "Summary" } ], "product_status": { "known_affected": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V8.2 or later version", "product_ids": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109976047/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "11", "10", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ] } ], "title": "CVE-2024-50572" } ] }
ssa-915275
Vulnerability from csaf_siemens
Notes
{ "document": { "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Disclosure is not limited. (TLPv2: TLP:CLEAR)", "tlp": { "label": "WHITE" } }, "lang": "en", "notes": [ { "category": "summary", "text": "SINEC INS before V1.0 SP2 Update 3 is affected by multiple vulnerabilities.\n\nSiemens has released a new version for SINEC INS and recommends to update to the latest version.", "title": "Summary" }, { "category": "general", "text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity", "title": "General Recommendations" }, { "category": "general", "text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories", "title": "Additional Resources" }, { "category": "legal_disclaimer", "text": "The use of Siemens Security Advisories is subject to the terms and conditions listed on: https://www.siemens.com/productcert/terms-of-use.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "productcert@siemens.com", "name": "Siemens ProductCERT", "namespace": "https://www.siemens.com" }, "references": [ { "category": "self", "summary": "SSA-915275: Multiple Vulnerabilities in SINEC INS Before V1.0 SP2 Update 3 - HTML Version", "url": "https://cert-portal.siemens.com/productcert/html/ssa-915275.html" }, { "category": "self", "summary": "SSA-915275: Multiple Vulnerabilities in SINEC INS Before V1.0 SP2 Update 3 - CSAF Version", "url": "https://cert-portal.siemens.com/productcert/csaf/ssa-915275.json" } ], "title": "SSA-915275: Multiple Vulnerabilities in SINEC INS Before V1.0 SP2 Update 3", "tracking": { "current_release_date": "2024-11-12T00:00:00Z", "generator": { "engine": { "name": "Siemens ProductCERT CSAF Generator", "version": "1" } }, "id": "SSA-915275", "initial_release_date": "2024-11-12T00:00:00Z", "revision_history": [ { "date": "2024-11-12T00:00:00Z", "legacy_version": "1.0", "number": "1", "summary": "Publication Date" } ], "status": "interim", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "All versions \u003c V1.0 SP2 Update 3", "product": { "name": "SINEC INS", "product_id": "1" } } ], "category": "product_name", "name": "SINEC INS" } ], "category": "vendor", "name": "Siemens" } ] }, "vulnerabilities": [ { "cve": "CVE-2023-2975", "cwe": { "id": "CWE-287", "name": "Improper Authentication" }, "notes": [ { "category": "summary", "text": "Issue summary: The AES-SIV cipher implementation contains a bug that causes it to ignore empty associated data entries which are unauthenticated as a consequence. Impact summary: Applications that use the AES-SIV algorithm and want to authenticate empty data entries as associated data can be mislead by removing adding or reordering such empty entries as these are ignored by the OpenSSL implementation. We are currently unaware of any such applications. The AES-SIV algorithm allows for authentication of multiple associated data entries along with the encryption. To authenticate empty data the application has to call EVP_EncryptUpdate() (or EVP_CipherUpdate()) with NULL pointer as the output buffer and 0 as the input buffer length. The AES-SIV implementation in OpenSSL just returns success for such a call instead of performing the associated data authentication operation. The empty data thus will not be authenticated. As this issue does not affect non-empty associated data authentication and we expect it to be rare for an application to use empty associated data entries this is qualified as Low severity issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-2975" }, { "cve": "CVE-2023-3341", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "notes": [ { "category": "summary", "text": "The code that processes control channel messages sent to `named` calls certain functions recursively during packet parsing. Recursion depth is only limited by the maximum accepted packet size; depending on the environment, this may cause the packet-parsing code to run out of available stack memory, causing `named` to terminate unexpectedly. Since each incoming control channel message is fully parsed before its contents are authenticated, exploiting this flaw does not require the attacker to hold a valid RNDC key; only network access to the control channel\u0027s configured TCP port is necessary. This issue affects BIND 9 versions 9.2.0 through 9.16.43, 9.18.0 through 9.18.18, 9.19.0 through 9.19.16, 9.9.3-S1 through 9.16.43-S1, and 9.18.0-S1 through 9.18.18-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-3341" }, { "cve": "CVE-2023-3446", "cwe": { "id": "CWE-1333", "name": "Inefficient Regular Expression Complexity" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. One of those checks confirms that the modulus (\u0027p\u0027 parameter) is not too large. Trying to use a very large modulus is slow and OpenSSL will not normally use a modulus which is over 10,000 bits in length. However the DH_check() function checks numerous aspects of the key or parameters that have been supplied. Some of those checks use the supplied modulus value even if it has already been found to be too large. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulernable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \u0027-check\u0027 option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-3446" }, { "cve": "CVE-2023-3817", "cwe": { "id": "CWE-834", "name": "Excessive Iteration" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. After fixing CVE-2023-3446 it was discovered that a large q parameter value can also trigger an overly long computation during some of these checks. A correct q value, if present, cannot be larger than the modulus p parameter, thus it is unnecessary to perform these checks if q is larger than p. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \"-check\" option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-3817" }, { "cve": "CVE-2023-4236", "cwe": { "id": "CWE-617", "name": "Reachable Assertion" }, "notes": [ { "category": "summary", "text": "A flaw in the networking code handling DNS-over-TLS queries may cause `named` to terminate unexpectedly due to an assertion failure. This happens when internal data structures are incorrectly reused under significant DNS-over-TLS query load. This issue affects BIND 9 versions 9.18.0 through 9.18.18 and 9.18.11-S1 through 9.18.18-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-4236" }, { "cve": "CVE-2023-4408", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The DNS message parsing code in `named` includes a section whose computational complexity is overly high. It does not cause problems for typical DNS traffic, but crafted queries and responses may cause excessive CPU load on the affected `named` instance by exploiting this flaw. This issue affects both authoritative servers and recursive resolvers. This issue affects BIND 9 versions 9.0.0 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.9.3-S1 through 9.11.37-S1, 9.16.8-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-4408" }, { "cve": "CVE-2023-4807", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Issue summary: The POLY1305 MAC (message authentication code) implementation contains a bug that might corrupt the internal state of applications on the Windows 64 platform when running on newer X86_64 processors supporting the AVX512-IFMA instructions. Impact summary: If in an application that uses the OpenSSL library an attacker can influence whether the POLY1305 MAC algorithm is used, the application state might be corrupted with various application dependent consequences. The POLY1305 MAC (message authentication code) implementation in OpenSSL does not save the contents of non-volatile XMM registers on Windows 64 platform when calculating the MAC of data larger than 64 bytes. Before returning to the caller all the XMM registers are set to zero rather than restoring their previous content. The vulnerable code is used only on newer x86_64 processors supporting the AVX512-IFMA instructions. The consequences of this kind of internal application state corruption can be various - from no consequences, if the calling application does not depend on the contents of non-volatile XMM registers at all, to the worst consequences, where the attacker could get complete control of the application process. However given the contents of the registers are just zeroized so the attacker cannot put arbitrary values inside, the most likely consequence, if any, would be an incorrect result of some application dependent calculations or a crash leading to a denial of service. The POLY1305 MAC algorithm is most frequently used as part of the CHACHA20-POLY1305 AEAD (authenticated encryption with associated data) algorithm. The most common usage of this AEAD cipher is with TLS protocol versions 1.2 and 1.3 and a malicious client can influence whether this AEAD cipher is used by the server. This implies that server applications using OpenSSL can be potentially impacted. However we are currently not aware of any concrete application that would be affected by this issue therefore we consider this a Low severity security issue. As a workaround the AVX512-IFMA instructions support can be disabled at runtime by setting the environment variable OPENSSL_ia32cap: OPENSSL_ia32cap=:~0x200000 The FIPS provider is not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-4807" }, { "cve": "CVE-2023-5517", "cwe": { "id": "CWE-617", "name": "Reachable Assertion" }, "notes": [ { "category": "summary", "text": "A flaw in query-handling code can cause `named` to exit prematurely with an assertion failure when: - `nxdomain-redirect \u003cdomain\u003e;` is configured, and - the resolver receives a PTR query for an RFC 1918 address that would normally result in an authoritative NXDOMAIN response. This issue affects BIND 9 versions 9.12.0 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.16.8-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-5517" }, { "cve": "CVE-2023-5678", "cwe": { "id": "CWE-754", "name": "Improper Check for Unusual or Exceptional Conditions" }, "notes": [ { "category": "summary", "text": "Issue summary: Generating excessively long X9.42 DH keys or checking excessively long X9.42 DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_generate_key() to generate an X9.42 DH key may experience long delays. Likewise, applications that use DH_check_pub_key(), DH_check_pub_key_ex() or EVP_PKEY_public_check() to check an X9.42 DH key or X9.42 DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. While DH_check() performs all the necessary checks (as of CVE-2023-3817), DH_check_pub_key() doesn\u0027t make any of these checks, and is therefore vulnerable for excessively large P and Q parameters. Likewise, while DH_generate_key() performs a check for an excessively large P, it doesn\u0027t check for an excessively large Q. An application that calls DH_generate_key() or DH_check_pub_key() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. DH_generate_key() and DH_check_pub_key() are also called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_pub_key_ex(), EVP_PKEY_public_check(), and EVP_PKEY_generate(). Also vulnerable are the OpenSSL pkey command line application when using the \"-pubcheck\" option, as well as the OpenSSL genpkey command line application. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-5678" }, { "cve": "CVE-2023-5679", "cwe": { "id": "CWE-617", "name": "Reachable Assertion" }, "notes": [ { "category": "summary", "text": "A bad interaction between DNS64 and serve-stale may cause `named` to crash with an assertion failure during recursive resolution, when both of these features are enabled. This issue affects BIND 9 versions 9.16.12 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.16.12-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-5679" }, { "cve": "CVE-2023-5680", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "A bad interaction between DNS64 and serve-stale may cause `named` to crash with an assertion failure during recursive resolution, when both of these features are enabled. This issue affects BIND 9 versions 9.16.12 through 9.16.45, 9.18.0 through 9.18.21, 9.19.0 through 9.19.19, 9.16.12-S1 through 9.16.45-S1, and 9.18.11-S1 through 9.18.21-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-5680" }, { "cve": "CVE-2023-6129", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "notes": [ { "category": "summary", "text": "Issue summary: The POLY1305 MAC (message authentication code) implementation\r\ncontains a bug that might corrupt the internal state of applications running\r\non PowerPC CPU based platforms if the CPU provides vector instructions.\r\n\r\nImpact summary: If an attacker can influence whether the POLY1305 MAC\r\nalgorithm is used, the application state might be corrupted with various\r\napplication dependent consequences.\r\n\r\nThe POLY1305 MAC (message authentication code) implementation in OpenSSL for\r\nPowerPC CPUs restores the contents of vector registers in a different order\r\nthan they are saved. Thus the contents of some of these vector registers\r\nare corrupted when returning to the caller. The vulnerable code is used only\r\non newer PowerPC processors supporting the PowerISA 2.07 instructions.\r\n\r\nThe consequences of this kind of internal application state corruption can\r\nbe various - from no consequences, if the calling application does not\r\ndepend on the contents of non-volatile XMM registers at all, to the worst\r\nconsequences, where the attacker could get complete control of the application\r\nprocess. However unless the compiler uses the vector registers for storing\r\npointers, the most likely consequence, if any, would be an incorrect result\r\nof some application dependent calculations or a crash leading to a denial of\r\nservice.\r\n\r\nThe POLY1305 MAC algorithm is most frequently used as part of the\r\nCHACHA20-POLY1305 AEAD (authenticated encryption with associated data)\r\nalgorithm. The most common usage of this AEAD cipher is with TLS protocol\r\nversions 1.2 and 1.3. If this cipher is enabled on the server a malicious\r\nclient can influence whether this AEAD cipher is used. This implies that\r\nTLS server applications using OpenSSL can be potentially impacted. However\r\nwe are currently not aware of any concrete application that would be affected\r\nby this issue therefore we consider this a Low severity security issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-6129" }, { "cve": "CVE-2023-6237", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Issue summary: Checking excessively long invalid RSA public keys may take a long time. Impact summary: Applications that use the function EVP_PKEY_public_check() to check RSA public keys may experience long delays. Where the key that is being checked has been obtained from an untrusted source this may lead to a Denial of Service. When function EVP_PKEY_public_check() is called on RSA public keys, a computation is done to confirm that the RSA modulus, n, is composite. For valid RSA keys, n is a product of two or more large primes and this computation completes quickly. However, if n is an overly large prime, then this computation would take a long time. An application that calls EVP_PKEY_public_check() and supplies an RSA key obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function EVP_PKEY_public_check() is not called from other OpenSSL functions however it is called from the OpenSSL pkey command line application. For that reason that application is also vulnerable if used with the \u0027-pubin\u0027 and \u0027-check\u0027 options on untrusted data. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-6237" }, { "cve": "CVE-2023-6516", "cwe": { "id": "CWE-789", "name": "Memory Allocation with Excessive Size Value" }, "notes": [ { "category": "summary", "text": "To keep its cache database efficient, `named` running as a recursive resolver occasionally attempts to clean up the database. It uses several methods, including some that are asynchronous: a small chunk of memory pointing to the cache element that can be cleaned up is first allocated and then queued for later processing. It was discovered that if the resolver is continuously processing query patterns triggering this type of cache-database maintenance, `named` may not be able to handle the cleanup events in a timely manner. This in turn enables the list of queued cleanup events to grow infinitely large over time, allowing the configured `max-cache-size` limit to be significantly exceeded. This issue affects BIND 9 versions 9.16.0 through 9.16.45 and 9.16.8-S1 through 9.16.45-S1.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-6516" }, { "cve": "CVE-2023-7104", "cwe": { "id": "CWE-122", "name": "Heap-based Buffer Overflow" }, "notes": [ { "category": "summary", "text": "A vulnerability was found in SQLite SQLite3 up to 3.43.0 and classified as critical. This issue affects the function sessionReadRecord of the file ext/session/sqlite3session.c of the component make alltest Handler. The manipulation leads to heap-based buffer overflow. It is recommended to apply a patch to fix this issue. The associated identifier of this vulnerability is VDB-248999.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-7104" }, { "cve": "CVE-2023-32002", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "The use of `Module._load()` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\n\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32002" }, { "cve": "CVE-2023-32003", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "`fs.mkdtemp()` and `fs.mkdtempSync()` can be used to bypass the permission model check using a path traversal attack. This flaw arises from a missing check in the fs.mkdtemp() API and the impact is a malicious actor could create an arbitrary directory.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32003" }, { "cve": "CVE-2023-32004", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "A vulnerability has been discovered in Node.js version 20, specifically within the experimental permission model. This flaw relates to improper handling of Buffers in file system APIs causing a traversal path to bypass when verifying file permissions.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 8.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32004" }, { "cve": "CVE-2023-32005", "cwe": { "id": "CWE-732", "name": "Incorrect Permission Assignment for Critical Resource" }, "notes": [ { "category": "summary", "text": "A vulnerability has been identified in Node.js version 20, affecting users of the experimental permission model when the --allow-fs-read flag is used with a non-* argument.\n\nThis flaw arises from an inadequate permission model that fails to restrict file stats through the `fs.statfs` API. As a result, malicious actors can retrieve stats from files that they do not have explicit read access to.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32005" }, { "cve": "CVE-2023-32006", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "The use of `module.constructor.createRequire()` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\n\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x, and, 20.x.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 8.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32006" }, { "cve": "CVE-2023-32558", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "The use of the deprecated API `process.binding()` can bypass the permission model through path traversal. \n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.x.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32558" }, { "cve": "CVE-2023-32559", "cwe": { "id": "CWE-311", "name": "Missing Encryption of Sensitive Data" }, "notes": [ { "category": "summary", "text": "A privilege escalation vulnerability exists in the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x. The use of the deprecated API `process.binding()` can bypass the policy mechanism by requiring internal modules and eventually take advantage of `process.binding(\u0027spawn_sync\u0027)` run arbitrary code, outside of the limits defined in a `policy.json` file. Please note that at the time this CVE was issued, the policy is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-32559" }, { "cve": "CVE-2023-38552", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "When the Node.js policy feature checks the integrity of a resource against a trusted manifest, the application can intercept the operation and return a forged checksum to the node\u0027s policy implementation, thus effectively disabling the integrity check.\r\nImpacts:\r\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 18.x and, 20.x.\r\nPlease note that at the time this CVE was issued, the policy mechanism is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-38552" }, { "cve": "CVE-2023-39331", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "A previously disclosed vulnerability (CVE-2023-30584) was patched insufficiently in commit 205f1e6. The new path traversal vulnerability arises because the implementation does not protect itself against the application overwriting built-in utility functions with user-defined implementations.\r\n\r\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-39331" }, { "cve": "CVE-2023-39332", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Various `node:fs` functions allow specifying paths as either strings or `Uint8Array` objects. In Node.js environments, the `Buffer` class extends the `Uint8Array` class. Node.js prevents path traversal through strings (see CVE-2023-30584) and `Buffer` objects (see CVE-2023-32004), but not through non-`Buffer` `Uint8Array` objects.\r\n\r\nThis is distinct from CVE-2023-32004 which only referred to `Buffer` objects. However, the vulnerability follows the same pattern using `Uint8Array` instead of `Buffer`.\r\n\r\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-39332" }, { "cve": "CVE-2023-39333", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Maliciously crafted export names in an imported WebAssembly module can inject JavaScript code. The injected code may be able to access data and functions that the WebAssembly module itself does not have access to, similar to as if the WebAssembly module was a JavaScript module.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-39333" }, { "cve": "CVE-2023-44487", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-44487" }, { "cve": "CVE-2023-45143", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "Undici is an HTTP/1.1 client written from scratch for Node.js. Prior to version 5.26.2, Undici already cleared Authorization headers on cross-origin redirects, but did not clear `Cookie` headers. By design, `cookie` headers are forbidden request headers, disallowing them to be set in RequestInit.headers in browser environments. Since undici handles headers more liberally than the spec, there was a disconnect from the assumptions the spec made, and undici\u0027s implementation of fetch. As such this may lead to accidental leakage of cookie to a third-party site or a malicious attacker who can control the redirection target (ie. an open redirector) to leak the cookie to the third party site. This was patched in version 5.26.2. There are no known workarounds.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.9, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-45143" }, { "cve": "CVE-2023-46809", "cwe": { "id": "CWE-385", "name": "Covert Timing Channel" }, "notes": [ { "category": "summary", "text": "Node.js versions which bundle an unpatched version of OpenSSL or run against a dynamically linked version of OpenSSL which are unpatched are vulnerable to the Marvin Attack - https://people.redhat.com/~hkario/marvin/, if PCKS #1 v1.5 padding is allowed when performing RSA descryption using a private key.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.4, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-46809" }, { "cve": "CVE-2023-47038", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "notes": [ { "category": "summary", "text": "A vulnerability was found in perl 5.30.0 through 5.38.0. This issue occurs when a crafted regular expression is compiled by perl, which can allow an attacker controlled byte buffer overflow in a heap allocated buffer.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.0, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-47038" }, { "cve": "CVE-2023-47039", "cwe": { "id": "CWE-122", "name": "Heap-based Buffer Overflow" }, "notes": [ { "category": "summary", "text": "A vulnerability was found in Perl. This security issue occurs while Perl for Windows relies on the system path environment variable to find the shell (`cmd.exe`). When running an executable that uses the Windows Perl interpreter, Perl attempts to find and execute `cmd.exe` within the operating system. However, due to path search order issues, Perl initially looks for cmd.exe in the current working directory. This flaw allows an attacker with limited privileges to place`cmd.exe` in locations with weak permissions, such as `C:\\ProgramData`. By doing so, arbitrary code can be executed when an administrator attempts to use this executable from these compromised locations.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-47039" }, { "cve": "CVE-2023-47100", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "In Perl before 5.38.2, S_parse_uniprop_string in regcomp.c can write to unallocated space because a property name associated with a \\p{...} regular expression construct is mishandled. The earliest affected version is 5.30.0.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-47100" }, { "cve": "CVE-2023-48795", "cwe": { "id": "CWE-222", "name": "Truncation of Security-relevant Information" }, "notes": [ { "category": "summary", "text": "The SSH transport protocol with certain OpenSSH extensions, found in OpenSSH before 9.6 and other products, allows remote attackers to bypass integrity checks such that some packets are omitted (from the extension negotiation message), and a client and server may consequently end up with a connection for which some security features have been downgraded or disabled, aka a Terrapin attack. This occurs because the SSH Binary Packet Protocol (BPP), implemented by these extensions, mishandles the handshake phase and mishandles use of sequence numbers. For example, there is an effective attack against SSH\u0027s use of ChaCha20-Poly1305 (and CBC with Encrypt-then-MAC). The bypass occurs in chacha20-poly1305@openssh.com and (if CBC is used) the -etm@openssh.com MAC algorithms. This also affects Maverick Synergy Java SSH API before 3.1.0-SNAPSHOT, Dropbear through 2022.83, Ssh before 5.1.1 in Erlang/OTP, PuTTY before 0.80, AsyncSSH before 2.14.2, golang.org/x/crypto before 0.17.0, libssh before 0.10.6, libssh2 through 1.11.0, Thorn Tech SFTP Gateway before 3.4.6, Tera Term before 5.1, Paramiko before 3.4.0, jsch before 0.2.15, SFTPGo before 2.5.6, Netgate pfSense Plus through 23.09.1, Netgate pfSense CE through 2.7.2, HPN-SSH through 18.2.0, ProFTPD before 1.3.8b (and before1.3.9rc2), ORYX CycloneSSH before 2.3.4, NetSarang XShell 7 before Build 0144, CrushFTP before 10.6.0, ConnectBot SSH library before 2.2.22, Apache MINA sshd through 2.11.0, sshj through 0.37.0, TinySSH through 20230101, trilead-ssh2 6401, the net-ssh gem 7.2.0 for Ruby, the mscdex ssh2 module before 1.15.0 for Node.js, the thrussh library before 0.35.1 for Rust, and the Russh crate before 0.40.2 for Rust; and there could be effects on Bitvise SSH through 9.31.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-48795" }, { "cve": "CVE-2023-50387", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Certain DNSSEC aspects of the DNS protocol (in RFC 4033, 4034, 4035, 6840, and related RFCs) allow remote attackers to cause a denial of service (CPU consumption) via one or more DNSSEC responses, aka the \"KeyTrap\" issue. One of the concerns is that, when there is a zone with many DNSKEY and RRSIG records, the protocol specification implies that an algorithm must evaluate all combinations of DNSKEY and RRSIG records.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-50387" }, { "cve": "CVE-2023-50868", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The Closest Encloser Proof aspect of the DNS protocol (in RFC 5155 when RFC 9276 guidance is skipped) allows remote attackers to cause a denial of service (CPU consumption for SHA-1 computations) via DNSSEC responses in a random subdomain attack, aka the \"NSEC3\" issue. The RFC 5155 specification implies that an algorithm must perform thousands of iterations of a hash function in certain situations.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-50868" }, { "cve": "CVE-2023-52389", "cwe": { "id": "CWE-190", "name": "Integer Overflow or Wraparound" }, "notes": [ { "category": "summary", "text": "UTF32Encoding.cpp in POCO has a Poco::UTF32Encoding integer overflow and resultant stack buffer overflow because Poco::UTF32Encoding::convert() and Poco::UTF32::queryConvert() may return a negative integer if a UTF-32 byte sequence evaluates to a value of 0x80000000 or higher. This is fixed in 1.11.8p2, 1.12.5p2, and 1.13.0.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.8, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2023-52389" }, { "cve": "CVE-2024-0232", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "notes": [ { "category": "summary", "text": "A heap use-after-free issue has been identified in SQLite in the jsonParseAddNodeArray() function in sqlite3.c. This flaw allows a local attacker to leverage a victim to pass specially crafted malicious input to the application, potentially causing a crash and leading to a denial of service.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.7, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-0232" }, { "cve": "CVE-2024-0727", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "notes": [ { "category": "summary", "text": "Issue summary: Processing a maliciously formatted PKCS12 file may lead OpenSSL\r\nto crash leading to a potential Denial of Service attack\r\n\r\nImpact summary: Applications loading files in the PKCS12 format from untrusted\r\nsources might terminate abruptly.\r\n\r\nA file in PKCS12 format can contain certificates and keys and may come from an\r\nuntrusted source. The PKCS12 specification allows certain fields to be NULL, but\r\nOpenSSL does not correctly check for this case. This can lead to a NULL pointer\r\ndereference that results in OpenSSL crashing. If an application processes PKCS12\r\nfiles from an untrusted source using the OpenSSL APIs then that application will\r\nbe vulnerable to this issue.\r\n\r\nOpenSSL APIs that are vulnerable to this are: PKCS12_parse(),\r\nPKCS12_unpack_p7data(), PKCS12_unpack_p7encdata(), PKCS12_unpack_authsafes()\r\nand PKCS12_newpass().\r\n\r\nWe have also fixed a similar issue in SMIME_write_PKCS7(). However since this\r\nfunction is related to writing data we do not consider it security significant.\r\n\r\nThe FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-0727" }, { "cve": "CVE-2024-2511", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Issue summary: Some non-default TLS server configurations can cause unbounded memory growth when processing TLSv1.3 sessions\r\nImpact summary: An attacker may exploit certain server configurations to trigger unbounded memory growth that would lead to a Denial of Service This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option is being used (but not if early_data support is also configured and the default anti-replay protection is in use). In this case, under certain conditions, the session cache can get into an incorrect state and it will fail to flush properly as it fills. The session cache will continue to grow in an unbounded manner. A malicious client could deliberately create the scenario for this failure to force a Denial of Service. It may also happen by accident in normal operation. This issue only affects TLS servers supporting TLSv1.3. It does not affect TLS clients. The FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue. OpenSSL 1.0.2 is also not affected by this issue.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.7, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-2511" }, { "cve": "CVE-2024-4741", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "notes": [ { "category": "summary", "text": "Issue summary: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:U/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-4741" }, { "cve": "CVE-2024-5535", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "Issue summary: Calling the OpenSSL API function SSL_select_next_proto with an empty supported client protocols buffer may cause a crash or memory contents to be sent to the peer. Impact summary: A buffer overread can have a range of potential consequences such as unexpected application beahviour or a crash. In particular this issue could result in up to 255 bytes of arbitrary private data from memory being sent to the peer leading to a loss of confidentiality. However, only applications that directly call the SSL_select_next_proto function with a 0 length list of supported client protocols are affected by this issue. This would normally never be a valid scenario and is typically not under attacker control but may occur by accident in the case of a configuration or programming error in the calling application. The OpenSSL API function SSL_select_next_proto is typically used by TLS applications that support ALPN (Application Layer Protocol Negotiation) or NPN (Next Protocol Negotiation). NPN is older, was never standardised and is deprecated in favour of ALPN. We believe that ALPN is significantly more widely deployed than NPN. The SSL_select_next_proto function accepts a list of protocols from the server and a list of protocols from the client and returns the first protocol that appears in the server list that also appears in the client list. In the case of no overlap between the two lists it returns the first item in the client list. In either case it will signal whether an overlap between the two lists was found. In the case where SSL_select_next_proto is called with a zero length client list it fails to notice this condition and returns the memory immediately following the client list pointer (and reports that there was no overlap in the lists). This function is typically called from a server side application callback for ALPN or a client side application callback for NPN. In the case of ALPN the list of protocols supplied by the client is guaranteed by libssl to never be zero in length. The list of server protocols comes from the application and should never normally be expected to be of zero length. In this case if the SSL_select_next_proto function has been called as expected (with the list supplied by the client passed in the client/client_len parameters), then the application will not be vulnerable to this issue. If the application has accidentally been configured with a zero length server list, and has accidentally passed that zero length server list in the client/client_len parameters, and has additionally failed to correctly handle a \"no overlap\" response (which would normally result in a handshake failure in ALPN) then it will be vulnerable to this problem. In the case of NPN, the protocol permits the client to opportunistically select a protocol when there is no overlap. OpenSSL returns the first client protocol in the no overlap case in support of this. The list of client protocols comes from the application and should never normally be expected to be of zero length. However if the SSL_select_next_proto function is accidentally called with a client_len of 0 then an invalid memory pointer will be returned instead. If the application uses this output as the opportunistic protocol then the loss of confidentiality will occur. This issue has been assessed as Low severity because applications are most likely to be vulnerable if they are using NPN instead of ALPN - but NPN is not widely used. It also requires an application configuration or programming error. Finally, this issue would not typically be under attacker control making active exploitation unlikely. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue. Due to the low severity of this issue we are not issuing new releases of OpenSSL at this time. The fix will be included in the next releases when they become available.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-5535" }, { "cve": "CVE-2024-21890", "cwe": { "id": "CWE-287", "name": "Improper Authentication" }, "notes": [ { "category": "summary", "text": "The Node.js Permission Model does not clarify in the documentation that wildcards should be only used as the last character of a file path. For example: ``` --allow-fs-read=/home/node/.ssh/*.pub ``` will ignore `pub` and give access to everything after `.ssh/`. This misleading documentation affects all users using the experimental permission model in Node.js 20 and Node.js 21. Please note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-21890" }, { "cve": "CVE-2024-21891", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "Node.js could allow a remote attacker to bypass security restrictions, caused by improper path traversal sequence sanitization. By using a path traversal attack, an attacker could exploit this vulnerability leading to filesystem permission model bypass.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-21891" }, { "cve": "CVE-2024-21892", "cwe": { "id": "CWE-94", "name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)" }, "notes": [ { "category": "summary", "text": "Node.js could allow a local authenticated attacker to gain elevated privileges on the system, caused by a bug in the implementation of the exception of CAP_NET_BIND_SERVICE. An attacker could exploit this vulnerability to inject code that inherits the process\u0027s elevated privileges.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.8, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-21892" }, { "cve": "CVE-2024-21896", "cwe": { "id": "CWE-27", "name": "Path Traversal: \u0027dir/../../filename\u0027" }, "notes": [ { "category": "summary", "text": "Node.js could allow a remote attacker to traverse directories on the system. By monkey-patching Buffer internals, namely, Buffer.prototype.utf8Write, an attacker could send a specially crafted URL request containing \"dot dot\" sequences (/../) to read arbitrary files on the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.9, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-21896" }, { "cve": "CVE-2024-22017", "cwe": { "id": "CWE-250", "name": "Execution with Unnecessary Privileges" }, "notes": [ { "category": "summary", "text": "setuid() does not affect libuv\u0027s internal io_uring operations if initialized before the call to setuid(). This allows the process to perform privileged operations despite presumably having dropped such privileges through a call to setuid(). This vulnerability affects all users using version greater or equal than Node.js 18.18.0, Node.js 20.4.0 and Node.js 21.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:H/UI:N/S:C/C:L/I:H/A:L", "version": "3.0" }, "products": [ "1" ] } ], "title": "CVE-2024-22017" }, { "cve": "CVE-2024-22019", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "A vulnerability in Node.js HTTP servers allows an attacker to send a specially crafted HTTP request with chunked encoding, leading to resource exhaustion and denial of service (DoS). The server reads an unbounded number of bytes from a single connection, exploiting the lack of limitations on chunk extension bytes. The issue can cause CPU and network bandwidth exhaustion, bypassing standard safeguards like timeouts and body size limits.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.0" }, "products": [ "1" ] } ], "title": "CVE-2024-22019" }, { "cve": "CVE-2024-22025", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Node.js is vulnerable to a denial of service, caused by a resource exhaustion vulnerability in fetch() brotli decoding . By sending a specially crafted request, a remote attacker could exploit this vulnerability to cause a denial of service condition.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-22025" }, { "cve": "CVE-2024-24758", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "Undici is an HTTP/1.1 client, written from scratch for Node.js. Undici already cleared Authorization headers on cross-origin redirects, but did not clear `Proxy-Authentication` headers. This issue has been patched in versions 5.28.3 and 6.6.1. Users are advised to upgrade. There are no known workarounds for this vulnerability.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 3.9, "baseSeverity": "LOW", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-24758" }, { "cve": "CVE-2024-24806", "cwe": { "id": "CWE-918", "name": "Server-Side Request Forgery (SSRF)" }, "notes": [ { "category": "summary", "text": "libuv is a multi-platform support library with a focus on asynchronous I/O. The `uv_getaddrinfo` function in `src/unix/getaddrinfo.c` (and its windows counterpart `src/win/getaddrinfo.c`), truncates hostnames to 256 characters before calling `getaddrinfo`. This behavior can be exploited to create addresses like `0x00007f000001`, which are considered valid by `getaddrinfo` and could allow an attacker to craft payloads that resolve to unintended IP addresses, bypassing developer checks. The vulnerability arises due to how the `hostname_ascii` variable (with a length of 256 bytes) is handled in `uv_getaddrinfo` and subsequently in `uv__idna_toascii`. When the hostname exceeds 256 characters, it gets truncated without a terminating null byte. As a result attackers may be able to access internal APIs or for websites (similar to MySpace) that allows users to have `username.example.com` pages. Internal services that crawl or cache these user pages can be exposed to SSRF attacks if a malicious user chooses a long vulnerable username. This issue has been addressed in release version 1.48.0. Users are advised to upgrade. There are no known workarounds for this vulnerability.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-24806" }, { "cve": "CVE-2024-27980", "cwe": { "id": "CWE-78", "name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)" }, "notes": [ { "category": "summary", "text": "Node.js could allow a remote attacker to execute arbitrary commands on the system, caused by the improper handling of batch files in child_process.spawn / child_process.spawnSync. By sending a specially crafted command line argument using args parameter, an attacker could exploit this vulnerability to inject and execute arbitrary commands on the system.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.3, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-27980" }, { "cve": "CVE-2024-27982", "cwe": { "id": "CWE-444", "name": "Inconsistent Interpretation of HTTP Requests (\u0027HTTP Request/Response Smuggling\u0027)" }, "notes": [ { "category": "summary", "text": "A vulnerability in the http server, where malformed headers can lead to HTTP request smuggling. Specifically, if a space is placed before a content-length header, it is not interpreted correctly, enabling attackers to smuggle in a second request within the body of the first.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-27982" }, { "cve": "CVE-2024-27983", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "Node.js is vulnerable to a denial of service, caused by an assertion failure in `node::http2::Http2Session::~Http2Session()`. By sending a small amount of HTTP/2 frames packets with a few HTTP/2 frames inside, an attacker could exploit this vulnerability to cause the HTTP/2 server to crash.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 7.5, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-27983" }, { "cve": "CVE-2024-46888", "cwe": { "id": "CWE-22", "name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)" }, "notes": [ { "category": "summary", "text": "The affected application does not properly sanitize user provided paths for SFTP-based file up- and downloads. This could allow an authenticated remote attacker to manipulate arbitrary files on the filesystem and achieve arbitrary code execution on the device.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.9, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-46888" }, { "cve": "CVE-2024-46889", "cwe": { "id": "CWE-321", "name": "Use of Hard-coded Cryptographic Key" }, "notes": [ { "category": "summary", "text": "The affected application uses hard-coded cryptographic key material to obfuscate configuration files. This could allow an attacker to learn that cryptographic key material through reverse engineering of the application binary and decrypt arbitrary backup files.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-46889" }, { "cve": "CVE-2024-46890", "cwe": { "id": "CWE-78", "name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)" }, "notes": [ { "category": "summary", "text": "The affected application does not properly validate input sent to specific endpoints of its web API. This could allow an authenticated remote attacker with high privileges on the application to execute arbitrary code on the underlying OS.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 9.1, "baseSeverity": "CRITICAL", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-46890" }, { "cve": "CVE-2024-46891", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "notes": [ { "category": "summary", "text": "The affected application does not properly restrict the size of generated log files. This could allow an unauthenticated remote attacker to trigger a large amount of logged events to exhaust the system\u0027s resources and create a denial of service condition.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-46891" }, { "cve": "CVE-2024-46892", "cwe": { "id": "CWE-613", "name": "Insufficient Session Expiration" }, "notes": [ { "category": "summary", "text": "The affected application does not properly invalidate sessions when the associated user is deleted or disabled or their permissions are modified. This could allow an authenticated attacker to continue performing malicious actions even after their user account has been disabled.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 4.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-46892" }, { "cve": "CVE-2024-46894", "cwe": { "id": "CWE-200", "name": "Exposure of Sensitive Information to an Unauthorized Actor" }, "notes": [ { "category": "summary", "text": "The affected application does not properly validate authorization of a user to query the \"/api/sftp/users\" endpoint. This could allow an authenticated remote attacker to gain knowledge about the list of configured users of the SFTP service and also modify that configuration.", "title": "Summary" } ], "product_status": { "known_affected": [ "1" ] }, "remediations": [ { "category": "vendor_fix", "details": "Update to V1.0 SP2 Update 3 or later version", "product_ids": [ "1" ], "url": "https://support.industry.siemens.com/cs/ww/en/view/109975745/" } ], "scores": [ { "cvss_v3": { "baseScore": 6.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C", "version": "3.1" }, "products": [ "1" ] } ], "title": "CVE-2024-46894" } ] }
var-202408-0009
Vulnerability from variot
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. SCALANCE M-800, MUM-800 and S615 as well as RUGGEDCOM RM1224 are industrial routers.
Multiple Siemens products have a use-after-free vulnerability that can be exploited by an attacker to access previously freed memory. ========================================================================== Ubuntu Security Notice USN-6937-1 July 31, 2024
openssl vulnerabilities
A security issue affects these releases of Ubuntu and its derivatives:
- Ubuntu 24.04 LTS
- Ubuntu 22.04 LTS
- Ubuntu 20.04 LTS
Summary:
Several security issues were fixed in OpenSSL.
Software Description: - openssl: Secure Socket Layer (SSL) cryptographic library and tools
Details:
It was discovered that OpenSSL incorrectly handled TLSv1.3 sessions when certain non-default TLS server configurations were in use. A remote attacker could possibly use this issue to cause OpenSSL to consume resources, leading to a denial of service. (CVE-2024-2511)
It was discovered that OpenSSL incorrectly handled checking excessively long DSA keys or parameters. A remote attacker could possibly use this issue to cause OpenSSL to consume resources, leading to a denial of service. This issue only affected Ubuntu 22.04 LTS and Ubuntu 24.04 LTS. (CVE-2024-4603)
William Ahern discovered that OpenSSL incorrectly handled certain memory operations in a rarely-used API. A remote attacker could use this issue to cause OpenSSL to crash, resulting in a denial of service, or possibly execute arbitrary code. (CVE-2024-4741)
Joseph Birr-Pixton discovered that OpenSSL incorrectly handled calling a certain API with an empty supported client protocols buffer. A remote attacker could possibly use this issue to obtain sensitive information, or cause OpenSSL to crash, resulting in a denial of service. (CVE-2024-5535)
Update instructions:
The problem can be corrected by updating your system to the following package versions:
Ubuntu 24.04 LTS libssl3t64 3.0.13-0ubuntu3.2
Ubuntu 22.04 LTS libssl3 3.0.2-0ubuntu1.17
Ubuntu 20.04 LTS libssl1.1 1.1.1f-1ubuntu2.23
After a standard system update you need to reboot your computer to make all the necessary changes.
References: https://ubuntu.com/security/notices/USN-6937-1 CVE-2024-2511, CVE-2024-4603, CVE-2024-4741, CVE-2024-5535
Package Information: https://launchpad.net/ubuntu/+source/openssl/3.0.13-0ubuntu3.2 https://launchpad.net/ubuntu/+source/openssl/3.0.2-0ubuntu1.17 https://launchpad.net/ubuntu/+source/openssl/1.1.1f-1ubuntu2.23
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-202408-0009", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "scalance m-800 family", "scope": "lt", "trust": 0.6, "vendor": "siemens", "version": "8.2" }, { "model": "scalance s615 family", "scope": "lt", "trust": 0.6, "vendor": "siemens", "version": "8.2" }, { "model": "ruggedcom rm1224 family", "scope": "lt", "trust": 0.6, "vendor": "siemens", "version": "8.2" }, { "model": "scalance mum-800 family", "scope": "lt", "trust": 0.6, "vendor": "siemens", "version": "8.2" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Ubuntu", "sources": [ { "db": "PACKETSTORM", "id": "179880" } ], "trust": 0.1 }, "cve": "CVE-2024-4741", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "COMPLETE", "baseScore": 7.8, "confidentialityImpact": "NONE", "exploitabilityScore": 10.0, "id": "CNVD-2024-45212", "impactScore": 6.9, "integrityImpact": "NONE", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "availabilityImpact": "HIGH", "baseScore": 7.5, "baseSeverity": "HIGH", "confidentialityImpact": "NONE", "exploitabilityScore": 3.9, "id": "CVE-2024-4741", "impactScore": 3.6, "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.0, "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" } ], "severity": [ { "author": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "id": "CVE-2024-4741", "trust": 1.0, "value": "HIGH" }, { "author": "CNVD", "id": "CNVD-2024-45212", "trust": 0.6, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" }, { "db": "NVD", "id": "CVE-2024-4741" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "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. SCALANCE M-800, MUM-800 and S615 as well as RUGGEDCOM RM1224 are industrial routers. \n\nMultiple Siemens products have a use-after-free vulnerability that can be exploited by an attacker to access previously freed memory. ==========================================================================\nUbuntu Security Notice USN-6937-1\nJuly 31, 2024\n\nopenssl vulnerabilities\n==========================================================================\n\nA security issue affects these releases of Ubuntu and its derivatives:\n\n- Ubuntu 24.04 LTS\n- Ubuntu 22.04 LTS\n- Ubuntu 20.04 LTS\n\nSummary:\n\nSeveral security issues were fixed in OpenSSL. \n\nSoftware Description:\n- openssl: Secure Socket Layer (SSL) cryptographic library and tools\n\nDetails:\n\nIt was discovered that OpenSSL incorrectly handled TLSv1.3 sessions when\ncertain non-default TLS server configurations were in use. A remote\nattacker could possibly use this issue to cause OpenSSL to consume\nresources, leading to a denial of service. (CVE-2024-2511)\n\nIt was discovered that OpenSSL incorrectly handled checking excessively\nlong DSA keys or parameters. A remote attacker could possibly use this\nissue to cause OpenSSL to consume resources, leading to a denial of\nservice. This issue only affected Ubuntu 22.04 LTS and Ubuntu 24.04 LTS. \n(CVE-2024-4603)\n\nWilliam Ahern discovered that OpenSSL incorrectly handled certain memory\noperations in a rarely-used API. A remote attacker could use this issue to\ncause OpenSSL to crash, resulting in a denial of service, or possibly\nexecute arbitrary code. (CVE-2024-4741)\n\nJoseph Birr-Pixton discovered that OpenSSL incorrectly handled calling a\ncertain API with an empty supported client protocols buffer. A remote\nattacker could possibly use this issue to obtain sensitive information, or\ncause OpenSSL to crash, resulting in a denial of service. (CVE-2024-5535)\n\nUpdate instructions:\n\nThe problem can be corrected by updating your system to the following\npackage versions:\n\nUbuntu 24.04 LTS\n libssl3t64 3.0.13-0ubuntu3.2\n\nUbuntu 22.04 LTS\n libssl3 3.0.2-0ubuntu1.17\n\nUbuntu 20.04 LTS\n libssl1.1 1.1.1f-1ubuntu2.23\n\nAfter a standard system update you need to reboot your computer to make all\nthe necessary changes. \n\nReferences:\n https://ubuntu.com/security/notices/USN-6937-1\n CVE-2024-2511, CVE-2024-4603, CVE-2024-4741, CVE-2024-5535\n\nPackage Information:\n https://launchpad.net/ubuntu/+source/openssl/3.0.13-0ubuntu3.2\n https://launchpad.net/ubuntu/+source/openssl/3.0.2-0ubuntu1.17\n https://launchpad.net/ubuntu/+source/openssl/1.1.1f-1ubuntu2.23\n\n", "sources": [ { "db": "NVD", "id": "CVE-2024-4741" }, { "db": "CNVD", "id": "CNVD-2024-45212" }, { "db": "PACKETSTORM", "id": "179880" } ], "trust": 1.53 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2024-4741", "trust": 1.7 }, { "db": "SIEMENS", "id": "SSA-354112", "trust": 0.6 }, { "db": "CNVD", "id": "CNVD-2024-45212", "trust": 0.6 }, { "db": "PACKETSTORM", "id": "179880", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" }, { "db": "PACKETSTORM", "id": "179880" }, { "db": "NVD", "id": "CVE-2024-4741" } ] }, "id": "VAR-202408-0009", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" } ], "trust": 0.06 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" } ] }, "last_update_date": "2024-11-20T19:54:38.387000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Patch for Post-release reuse vulnerabilities in multiple Siemens products", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/617371" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-416", "trust": 1.0 } ], "sources": [ { "db": "NVD", "id": "CVE-2024-4741" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 1.0, "url": "https://github.com/openssl/openssl/commit/704f725b96aa373ee45ecfb23f6abfe8be8d9177" }, { "trust": 1.0, "url": "https://github.com/openssl/openssl/commit/b3f0eb0a295f58f16ba43ba99dad70d4ee5c437d" }, { "trust": 1.0, "url": "https://github.com/openssl/openssl/commit/c88c3de51020c37e8706bf7a682a162593053aac" }, { "trust": 1.0, "url": "https://github.com/openssl/openssl/commit/e5093133c35ca82874ad83697af76f4b0f7e3bd8" }, { "trust": 1.0, "url": "https://github.openssl.org/openssl/extended-releases/commit/f7a045f3143fc6da2ee66bf52d8df04829590dd4" }, { "trust": 1.0, "url": "https://www.openssl.org/news/secadv/20240528.txt" }, { "trust": 0.6, "url": "https://cert-portal.siemens.com/productcert/html/ssa-354112.html" }, { "trust": 0.1, "url": "https://launchpad.net/ubuntu/+source/openssl/3.0.13-0ubuntu3.2" }, { "trust": 0.1, "url": "https://nvd.nist.gov/vuln/detail/cve-2024-4741" }, { "trust": 0.1, "url": "https://ubuntu.com/security/notices/usn-6937-1" }, { "trust": 0.1, "url": "https://launchpad.net/ubuntu/+source/openssl/3.0.2-0ubuntu1.17" }, { "trust": 0.1, "url": "https://nvd.nist.gov/vuln/detail/cve-2024-4603" }, { "trust": 0.1, "url": "https://nvd.nist.gov/vuln/detail/cve-2024-5535" }, { "trust": 0.1, "url": "https://nvd.nist.gov/vuln/detail/cve-2024-2511" }, { "trust": 0.1, "url": "https://launchpad.net/ubuntu/+source/openssl/1.1.1f-1ubuntu2.23" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" }, { "db": "PACKETSTORM", "id": "179880" }, { "db": "NVD", "id": "CVE-2024-4741" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2024-45212" }, { "db": "PACKETSTORM", "id": "179880" }, { "db": "NVD", "id": "CVE-2024-4741" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2024-11-18T00:00:00", "db": "CNVD", "id": "CNVD-2024-45212" }, { "date": "2024-08-01T10:11:11", "db": "PACKETSTORM", "id": "179880" }, { "date": "2024-11-13T11:15:04.480000", "db": "NVD", "id": "CVE-2024-4741" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2024-11-18T00:00:00", "db": "CNVD", "id": "CNVD-2024-45212" }, { "date": "2024-11-13T17:01:16.850000", "db": "NVD", "id": "CVE-2024-4741" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "PACKETSTORM", "id": "179880" } ], "trust": 0.1 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Post-release reuse vulnerabilities in multiple Siemens products", "sources": [ { "db": "CNVD", "id": "CNVD-2024-45212" } ], "trust": 0.6 } }
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.