Action not permitted
Modal body text goes here.
CVE-2024-24806
Vulnerability from cvelistv5
Published
2024-02-07 21:44
Modified
2024-09-02 17:08
Severity ?
EPSS score ?
Summary
Improper Domain Lookup that potentially leads to SSRF attacks in libuv
References
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-09-02T17:08:43.903Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "name": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6", "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "name": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629" }, { "name": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70" }, { "name": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488" }, { "name": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39", "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39" }, { "tags": [ "x_transferred" ], "url": "http://www.openwall.com/lists/oss-security/2024/02/08/2" }, { "tags": [ "x_transferred" ], "url": "http://www.openwall.com/lists/oss-security/2024/02/11/1" }, { "tags": [ "x_transferred" ], "url": "https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html" }, { "tags": [ "x_transferred" ], "url": "http://www.openwall.com/lists/oss-security/2024/03/11/1" }, { "tags": [ "x_transferred" ], "url": "https://security.netapp.com/advisory/ntap-20240605-0008/" }, { "tags": [ "x_transferred" ], "url": "https://gitlab.kitware.com/cmake/cmake/-/issues/26112" } ], "title": "CVE Program Container", "x_generator": { "engine": "ADPogram 0.0.1" } } ], "cna": { "affected": [ { "product": "libuv", "vendor": "libuv", "versions": [ { "status": "affected", "version": "\u003e= 1.45.0, \u003c 1.48.0" } ] } ], "descriptions": [ { "lang": "en", "value": "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." } ], "metrics": [ { "cvssV3_1": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-918", "description": "CWE-918: Server-Side Request Forgery (SSRF)", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2024-02-07T21:44:33.566Z", "orgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "shortName": "GitHub_M" }, "references": [ { "name": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6", "tags": [ "x_refsource_CONFIRM" ], "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "name": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629" }, { "name": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70" }, { "name": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488" }, { "name": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39", "tags": [ "x_refsource_MISC" ], "url": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39" }, { "url": "http://www.openwall.com/lists/oss-security/2024/02/08/2" }, { "url": "http://www.openwall.com/lists/oss-security/2024/02/11/1" }, { "url": "https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html" }, { "url": "http://www.openwall.com/lists/oss-security/2024/03/11/1" }, { "url": "https://security.netapp.com/advisory/ntap-20240605-0008/" }, { "url": "https://gitlab.kitware.com/cmake/cmake/-/issues/26112" } ], "source": { "advisory": "GHSA-f74f-cvh7-c6q6", "discovery": "UNKNOWN" }, "title": "Improper Domain Lookup that potentially leads to SSRF attacks in libuv" } }, "cveMetadata": { "assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "assignerShortName": "GitHub_M", "cveId": "CVE-2024-24806", "datePublished": "2024-02-07T21:44:33.566Z", "dateReserved": "2024-01-31T16:28:17.940Z", "dateUpdated": "2024-09-02T17:08:43.903Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2024-24806\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2024-02-07T22:15:10.173\",\"lastModified\":\"2024-07-18T01:15:13.310\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"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.\"},{\"lang\":\"es\",\"value\":\"libuv es una librer\u00eda de soporte multiplataforma centrada en E/S as\u00edncrona. La funci\u00f3n `uv_getaddrinfo` en `src/unix/getaddrinfo.c` (y su contraparte de Windows `src/win/getaddrinfo.c`), trunca los nombres de host a 256 caracteres antes de llamar a `getaddrinfo`. Este comportamiento se puede aprovechar para crear direcciones como `0x00007f000001`, que `getaddrinfo` considera v\u00e1lidas y podr\u00edan permitir a un atacante crear payloads que se resuelvan en direcciones IP no deseadas, evitando las comprobaciones de los desarrolladores. La vulnerabilidad surge debido a c\u00f3mo se maneja la variable `hostname_ascii` (con una longitud de 256 bytes) en `uv_getaddrinfo` y posteriormente en `uv__idna_toascii`. Cuando el nombre de host supera los 256 caracteres, se trunca sin un byte nulo final. Como resultado, los atacantes pueden acceder a API internas o a sitios web (similares a MySpace) que permiten a los usuarios tener p\u00e1ginas `nombre de usuario.ejemplo.com`. Los servicios internos que rastrean o almacenan en cach\u00e9 estas p\u00e1ginas de usuario pueden quedar expuestos a ataques SSRF si un usuario malintencionado elige un nombre de usuario largo y vulnerable. Este problema se solucion\u00f3 en la versi\u00f3n 1.48.0. Se recomienda a los usuarios que actualicen. No se conocen workarounds para esta vulnerabilidad.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"LOW\",\"integrityImpact\":\"LOW\",\"availabilityImpact\":\"LOW\",\"baseScore\":7.3,\"baseSeverity\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.4},{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"LOW\",\"integrityImpact\":\"LOW\",\"availabilityImpact\":\"LOW\",\"baseScore\":7.3,\"baseSeverity\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.4}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-918\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:libuv:libuv:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"1.24.0\",\"versionEndExcluding\":\"1.48.0\",\"matchCriteriaId\":\"7A5D8905-1DA8-45F4-886D-2FDAA3C722DF\"}]}]}],\"references\":[{\"url\":\"http://www.openwall.com/lists/oss-security/2024/02/08/2\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mailing List\",\"Third Party Advisory\"]},{\"url\":\"http://www.openwall.com/lists/oss-security/2024/02/11/1\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mailing List\",\"Third Party Advisory\"]},{\"url\":\"http://www.openwall.com/lists/oss-security/2024/03/11/1\",\"source\":\"security-advisories@github.com\"},{\"url\":\"https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Exploit\",\"Vendor Advisory\"]},{\"url\":\"https://gitlab.kitware.com/cmake/cmake/-/issues/26112\",\"source\":\"security-advisories@github.com\"},{\"url\":\"https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html\",\"source\":\"security-advisories@github.com\"},{\"url\":\"https://security.netapp.com/advisory/ntap-20240605-0008/\",\"source\":\"security-advisories@github.com\"}]}}" } }
rhsa-2024_4756
Vulnerability from csaf_redhat
Published
2024-07-23 16:39
Modified
2024-11-06 06:30
Summary
Red Hat Security Advisory: libuv security update
Notes
Topic
An update for libuv is now available for Red Hat Enterprise Linux 9.
Red Hat Product Security has rated this update as having a security impact of Moderate. 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.
Details
libuv is a multi-platform support library with a focus on asynchronous I/O.
Security Fix(es):
* libuv: Improper Domain Lookup that potentially leads to SSRF attacks (CVE-2024-24806)
For 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.
Terms of Use
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.
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for libuv is now available for Red Hat Enterprise Linux 9.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. 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": "libuv is a multi-platform support library with a focus on asynchronous I/O. \n\nSecurity Fix(es):\n\n* libuv: Improper Domain Lookup that potentially leads to SSRF attacks (CVE-2024-24806)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.", "title": "Details" }, { "category": "legal_disclaimer", "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "https://access.redhat.com/security/team/contact/", "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.", "name": "Red Hat Product Security", "namespace": "https://www.redhat.com" }, "references": [ { "category": "self", "summary": "https://access.redhat.com/errata/RHSA-2024:4756", "url": "https://access.redhat.com/errata/RHSA-2024:4756" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2263292", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2263292" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_4756.json" } ], "title": "Red Hat Security Advisory: libuv security update", "tracking": { "current_release_date": "2024-11-06T06:30:54+00:00", "generator": { "date": "2024-11-06T06:30:54+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:4756", "initial_release_date": "2024-07-23T16:39:13+00:00", "revision_history": [ { "date": "2024-07-23T16:39:13+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-07-23T16:39:13+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:30:54+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.4.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux CRB (v. 9)", "product": { "name": "Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.42.0-2.el9_4.src", "product": { "name": "libuv-1:1.42.0-2.el9_4.src", "product_id": "libuv-1:1.42.0-2.el9_4.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.42.0-2.el9_4?arch=src\u0026epoch=1" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.42.0-2.el9_4.aarch64", "product": { "name": "libuv-1:1.42.0-2.el9_4.aarch64", "product_id": "libuv-1:1.42.0-2.el9_4.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.42.0-2.el9_4?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "product": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "product_id": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.42.0-2.el9_4?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "product": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "product_id": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.42.0-2.el9_4?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.42.0-2.el9_4.aarch64", "product": { "name": "libuv-devel-1:1.42.0-2.el9_4.aarch64", "product_id": "libuv-devel-1:1.42.0-2.el9_4.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.42.0-2.el9_4?arch=aarch64\u0026epoch=1" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.42.0-2.el9_4.ppc64le", "product": { "name": "libuv-1:1.42.0-2.el9_4.ppc64le", "product_id": "libuv-1:1.42.0-2.el9_4.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.42.0-2.el9_4?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "product": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "product_id": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.42.0-2.el9_4?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "product": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "product_id": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.42.0-2.el9_4?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.42.0-2.el9_4.ppc64le", "product": { "name": "libuv-devel-1:1.42.0-2.el9_4.ppc64le", "product_id": "libuv-devel-1:1.42.0-2.el9_4.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.42.0-2.el9_4?arch=ppc64le\u0026epoch=1" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.42.0-2.el9_4.i686", "product": { "name": "libuv-1:1.42.0-2.el9_4.i686", "product_id": "libuv-1:1.42.0-2.el9_4.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.42.0-2.el9_4?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.42.0-2.el9_4.i686", "product": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.i686", "product_id": "libuv-debugsource-1:1.42.0-2.el9_4.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.42.0-2.el9_4?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.42.0-2.el9_4.i686", "product": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.i686", "product_id": "libuv-debuginfo-1:1.42.0-2.el9_4.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.42.0-2.el9_4?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.42.0-2.el9_4.i686", "product": { "name": "libuv-devel-1:1.42.0-2.el9_4.i686", "product_id": "libuv-devel-1:1.42.0-2.el9_4.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.42.0-2.el9_4?arch=i686\u0026epoch=1" } } } ], "category": "architecture", "name": "i686" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.42.0-2.el9_4.x86_64", "product": { "name": "libuv-1:1.42.0-2.el9_4.x86_64", "product_id": "libuv-1:1.42.0-2.el9_4.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.42.0-2.el9_4?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "product": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "product_id": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.42.0-2.el9_4?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "product": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "product_id": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.42.0-2.el9_4?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.42.0-2.el9_4.x86_64", "product": { "name": "libuv-devel-1:1.42.0-2.el9_4.x86_64", "product_id": "libuv-devel-1:1.42.0-2.el9_4.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.42.0-2.el9_4?arch=x86_64\u0026epoch=1" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.42.0-2.el9_4.s390x", "product": { "name": "libuv-1:1.42.0-2.el9_4.s390x", "product_id": "libuv-1:1.42.0-2.el9_4.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.42.0-2.el9_4?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.42.0-2.el9_4.s390x", "product": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.s390x", "product_id": "libuv-debugsource-1:1.42.0-2.el9_4.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.42.0-2.el9_4?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "product": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "product_id": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.42.0-2.el9_4?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.42.0-2.el9_4.s390x", "product": { "name": "libuv-devel-1:1.42.0-2.el9_4.s390x", "product_id": "libuv-devel-1:1.42.0-2.el9_4.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.42.0-2.el9_4?arch=s390x\u0026epoch=1" } } } ], "category": "architecture", "name": "s390x" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src" }, "product_reference": "libuv-1:1.42.0-2.el9_4.src", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", "product_id": "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "AppStream-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.src as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src" }, "product_reference": "libuv-1:1.42.0-2.el9_4.src", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.aarch64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.i686", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.ppc64le", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.s390x", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.42.0-2.el9_4.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", "product_id": "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64" }, "product_reference": "libuv-devel-1:1.42.0-2.el9_4.x86_64", "relates_to_product_reference": "CRB-9.4.0.Z.MAIN.EUS" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-24806", "cwe": { "id": "CWE-918", "name": "Server-Side Request Forgery (SSRF)" }, "discovery_date": "2024-02-08T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2263292" } ], "notes": [ { "category": "description", "text": "A server-side request forgery (SSRF) flaw was found in the libuv package due to how the `hostname_ascii` variable is handled in `uv_getaddrinfo` and `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 that allow 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 could allow an attacker to craft payloads that resolve to unintended IP addresses, bypassing developer checks.", "title": "Vulnerability description" }, { "category": "summary", "text": "libuv: Improper Domain Lookup that potentially leads to SSRF attacks", "title": "Vulnerability summary" }, { "category": "other", "text": "The CVE-2024-24806 vulnerability in libuv, can be classified as a moderate severity issue rather than critical due to several mitigating factors. Firstly, the exploit requires specific conditions to be met, including the use of hostnames exceeding 256 characters, limiting its applicability. Additionally, the vulnerability primarily exposes servers to SSRF attacks and unauthorized access to internal APIs, rather than facilitating direct system compromise or data exfiltration. Furthermore, the exploit\u0027s detection and exploitation require a degree of sophistication, reducing the likelihood of widespread exploitation. While the potential impact on systems leveraging libuv is notable, prudent security measures, such as network controls and vigilant monitoring, can effectively mitigate the risk, thus warranting a moderate severity classification.", "title": "Statement" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-24806" }, { "category": "external", "summary": "RHBZ#2263292", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2263292" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-24806", "url": "https://www.cve.org/CVERecord?id=CVE-2024-24806" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-24806", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24806" }, { "category": "external", "summary": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6", "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "category": "external", "summary": "https://www.chainguard.dev/unchained/unpacking-libuvs-cve-2024-24806-software-dark-matter-will-go-under-the-radar-not-in-chainguard-images-tho", "url": "https://www.chainguard.dev/unchained/unpacking-libuvs-cve-2024-24806-software-dark-matter-will-go-under-the-radar-not-in-chainguard-images-tho" } ], "release_date": "2024-02-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T16:39:13+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258", "product_ids": [ "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:4756" }, { "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.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "AppStream-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "AppStream-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.src", "CRB-9.4.0.Z.MAIN.EUS:libuv-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debuginfo-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-debugsource-1:1.42.0-2.el9_4.x86_64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.aarch64", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.i686", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.ppc64le", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.s390x", "CRB-9.4.0.Z.MAIN.EUS:libuv-devel-1:1.42.0-2.el9_4.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "libuv: Improper Domain Lookup that potentially leads to SSRF attacks" } ] }
rhsa-2024_8132
Vulnerability from csaf_redhat
Published
2024-10-15 11:54
Modified
2024-11-06 07:17
Summary
Red Hat Security Advisory: libuv security update
Notes
Topic
An update for libuv is now available for Red Hat Enterprise Linux 8.8 Extended Update Support.
Red Hat Product Security has rated this update as having a security impact of Moderate. 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.
Details
libuv is a multi-platform support library with a focus on asynchronous I/O.
Security Fix(es):
* libuv: Improper Domain Lookup that potentially leads to SSRF attacks (CVE-2024-24806)
For 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.
Terms of Use
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.
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for libuv is now available for Red Hat Enterprise Linux 8.8 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. 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": "libuv is a multi-platform support library with a focus on asynchronous I/O. \n\nSecurity Fix(es):\n\n* libuv: Improper Domain Lookup that potentially leads to SSRF attacks (CVE-2024-24806)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.", "title": "Details" }, { "category": "legal_disclaimer", "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "https://access.redhat.com/security/team/contact/", "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.", "name": "Red Hat Product Security", "namespace": "https://www.redhat.com" }, "references": [ { "category": "self", "summary": "https://access.redhat.com/errata/RHSA-2024:8132", "url": "https://access.redhat.com/errata/RHSA-2024:8132" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2263292", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2263292" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_8132.json" } ], "title": "Red Hat Security Advisory: libuv security update", "tracking": { "current_release_date": "2024-11-06T07:17:14+00:00", "generator": { "date": "2024-11-06T07:17:14+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:8132", "initial_release_date": "2024-10-15T11:54:51+00:00", "revision_history": [ { "date": "2024-10-15T11:54:51+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-10-15T11:54:51+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T07:17:14+00:00", "number": "3", "summary": "Last generated version" } ], "status": "final", "version": "3" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product": { "name": "Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:8.8::appstream" } } }, { "category": "product_name", "name": "Red Hat CodeReady Linux Builder EUS (v.8.8)", "product": { "name": "Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:8.8::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-1.el8_8.1.src", "product": { "name": "libuv-1:1.41.1-1.el8_8.1.src", "product_id": "libuv-1:1.41.1-1.el8_8.1.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-1.el8_8.1?arch=src\u0026epoch=1" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-1.el8_8.1.aarch64", "product": { "name": "libuv-1:1.41.1-1.el8_8.1.aarch64", "product_id": "libuv-1:1.41.1-1.el8_8.1.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-1.el8_8.1?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "product": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "product_id": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-1.el8_8.1?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "product": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "product_id": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-1.el8_8.1?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "product": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "product_id": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-1.el8_8.1?arch=aarch64\u0026epoch=1" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-1.el8_8.1.ppc64le", "product": { "name": "libuv-1:1.41.1-1.el8_8.1.ppc64le", "product_id": "libuv-1:1.41.1-1.el8_8.1.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-1.el8_8.1?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "product": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "product_id": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-1.el8_8.1?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "product": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "product_id": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-1.el8_8.1?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "product": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "product_id": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-1.el8_8.1?arch=ppc64le\u0026epoch=1" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-1.el8_8.1.i686", "product": { "name": "libuv-1:1.41.1-1.el8_8.1.i686", "product_id": "libuv-1:1.41.1-1.el8_8.1.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-1.el8_8.1?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "product": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "product_id": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-1.el8_8.1?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "product": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "product_id": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-1.el8_8.1?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-1.el8_8.1.i686", "product": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.i686", "product_id": "libuv-devel-1:1.41.1-1.el8_8.1.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-1.el8_8.1?arch=i686\u0026epoch=1" } } } ], "category": "architecture", "name": "i686" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-1.el8_8.1.x86_64", "product": { "name": "libuv-1:1.41.1-1.el8_8.1.x86_64", "product_id": "libuv-1:1.41.1-1.el8_8.1.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-1.el8_8.1?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "product": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "product_id": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-1.el8_8.1?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "product": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "product_id": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-1.el8_8.1?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "product": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "product_id": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-1.el8_8.1?arch=x86_64\u0026epoch=1" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-1.el8_8.1.s390x", "product": { "name": "libuv-1:1.41.1-1.el8_8.1.s390x", "product_id": "libuv-1:1.41.1-1.el8_8.1.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-1.el8_8.1?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "product": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "product_id": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-1.el8_8.1?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "product": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "product_id": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-1.el8_8.1?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-1.el8_8.1.s390x", "product": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.s390x", "product_id": "libuv-devel-1:1.41.1-1.el8_8.1.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-1.el8_8.1?arch=s390x\u0026epoch=1" } } } ], "category": "architecture", "name": "s390x" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.src", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.8)", "product_id": "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "AppStream-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.src as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.src", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.i686", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64" }, "product_reference": "libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-24806", "cwe": { "id": "CWE-918", "name": "Server-Side Request Forgery (SSRF)" }, "discovery_date": "2024-02-08T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2263292" } ], "notes": [ { "category": "description", "text": "A server-side request forgery (SSRF) flaw was found in the libuv package due to how the `hostname_ascii` variable is handled in `uv_getaddrinfo` and `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 that allow 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 could allow an attacker to craft payloads that resolve to unintended IP addresses, bypassing developer checks.", "title": "Vulnerability description" }, { "category": "summary", "text": "libuv: Improper Domain Lookup that potentially leads to SSRF attacks", "title": "Vulnerability summary" }, { "category": "other", "text": "The CVE-2024-24806 vulnerability in libuv, can be classified as a moderate severity issue rather than critical due to several mitigating factors. Firstly, the exploit requires specific conditions to be met, including the use of hostnames exceeding 256 characters, limiting its applicability. Additionally, the vulnerability primarily exposes servers to SSRF attacks and unauthorized access to internal APIs, rather than facilitating direct system compromise or data exfiltration. Furthermore, the exploit\u0027s detection and exploitation require a degree of sophistication, reducing the likelihood of widespread exploitation. While the potential impact on systems leveraging libuv is notable, prudent security measures, such as network controls and vigilant monitoring, can effectively mitigate the risk, thus warranting a moderate severity classification.", "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-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-24806" }, { "category": "external", "summary": "RHBZ#2263292", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2263292" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-24806", "url": "https://www.cve.org/CVERecord?id=CVE-2024-24806" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-24806", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24806" }, { "category": "external", "summary": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6", "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "category": "external", "summary": "https://www.chainguard.dev/unchained/unpacking-libuvs-cve-2024-24806-software-dark-matter-will-go-under-the-radar-not-in-chainguard-images-tho", "url": "https://www.chainguard.dev/unchained/unpacking-libuvs-cve-2024-24806-software-dark-matter-will-go-under-the-radar-not-in-chainguard-images-tho" } ], "release_date": "2024-02-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-10-15T11:54:51+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-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:8132" }, { "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-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "AppStream-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "AppStream-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.src", "CRB-8.8.0.Z.EUS:libuv-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debuginfo-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-debugsource-1:1.41.1-1.el8_8.1.x86_64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.aarch64", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.i686", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.ppc64le", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.s390x", "CRB-8.8.0.Z.EUS:libuv-devel-1:1.41.1-1.el8_8.1.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "libuv: Improper Domain Lookup that potentially leads to SSRF attacks" } ] }
rhsa-2024_4247
Vulnerability from csaf_redhat
Published
2024-07-02 15:41
Modified
2024-11-06 06:18
Summary
Red Hat Security Advisory: libuv security update
Notes
Topic
An update for libuv is now available for Red Hat Enterprise Linux 8.
Red Hat Product Security has rated this update as having a security impact of Moderate. 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.
Details
libuv is a multi-platform support library with a focus on asynchronous I/O.
Security Fix(es):
* libuv: Improper Domain Lookup that potentially leads to SSRF attacks (CVE-2024-24806)
For 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.
Terms of Use
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.
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for libuv is now available for Red Hat Enterprise Linux 8.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. 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": "libuv is a multi-platform support library with a focus on asynchronous I/O. \n\nSecurity Fix(es):\n\n* libuv: Improper Domain Lookup that potentially leads to SSRF attacks (CVE-2024-24806)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.", "title": "Details" }, { "category": "legal_disclaimer", "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "https://access.redhat.com/security/team/contact/", "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.", "name": "Red Hat Product Security", "namespace": "https://www.redhat.com" }, "references": [ { "category": "self", "summary": "https://access.redhat.com/errata/RHSA-2024:4247", "url": "https://access.redhat.com/errata/RHSA-2024:4247" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2263292", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2263292" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_4247.json" } ], "title": "Red Hat Security Advisory: libuv security update", "tracking": { "current_release_date": "2024-11-06T06:18:11+00:00", "generator": { "date": "2024-11-06T06:18:11+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:4247", "initial_release_date": "2024-07-02T15:41:50+00:00", "revision_history": [ { "date": "2024-07-02T15:41:50+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-07-02T15:41:51+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:18:11+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. 8)", "product": { "name": "Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux CRB (v. 8)", "product": { "name": "Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:8::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-2.el8_10.src", "product": { "name": "libuv-1:1.41.1-2.el8_10.src", "product_id": "libuv-1:1.41.1-2.el8_10.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-2.el8_10?arch=src\u0026epoch=1" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-2.el8_10.aarch64", "product": { "name": "libuv-1:1.41.1-2.el8_10.aarch64", "product_id": "libuv-1:1.41.1-2.el8_10.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-2.el8_10?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "product": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "product_id": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-2.el8_10?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "product": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "product_id": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-2.el8_10?arch=aarch64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-2.el8_10.aarch64", "product": { "name": "libuv-devel-1:1.41.1-2.el8_10.aarch64", "product_id": "libuv-devel-1:1.41.1-2.el8_10.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-2.el8_10?arch=aarch64\u0026epoch=1" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-2.el8_10.ppc64le", "product": { "name": "libuv-1:1.41.1-2.el8_10.ppc64le", "product_id": "libuv-1:1.41.1-2.el8_10.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-2.el8_10?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "product": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "product_id": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-2.el8_10?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "product": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "product_id": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-2.el8_10?arch=ppc64le\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-2.el8_10.ppc64le", "product": { "name": "libuv-devel-1:1.41.1-2.el8_10.ppc64le", "product_id": "libuv-devel-1:1.41.1-2.el8_10.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-2.el8_10?arch=ppc64le\u0026epoch=1" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-2.el8_10.i686", "product": { "name": "libuv-1:1.41.1-2.el8_10.i686", "product_id": "libuv-1:1.41.1-2.el8_10.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-2.el8_10?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-2.el8_10.i686", "product": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.i686", "product_id": "libuv-debugsource-1:1.41.1-2.el8_10.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-2.el8_10?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-2.el8_10.i686", "product": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.i686", "product_id": "libuv-debuginfo-1:1.41.1-2.el8_10.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-2.el8_10?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-2.el8_10.i686", "product": { "name": "libuv-devel-1:1.41.1-2.el8_10.i686", "product_id": "libuv-devel-1:1.41.1-2.el8_10.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-2.el8_10?arch=i686\u0026epoch=1" } } } ], "category": "architecture", "name": "i686" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-2.el8_10.x86_64", "product": { "name": "libuv-1:1.41.1-2.el8_10.x86_64", "product_id": "libuv-1:1.41.1-2.el8_10.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-2.el8_10?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "product": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "product_id": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-2.el8_10?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "product": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "product_id": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-2.el8_10?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-2.el8_10.x86_64", "product": { "name": "libuv-devel-1:1.41.1-2.el8_10.x86_64", "product_id": "libuv-devel-1:1.41.1-2.el8_10.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-2.el8_10?arch=x86_64\u0026epoch=1" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "libuv-1:1.41.1-2.el8_10.s390x", "product": { "name": "libuv-1:1.41.1-2.el8_10.s390x", "product_id": "libuv-1:1.41.1-2.el8_10.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv@1.41.1-2.el8_10?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debugsource-1:1.41.1-2.el8_10.s390x", "product": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.s390x", "product_id": "libuv-debugsource-1:1.41.1-2.el8_10.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debugsource@1.41.1-2.el8_10?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "product": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "product_id": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-debuginfo@1.41.1-2.el8_10?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "libuv-devel-1:1.41.1-2.el8_10.s390x", "product": { "name": "libuv-devel-1:1.41.1-2.el8_10.s390x", "product_id": "libuv-devel-1:1.41.1-2.el8_10.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/libuv-devel@1.41.1-2.el8_10?arch=s390x\u0026epoch=1" } } } ], "category": "architecture", "name": "s390x" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src" }, "product_reference": "libuv-1:1.41.1-2.el8_10.src", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "AppStream-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.src as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src" }, "product_reference": "libuv-1:1.41.1-2.el8_10.src", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.aarch64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.i686", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.ppc64le", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.s390x", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libuv-devel-1:1.41.1-2.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", "product_id": "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64" }, "product_reference": "libuv-devel-1:1.41.1-2.el8_10.x86_64", "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-24806", "cwe": { "id": "CWE-918", "name": "Server-Side Request Forgery (SSRF)" }, "discovery_date": "2024-02-08T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2263292" } ], "notes": [ { "category": "description", "text": "A server-side request forgery (SSRF) flaw was found in the libuv package due to how the `hostname_ascii` variable is handled in `uv_getaddrinfo` and `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 that allow 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 could allow an attacker to craft payloads that resolve to unintended IP addresses, bypassing developer checks.", "title": "Vulnerability description" }, { "category": "summary", "text": "libuv: Improper Domain Lookup that potentially leads to SSRF attacks", "title": "Vulnerability summary" }, { "category": "other", "text": "The CVE-2024-24806 vulnerability in libuv, can be classified as a moderate severity issue rather than critical due to several mitigating factors. Firstly, the exploit requires specific conditions to be met, including the use of hostnames exceeding 256 characters, limiting its applicability. Additionally, the vulnerability primarily exposes servers to SSRF attacks and unauthorized access to internal APIs, rather than facilitating direct system compromise or data exfiltration. Furthermore, the exploit\u0027s detection and exploitation require a degree of sophistication, reducing the likelihood of widespread exploitation. While the potential impact on systems leveraging libuv is notable, prudent security measures, such as network controls and vigilant monitoring, can effectively mitigate the risk, thus warranting a moderate severity classification.", "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-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-24806" }, { "category": "external", "summary": "RHBZ#2263292", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2263292" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-24806", "url": "https://www.cve.org/CVERecord?id=CVE-2024-24806" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-24806", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24806" }, { "category": "external", "summary": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6", "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "category": "external", "summary": "https://www.chainguard.dev/unchained/unpacking-libuvs-cve-2024-24806-software-dark-matter-will-go-under-the-radar-not-in-chainguard-images-tho", "url": "https://www.chainguard.dev/unchained/unpacking-libuvs-cve-2024-24806-software-dark-matter-will-go-under-the-radar-not-in-chainguard-images-tho" } ], "release_date": "2024-02-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-02T15:41:50+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-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:4247" }, { "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-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "AppStream-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "AppStream-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.src", "CRB-8.10.0.Z.MAIN.EUS:libuv-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debuginfo-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-debugsource-1:1.41.1-2.el8_10.x86_64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.aarch64", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.i686", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.ppc64le", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.s390x", "CRB-8.10.0.Z.MAIN.EUS:libuv-devel-1:1.41.1-2.el8_10.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "libuv: Improper Domain Lookup that potentially leads to SSRF attacks" } ] }
gsd-2024-24806
Vulnerability from gsd
Modified
2024-02-01 06:02
Details
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.
Aliases
{ "gsd": { "metadata": { "exploitCode": "unknown", "remediation": "unknown", "reportConfidence": "confirmed", "type": "vulnerability" }, "osvSchema": { "aliases": [ "CVE-2024-24806" ], "details": "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.", "id": "GSD-2024-24806", "modified": "2024-02-01T06:02:24.440918Z", "schema_version": "1.4.0" } }, "namespaces": { "cve.org": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2024-24806", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "libuv", "version": { "version_data": [ { "version_affected": "=", "version_value": "\u003e= 1.45.0, \u003c 1.48.0" } ] } } ] }, "vendor_name": "libuv" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "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." } ] }, "impact": { "cvss": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "cweId": "CWE-918", "lang": "eng", "value": "CWE-918: Server-Side Request Forgery (SSRF)" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6", "refsource": "MISC", "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "name": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629", "refsource": "MISC", "url": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629" }, { "name": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70", "refsource": "MISC", "url": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70" }, { "name": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488", "refsource": "MISC", "url": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488" }, { "name": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39", "refsource": "MISC", "url": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39" }, { "name": "http://www.openwall.com/lists/oss-security/2024/02/08/2", "refsource": "MISC", "url": "http://www.openwall.com/lists/oss-security/2024/02/08/2" }, { "name": "http://www.openwall.com/lists/oss-security/2024/02/11/1", "refsource": "MISC", "url": "http://www.openwall.com/lists/oss-security/2024/02/11/1" }, { "name": "https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html", "refsource": "MISC", "url": "https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html" } ] }, "source": { "advisory": "GHSA-f74f-cvh7-c6q6", "discovery": "UNKNOWN" } }, "nvd.nist.gov": { "cve": { "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:libuv:libuv:*:*:*:*:*:*:*:*", "matchCriteriaId": "7A5D8905-1DA8-45F4-886D-2FDAA3C722DF", "versionEndExcluding": "1.48.0", "versionStartIncluding": "1.24.0", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "descriptions": [ { "lang": "en", "value": "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." }, { "lang": "es", "value": "libuv es una librer\u00eda de soporte multiplataforma centrada en E/S as\u00edncrona. La funci\u00f3n `uv_getaddrinfo` en `src/unix/getaddrinfo.c` (y su contraparte de Windows `src/win/getaddrinfo.c`), trunca los nombres de host a 256 caracteres antes de llamar a `getaddrinfo`. Este comportamiento se puede aprovechar para crear direcciones como `0x00007f000001`, que `getaddrinfo` considera v\u00e1lidas y podr\u00edan permitir a un atacante crear payloads que se resuelvan en direcciones IP no deseadas, evitando las comprobaciones de los desarrolladores. La vulnerabilidad surge debido a c\u00f3mo se maneja la variable `hostname_ascii` (con una longitud de 256 bytes) en `uv_getaddrinfo` y posteriormente en `uv__idna_toascii`. Cuando el nombre de host supera los 256 caracteres, se trunca sin un byte nulo final. Como resultado, los atacantes pueden acceder a API internas o a sitios web (similares a MySpace) que permiten a los usuarios tener p\u00e1ginas `nombre de usuario.ejemplo.com`. Los servicios internos que rastrean o almacenan en cach\u00e9 estas p\u00e1ginas de usuario pueden quedar expuestos a ataques SSRF si un usuario malintencionado elige un nombre de usuario largo y vulnerable. Este problema se solucion\u00f3 en la versi\u00f3n 1.48.0. Se recomienda a los usuarios que actualicen. No se conocen workarounds para esta vulnerabilidad." } ], "id": "CVE-2024-24806", "lastModified": "2024-03-05T23:15:07.867", "metrics": { "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 3.4, "source": "nvd@nist.gov", "type": "Primary" }, { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 7.3, "baseSeverity": "HIGH", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 3.4, "source": "security-advisories@github.com", "type": "Secondary" } ] }, "published": "2024-02-07T22:15:10.173", "references": [ { "source": "security-advisories@github.com", "tags": [ "Mailing List", "Third Party Advisory" ], "url": "http://www.openwall.com/lists/oss-security/2024/02/08/2" }, { "source": "security-advisories@github.com", "tags": [ "Mailing List", "Third Party Advisory" ], "url": "http://www.openwall.com/lists/oss-security/2024/02/11/1" }, { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629" }, { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/libuv/libuv/commit/3530bcc30350d4a6ccf35d2f7b33e23292b9de70" }, { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/libuv/libuv/commit/c858a147643de38a09dd4164758ae5b685f2b488" }, { "source": "security-advisories@github.com", "tags": [ "Patch" ], "url": "https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39" }, { "source": "security-advisories@github.com", "tags": [ "Exploit", "Vendor Advisory" ], "url": "https://github.com/libuv/libuv/security/advisories/GHSA-f74f-cvh7-c6q6" }, { "source": "security-advisories@github.com", "url": "https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html" } ], "sourceIdentifier": "security-advisories@github.com", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-918" } ], "source": "security-advisories@github.com", "type": "Primary" } ] } } } }
wid-sec-w-2024-0393
Vulnerability from csaf_certbund
Published
2024-02-14 23:00
Modified
2024-07-24 22:00
Summary
Node.js: Mehrere Schwachstellen
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung
Node.js ist eine Plattform zur Entwicklung von Netzwerkanwendungen.
Angriff
Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Node.js ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern.
Betroffene Betriebssysteme
- Linux
- MacOS X
- Windows
{ "document": { "aggregate_severity": { "text": "hoch" }, "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": "Node.js ist eine Plattform zur Entwicklung von Netzwerkanwendungen.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Node.js ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern.", "title": "Angriff" }, { "category": "general", "text": "- Linux\n- MacOS X\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-0393 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-0393.json" }, { "category": "self", "summary": "WID-SEC-2024-0393 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-0393" }, { "category": "external", "summary": "Amazon Linux Security Advisory ALAS-2024-2474 vom 2024-03-05", "url": "https://alas.aws.amazon.com/AL2/ALAS-2024-2474.html" }, { "category": "external", "summary": "Debian Security Advisory DLA-3752 vom 2024-03-05", "url": "https://lists.debian.org/debian-lts-announce/2024/03/msg00005.html" }, { "category": "external", "summary": "IBM Security Bulletin 7129940 vom 2024-03-06", "url": "https://www.ibm.com/support/pages/node/7129940" }, { "category": "external", "summary": "NodeJS Security Releases vom 2024-02-14", "url": "https://nodejs.org/en/blog/vulnerability/february-2024-security-releases" }, { "category": "external", "summary": "NodeJS Release Notes vom 2024-02-14", "url": "https://nodejs.org/en/blog/release/v18.19.1" }, { "category": "external", "summary": "NodeJS Release Notes vom 2024-02-14", "url": "https://nodejs.org/en/blog/release/v20.11.1" }, { "category": "external", "summary": "NodeJS Release Notes vom 2024-02-14", "url": "https://nodejs.org/en/blog/release/v21.6.2" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0644-1 vom 2024-02-28", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018058.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6666-1 vom 2024-02-28", "url": "https://ubuntu.com/security/notices/USN-6666-1" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0643-1 vom 2024-02-28", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018059.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0730-1 vom 2024-02-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018077.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0730-1 vom 2024-02-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018078.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0731-1 vom 2024-02-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018076.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0733-1 vom 2024-02-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018074.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0732-1 vom 2024-02-29", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018075.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0728-1 vom 2024-03-01", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-March/018084.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:0729-1 vom 2024-03-01", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-March/018083.html" }, { "category": "external", "summary": "IBM Security Bulletin 7129324 vom 2024-03-01", "url": "https://www.ibm.com/support/pages/node/7129324" }, { "category": "external", "summary": "Debian Security Advisory DSA-5638 vom 2024-03-10", "url": "https://lists.debian.org/debian-security-announce/2024/msg00044.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1354 vom 2024-03-18", "url": "https://access.redhat.com/errata/RHSA-2024:1354" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1424 vom 2024-03-19", "url": "https://access.redhat.com/errata/RHSA-2024:1424" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1438 vom 2024-03-20", "url": "https://access.redhat.com/errata/RHSA-2024:1438" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1444 vom 2024-03-20", "url": "https://access.redhat.com/errata/RHSA-2024:1444" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1438 vom 2024-03-21", "url": "https://linux.oracle.com/errata/ELSA-2024-1438.html" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1444 vom 2024-03-21", "url": "https://linux.oracle.com/errata/ELSA-2024-1444.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1503 vom 2024-03-25", "url": "https://access.redhat.com/errata/RHSA-2024:1503" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1510 vom 2024-03-26", "url": "https://access.redhat.com/errata/RHSA-2024:1510" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:1503 vom 2024-03-27", "url": "https://errata.build.resf.org/RLSA-2024:1503" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1503 vom 2024-03-27", "url": "https://linux.oracle.com/errata/ELSA-2024-1503.html" }, { "category": "external", "summary": "Debian Security Advisory DLA-3776 vom 2024-03-27", "url": "https://lists.debian.org/debian-lts-announce/2024/03/msg00029.html" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:1510 vom 2024-03-27", "url": "https://errata.build.resf.org/RLSA-2024:1510" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:1444 vom 2024-03-27", "url": "https://errata.build.resf.org/RLSA-2024:1444" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1510 vom 2024-03-27", "url": "http://linux.oracle.com/errata/ELSA-2024-1510.html" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1510 vom 2024-03-27", "url": "https://linux.oracle.com/errata/ELSA-2024-1510.html" }, { "category": "external", "summary": "IBM Security Bulletin 7145582 vom 2024-04-01", "url": "https://www.ibm.com/support/pages/node/7145582" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1678 vom 2024-04-04", "url": "https://access.redhat.com/errata/RHSA-2024:1678" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1688 vom 2024-04-08", "url": "https://access.redhat.com/errata/RHSA-2024:1688" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1687 vom 2024-04-08", "url": "https://access.redhat.com/errata/RHSA-2024:1687" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1688 vom 2024-04-09", "url": "https://linux.oracle.com/errata/ELSA-2024-1688.html" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-1687 vom 2024-04-09", "url": "https://linux.oracle.com/errata/ELSA-2024-1687.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1301-1 vom 2024-04-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-April/018360.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1309-1 vom 2024-04-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-April/018363.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1307-1 vom 2024-04-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-April/018365.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1880 vom 2024-04-18", "url": "https://access.redhat.com/errata/RHSA-2024:1880" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:1932 vom 2024-04-22", "url": "https://access.redhat.com/errata/RHSA-2024:1932" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2651 vom 2024-05-02", "url": "https://access.redhat.com/errata/RHSA-2024:2651" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:1687 vom 2024-05-06", "url": "https://errata.build.resf.org/RLSA-2024:1687" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:1688 vom 2024-05-06", "url": "https://errata.build.resf.org/RLSA-2024:1688" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:2778 vom 2024-05-09", "url": "https://errata.build.resf.org/RLSA-2024:2778" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2780 vom 2024-05-09", "url": "https://access.redhat.com/errata/RHSA-2024:2780" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:2780 vom 2024-05-09", "url": "https://errata.build.resf.org/RLSA-2024:2780" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2778 vom 2024-05-09", "url": "https://access.redhat.com/errata/RHSA-2024:2778" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2793 vom 2024-05-09", "url": "https://access.redhat.com/errata/RHSA-2024:2793" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2779 vom 2024-05-09", "url": "https://access.redhat.com/errata/RHSA-2024:2779" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-2778 vom 2024-05-09", "url": "https://linux.oracle.com/errata/ELSA-2024-2778.html" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:2779 vom 2024-05-09", "url": "https://errata.build.resf.org/RLSA-2024:2779" }, { "category": "external", "summary": "IBM Security Bulletin 7150839 vom 2024-05-10", "url": "https://www.ibm.com/support/pages/node/7150839" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-2780 vom 2024-05-10", "url": "https://linux.oracle.com/errata/ELSA-2024-2780.html" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:1438 vom 2024-05-10", "url": "https://errata.build.resf.org/RLSA-2024:1438" }, { "category": "external", "summary": "IBM Security Bulletin 7151378 vom 2024-05-14", "url": "https://www.ibm.com/support/pages/node/7151378" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-2779 vom 2024-05-15", "url": "https://linux.oracle.com/errata/ELSA-2024-2779.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2853 vom 2024-05-15", "url": "https://access.redhat.com/errata/RHSA-2024:2853" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-2853 vom 2024-05-17", "url": "https://linux.oracle.com/errata/ELSA-2024-2853.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:2910 vom 2024-05-20", "url": "https://access.redhat.com/errata/RHSA-2024:2910" }, { "category": "external", "summary": "IBM Security Bulletin 7149175 vom 2024-05-24", "url": "https://www.ibm.com/support/pages/node/7149175" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:2910 vom 2024-06-14", "url": "https://errata.build.resf.org/RLSA-2024:2910" }, { "category": "external", "summary": "Rocky Linux Security Advisory RLSA-2024:2853 vom 2024-06-14", "url": "https://errata.build.resf.org/RLSA-2024:2853" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4247 vom 2024-07-03", "url": "https://access.redhat.com/errata/RHSA-2024:4247" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-4247 vom 2024-07-03", "url": "https://linux.oracle.com/errata/ELSA-2024-4247.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4559 vom 2024-07-16", "url": "https://access.redhat.com/errata/RHSA-2024:4559" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4631 vom 2024-07-18", "url": "https://access.redhat.com/errata/RHSA-2024:4631" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4756 vom 2024-07-24", "url": "https://access.redhat.com/errata/RHSA-2024:4756" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4721 vom 2024-07-23", "url": "https://access.redhat.com/errata/RHSA-2024:4721" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-4756 vom 2024-07-24", "url": "https://linux.oracle.com/errata/ELSA-2024-4756.html" } ], "source_lang": "en-US", "title": "Node.js: Mehrere Schwachstellen", "tracking": { "current_release_date": "2024-07-24T22:00:00.000+00:00", "generator": { "date": "2024-07-25T08:36:26.032+00:00", "engine": { "name": "BSI-WID", "version": "1.3.0" } }, "id": "WID-SEC-W-2024-0393", "initial_release_date": "2024-02-14T23:00:00.000+00:00", "revision_history": [ { "date": "2024-02-14T23:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2024-02-15T23:00:00.000+00:00", "number": "2", "summary": "CVE erg\u00e4nzt" }, { "date": "2024-02-28T23:00:00.000+00:00", "number": "3", "summary": "Neue Updates von SUSE und Ubuntu aufgenommen" }, { "date": "2024-02-29T23:00:00.000+00:00", "number": "4", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-03-03T23:00:00.000+00:00", "number": "5", "summary": "Neue Updates von IBM aufgenommen" }, { "date": "2024-03-04T23:00:00.000+00:00", "number": "6", "summary": "Neue Updates von Amazon aufgenommen" }, { "date": "2024-03-05T23:00:00.000+00:00", "number": "7", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2024-03-10T23:00:00.000+00:00", "number": "8", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2024-03-17T23:00:00.000+00:00", "number": "9", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-03-19T23:00:00.000+00:00", "number": "10", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-03-20T23:00:00.000+00:00", "number": "11", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-03-21T23:00:00.000+00:00", "number": "12", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2024-03-25T23:00:00.000+00:00", "number": "13", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-03-26T23:00:00.000+00:00", "number": "14", "summary": "Neue Updates von Rocky Enterprise Software Foundation, Oracle Linux und Debian aufgenommen" }, { "date": "2024-03-27T23:00:00.000+00:00", "number": "15", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2024-04-01T22:00:00.000+00:00", "number": "16", "summary": "Neue Updates von IBM und IBM-APAR aufgenommen" }, { "date": "2024-04-04T22:00:00.000+00:00", "number": "17", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-04-07T22:00:00.000+00:00", "number": "18", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-04-08T22:00:00.000+00:00", "number": "19", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2024-04-15T22:00:00.000+00:00", "number": "20", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-04-16T22:00:00.000+00:00", "number": "21", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-04-17T22:00:00.000+00:00", "number": "22", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-04-21T22:00:00.000+00:00", "number": "23", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-05-01T22:00:00.000+00:00", "number": "24", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-05-06T22:00:00.000+00:00", "number": "25", "summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen" }, { "date": "2024-05-09T22:00:00.000+00:00", "number": "26", "summary": "Neue Updates von Rocky Enterprise Software Foundation, Red Hat und Oracle Linux aufgenommen" }, { "date": "2024-05-12T22:00:00.000+00:00", "number": "27", "summary": "Neue Updates von IBM, Oracle Linux und Rocky Enterprise Software Foundation aufgenommen" }, { "date": "2024-05-13T22:00:00.000+00:00", "number": "28", "summary": "Neue Updates von IBM aufgenommen" }, { "date": "2024-05-14T22:00:00.000+00:00", "number": "29", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2024-05-15T22:00:00.000+00:00", "number": "30", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-05-16T22:00:00.000+00:00", "number": "31", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2024-05-20T22:00:00.000+00:00", "number": "32", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-05-23T22:00:00.000+00:00", "number": "33", "summary": "Neue Updates von IBM aufgenommen" }, { "date": "2024-06-16T22:00:00.000+00:00", "number": "34", "summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen" }, { "date": "2024-07-02T22:00:00.000+00:00", "number": "35", "summary": "Neue Updates von Red Hat und Oracle Linux aufgenommen" }, { "date": "2024-07-16T22:00:00.000+00:00", "number": "36", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-07-18T22:00:00.000+00:00", "number": "37", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-07-23T22:00:00.000+00:00", "number": "38", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2024-07-24T22:00:00.000+00:00", "number": "39", "summary": "Neue Updates von Oracle Linux aufgenommen" } ], "status": "final", "version": "39" } }, "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": [ { "branches": [ { "category": "product_name", "name": "IBM App Connect Enterprise", "product": { "name": "IBM App Connect Enterprise", "product_id": "T032495", "product_identification_helper": { "cpe": "cpe:/a:ibm:app_connect_enterprise:-" } } }, { "category": "product_version_range", "name": "Certified Container Operator \u003c11.5.0", "product": { "name": "IBM App Connect Enterprise Certified Container Operator \u003c11.5.0", "product_id": "T035057", "product_identification_helper": { "cpe": "cpe:/a:ibm:app_connect_enterprise:11.5.0::certified_container_operator" } } }, { "category": "product_version_range", "name": "Certified Container Operator \u003c5.0.17", "product": { "name": "IBM App Connect Enterprise Certified Container Operator \u003c5.0.17", "product_id": "T035058", "product_identification_helper": { "cpe": "cpe:/a:ibm:app_connect_enterprise:5.0.17::certified_container_operator" } } } ], "category": "product_name", "name": "App Connect Enterprise" }, { "category": "product_name", "name": "IBM Business Automation Workflow", "product": { "name": "IBM Business Automation Workflow", "product_id": "T019704", "product_identification_helper": { "cpe": "cpe:/a:ibm:business_automation_workflow:-" } } }, { "branches": [ { "category": "product_version_range", "name": "\u003c10.5.4", "product": { "name": "IBM DataPower Gateway \u003c10.5.4", "product_id": "T033810", "product_identification_helper": { "cpe": "cpe:/a:ibm:datapower_gateway:10.5.4" } } }, { "category": "product_version_range", "name": "\u003c10.5.0.10", "product": { "name": "IBM DataPower Gateway \u003c10.5.0.10", "product_id": "T033811", "product_identification_helper": { "cpe": "cpe:/a:ibm:datapower_gateway:10.5.0.10" } } }, { "category": "product_version_range", "name": "\u003c10.0.1.18", "product": { "name": "IBM DataPower Gateway \u003c10.0.1.18", "product_id": "T033812", "product_identification_helper": { "cpe": "cpe:/a:ibm:datapower_gateway:10.0.1.18" } } } ], "category": "product_name", "name": "DataPower Gateway" }, { "branches": [ { "category": "product_version", "name": "9.6", "product": { "name": "IBM Rational Application Developer for WebSphere Software 9.6", "product_id": "T012259", "product_identification_helper": { "cpe": "cpe:/a:ibm:rational_application_developer_for_websphere_software:9.6" } } }, { "category": "product_version", "name": "9.7", "product": { "name": "IBM Rational Application Developer for WebSphere Software 9.7", "product_id": "T033489", "product_identification_helper": { "cpe": "cpe:/a:ibm:rational_application_developer_for_websphere_software:9.7" } } } ], "category": "product_name", "name": "Rational Application Developer for WebSphere Software" } ], "category": "vendor", "name": "IBM" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003c18.19.1", "product": { "name": "Open Source Node.js \u003c18.19.1", "product_id": "T032827", "product_identification_helper": { "cpe": "cpe:/a:nodejs:nodejs:18.19.1" } } }, { "category": "product_version_range", "name": "\u003c20.11.1", "product": { "name": "Open Source Node.js \u003c20.11.1", "product_id": "T032828", "product_identification_helper": { "cpe": "cpe:/a:nodejs:nodejs:20.11.1" } } }, { "category": "product_version_range", "name": "\u003c21.6.2", "product": { "name": "Open Source Node.js \u003c21.6.2", "product_id": "T032829", "product_identification_helper": { "cpe": "cpe:/a:nodejs:nodejs:21.6.2" } } } ], "category": "product_name", "name": "Node.js" } ], "category": "vendor", "name": "Open Source" }, { "branches": [ { "category": "product_name", "name": "Oracle Linux", "product": { "name": "Oracle Linux", "product_id": "T004914", "product_identification_helper": { "cpe": "cpe:/o:oracle:linux:-" } } } ], "category": "vendor", "name": "Oracle" }, { "branches": [ { "category": "product_name", "name": "RESF Rocky Linux", "product": { "name": "RESF Rocky Linux", "product_id": "T032255", "product_identification_helper": { "cpe": "cpe:/o:resf:rocky_linux:-" } } } ], "category": "vendor", "name": "RESF" }, { "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": [ { "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-2023-46809", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2023-46809" }, { "cve": "CVE-2024-21890", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-21890" }, { "cve": "CVE-2024-21891", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-21891" }, { "cve": "CVE-2024-21892", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-21892" }, { "cve": "CVE-2024-21896", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-21896" }, { "cve": "CVE-2024-22017", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-22017" }, { "cve": "CVE-2024-22019", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-22019" }, { "cve": "CVE-2024-22025", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-22025" }, { "cve": "CVE-2024-24758", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-24758" }, { "cve": "CVE-2024-24806", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen in Node.js. Diese Fehler bestehen aufgrund verschiedener sicherheitsrelevanter Probleme, wie z. B. einer unsachgem\u00e4\u00dfen Neutralisierung von Benutzereingaben, einer Code-Injektion oder einem Pfad-Traversal, um nur einige zu nennen. Ein entfernter, anonymer Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, einen Denial-of-Service-Zustand zu verursachen, vertrauliche Informationen offenzulegen, Dateien zu manipulieren oder seine Privilegien zu erweitern." } ], "product_status": { "known_affected": [ "T033810", "T033489", "67646", "T033811", "T012259", "T033812", "T004914", "T032255", "T035058", "T032495", "T035057", "2951", "T002207", "T000126", "T019704", "398363" ] }, "release_date": "2024-02-14T23:00:00Z", "title": "CVE-2024-24806" } ] }
wid-sec-w-2024-1248
Vulnerability from csaf_certbund
Published
2024-05-28 22:00
Modified
2024-05-28 22:00
Summary
Xerox FreeFlow Print Server: Mehrere Schwachstellen
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung
FreeFlow-Druckserver ist eine Druckserveranwendung für Xerox-Produktionsdrucker, die Flexibilität, umfangreiche Workflow-Optionen und eine Farbverwaltung bietet.
Angriff
Ein Angreifer kann mehrere Schwachstellen in Xerox FreeFlow Print Server ausnutzen, um die Vertraulichkeit, Verfügbarkeit und Integrität des Systems zu gefährden
Betroffene Betriebssysteme
- Sonstiges
- UNIX
- Windows
{ "document": { "aggregate_severity": { "text": "hoch" }, "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": "FreeFlow-Druckserver ist eine Druckserveranwendung f\u00fcr Xerox-Produktionsdrucker, die Flexibilit\u00e4t, umfangreiche Workflow-Optionen und eine Farbverwaltung bietet.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein Angreifer kann mehrere Schwachstellen in Xerox FreeFlow Print Server ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden", "title": "Angriff" }, { "category": "general", "text": "- Sonstiges\n- UNIX\n- Windows", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2024-1248 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-1248.json" }, { "category": "self", "summary": "WID-SEC-2024-1248 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-1248" }, { "category": "external", "summary": "Xerox Security Bulletin XRX24-010 vom 2024-05-28", "url": "https://security.business.xerox.com/wp-content/uploads/2024/05/Xerox-Security-Bulletin-XRX24-010-for-Xerox%C2%AE-FreeFlow%C2%AE-Print-Server-v7.pdf" } ], "source_lang": "en-US", "title": "Xerox FreeFlow Print Server: Mehrere Schwachstellen", "tracking": { "current_release_date": "2024-05-28T22:00:00.000+00:00", "generator": { "date": "2024-05-29T10:05:59.154+00:00", "engine": { "name": "BSI-WID", "version": "1.3.0" } }, "id": "WID-SEC-W-2024-1248", "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" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "v7", "product": { "name": "Xerox FreeFlow Print Server v7", "product_id": "T035098", "product_identification_helper": { "cpe": "cpe:/a:xerox:freeflow_print_server:v7" } } } ], "category": "product_name", "name": "FreeFlow Print Server" } ], "category": "vendor", "name": "Xerox" } ] }, "vulnerabilities": [ { "cve": "CVE-2014-10401", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2014-10401" }, { "cve": "CVE-2014-10402", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2014-10402" }, { "cve": "CVE-2020-22218", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2020-22218" }, { "cve": "CVE-2020-27545", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2020-27545" }, { "cve": "CVE-2020-28162", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2020-28162" }, { "cve": "CVE-2020-28163", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2020-28163" }, { "cve": "CVE-2022-22817", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-22817" }, { "cve": "CVE-2022-32200", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-32200" }, { "cve": "CVE-2022-34299", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-34299" }, { "cve": "CVE-2022-39170", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-39170" }, { "cve": "CVE-2022-40982", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-40982" }, { "cve": "CVE-2022-46285", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-46285" }, { "cve": "CVE-2022-46344", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2022-46344" }, { "cve": "CVE-2023-22053", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-22053" }, { "cve": "CVE-2023-27371", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-27371" }, { "cve": "CVE-2023-34872", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-34872" }, { "cve": "CVE-2023-38408", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-38408" }, { "cve": "CVE-2023-38709", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-38709" }, { "cve": "CVE-2023-39326", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-39326" }, { "cve": "CVE-2023-39615", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-39615" }, { "cve": "CVE-2023-40305", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-40305" }, { "cve": "CVE-2023-40745", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-40745" }, { "cve": "CVE-2023-41175", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-41175" }, { "cve": "CVE-2023-43785", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-43785" }, { "cve": "CVE-2023-43786", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-43786" }, { "cve": "CVE-2023-43787", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-43787" }, { "cve": "CVE-2023-43788", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-43788" }, { "cve": "CVE-2023-43789", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-43789" }, { "cve": "CVE-2023-4408", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-4408" }, { "cve": "CVE-2023-44487", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-44487" }, { "cve": "CVE-2023-45285", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-45285" }, { "cve": "CVE-2023-46589", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46589" }, { "cve": "CVE-2023-46728", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46728" }, { "cve": "CVE-2023-4675", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-4675" }, { "cve": "CVE-2023-46751", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46751" }, { "cve": "CVE-2023-46809", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46809" }, { "cve": "CVE-2023-46846", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46846" }, { "cve": "CVE-2023-46847", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46847" }, { "cve": "CVE-2023-46848", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-46848" }, { "cve": "CVE-2023-47038", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-47038" }, { "cve": "CVE-2023-47100", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-47100" }, { "cve": "CVE-2023-48795", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-48795" }, { "cve": "CVE-2023-49285", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49285" }, { "cve": "CVE-2023-49286", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49286" }, { "cve": "CVE-2023-49288", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49288" }, { "cve": "CVE-2023-49990", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49990" }, { "cve": "CVE-2023-49991", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49991" }, { "cve": "CVE-2023-49992", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49992" }, { "cve": "CVE-2023-49993", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49993" }, { "cve": "CVE-2023-49994", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-49994" }, { "cve": "CVE-2023-50387", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-50387" }, { "cve": "CVE-2023-50447", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-50447" }, { "cve": "CVE-2023-50761", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-50761" }, { "cve": "CVE-2023-50762", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-50762" }, { "cve": "CVE-2023-50868", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-50868" }, { "cve": "CVE-2023-51384", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-51384" }, { "cve": "CVE-2023-51385", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-51385" }, { "cve": "CVE-2023-51713", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-51713" }, { "cve": "CVE-2023-51765", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-51765" }, { "cve": "CVE-2023-52355", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-52355" }, { "cve": "CVE-2023-52356", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-52356" }, { "cve": "CVE-2023-5363", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5363" }, { "cve": "CVE-2023-5367", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5367" }, { "cve": "CVE-2023-5371", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5371" }, { "cve": "CVE-2023-5380", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5380" }, { "cve": "CVE-2023-5388", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5388" }, { "cve": "CVE-2023-5517", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5517" }, { "cve": "CVE-2023-5574", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5574" }, { "cve": "CVE-2023-5679", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5679" }, { "cve": "CVE-2023-5764", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5764" }, { "cve": "CVE-2023-5824", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-5824" }, { "cve": "CVE-2023-6174", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6174" }, { "cve": "CVE-2023-6175", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6175" }, { "cve": "CVE-2023-6377", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6377" }, { "cve": "CVE-2023-6478", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6478" }, { "cve": "CVE-2023-6516", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6516" }, { "cve": "CVE-2023-6856", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6856" }, { "cve": "CVE-2023-6857", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6857" }, { "cve": "CVE-2023-6858", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6858" }, { "cve": "CVE-2023-6859", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6859" }, { "cve": "CVE-2023-6860", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6860" }, { "cve": "CVE-2023-6861", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6861" }, { "cve": "CVE-2023-6862", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6862" }, { "cve": "CVE-2023-6863", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6863" }, { "cve": "CVE-2023-6864", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6864" }, { "cve": "CVE-2023-6865", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6865" }, { "cve": "CVE-2023-6867", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2023-6867" }, { "cve": "CVE-2024-0207", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0207" }, { "cve": "CVE-2024-0208", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0208" }, { "cve": "CVE-2024-0209", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0209" }, { "cve": "CVE-2024-0210", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0210" }, { "cve": "CVE-2024-0211", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0211" }, { "cve": "CVE-2024-0727", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0727" }, { "cve": "CVE-2024-0741", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0741" }, { "cve": "CVE-2024-0742", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0742" }, { "cve": "CVE-2024-0743", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0743" }, { "cve": "CVE-2024-0746", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0746" }, { "cve": "CVE-2024-0747", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0747" }, { "cve": "CVE-2024-0749", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0749" }, { "cve": "CVE-2024-0750", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0750" }, { "cve": "CVE-2024-0751", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0751" }, { "cve": "CVE-2024-0753", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0753" }, { "cve": "CVE-2024-0755", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-0755" }, { "cve": "CVE-2024-1546", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1546" }, { "cve": "CVE-2024-1547", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1547" }, { "cve": "CVE-2024-1548", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1548" }, { "cve": "CVE-2024-1549", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1549" }, { "cve": "CVE-2024-1550", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1550" }, { "cve": "CVE-2024-1551", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1551" }, { "cve": "CVE-2024-1552", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1552" }, { "cve": "CVE-2024-1553", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-1553" }, { "cve": "CVE-2024-20999", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-20999" }, { "cve": "CVE-2024-21011", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21011" }, { "cve": "CVE-2024-21059", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21059" }, { "cve": "CVE-2024-21068", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21068" }, { "cve": "CVE-2024-21085", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21085" }, { "cve": "CVE-2024-21094", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21094" }, { "cve": "CVE-2024-21105", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21105" }, { "cve": "CVE-2024-21890", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21890" }, { "cve": "CVE-2024-21891", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21891" }, { "cve": "CVE-2024-21896", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-21896" }, { "cve": "CVE-2024-22019", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-22019" }, { "cve": "CVE-2024-22195", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-22195" }, { "cve": "CVE-2024-24680", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-24680" }, { "cve": "CVE-2024-24795", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-24795" }, { "cve": "CVE-2024-24806", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-24806" }, { "cve": "CVE-2024-25617", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-25617" }, { "cve": "CVE-2024-2605", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2605" }, { "cve": "CVE-2024-2607", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2607" }, { "cve": "CVE-2024-2608", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2608" }, { "cve": "CVE-2024-2610", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2610" }, { "cve": "CVE-2024-2611", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2611" }, { "cve": "CVE-2024-2612", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2612" }, { "cve": "CVE-2024-2614", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2614" }, { "cve": "CVE-2024-2616", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-2616" }, { "cve": "CVE-2024-27316", "notes": [ { "category": "description", "text": "In Xerox FreeFlow Print Server existieren mehrere Schwachstellen im Zusammenhang mit bekannten Schwachstellen in unter anderem OpenJDK, Apache und Mozilla Firefox. Ein Angreifer kann diese ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden." } ], "product_status": { "known_affected": [ "T035098" ] }, "release_date": "2024-05-28T22:00:00Z", "title": "CVE-2024-27316" } ] }
wid-sec-w-2024-0540
Vulnerability from csaf_certbund
Published
2024-03-04 23:00
Modified
2024-03-04 23:00
Summary
IGEL OS: Schwachstelle ermöglicht Umgehen von Sicherheitsvorkehrungen
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung
IGEL OS ist das Linux basierte Betriebssystem von IGEL Computern.
Angriff
Ein entfernter, anonymer Angreifer kann eine Schwachstelle in IGEL OS ausnutzen, um Sicherheitsvorkehrungen zu umgehen.
Betroffene Betriebssysteme
- BIOS/Firmware
{ "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": "IGEL OS ist das Linux basierte Betriebssystem von IGEL Computern.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann eine Schwachstelle in IGEL OS ausnutzen, um Sicherheitsvorkehrungen zu umgehen.", "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-0540 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-0540.json" }, { "category": "self", "summary": "WID-SEC-2024-0540 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-0540" }, { "category": "external", "summary": "IGEL Product Security Information vom 2024-03-04", "url": "https://kb.igel.com/securitysafety/en/isn-2024-04-libuv-vulnerability-117247810.html" } ], "source_lang": "en-US", "title": "IGEL OS: Schwachstelle erm\u00f6glicht Umgehen von Sicherheitsvorkehrungen", "tracking": { "current_release_date": "2024-03-04T23:00:00.000+00:00", "generator": { "date": "2024-03-05T09:00:56.499+00:00", "engine": { "name": "BSI-WID", "version": "1.3.0" } }, "id": "WID-SEC-W-2024-0540", "initial_release_date": "2024-03-04T23:00:00.000+00:00", "revision_history": [ { "date": "2024-03-04T23:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003c 12.4.1", "product": { "name": "IGEL OS \u003c 12.4.1", "product_id": "T033239", "product_identification_helper": { "cpe": "cpe:/o:igel:os:12.4.1" } } } ], "category": "product_name", "name": "OS" } ], "category": "vendor", "name": "IGEL" } ] }, "vulnerabilities": [ { "cve": "CVE-2024-24806", "notes": [ { "category": "description", "text": "Es existiert eine Schwachstelle in IGEL OS. Diese ist auf einen Fehler in der Komponente \"Libuv\" zur\u00fcckzuf\u00fchren, welche bei der Verarbeitung von Hostnames auftritt. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Sicherheitsvorkehrungen zu umgehen." } ], "release_date": "2024-03-04T23:00:00Z", "title": "CVE-2024-24806" } ] }
Loading...
Loading...
- 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.