Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2021-39134 (GCVE-0-2021-39134)
Vulnerability from cvelistv5
- CWE-61 - UNIX Symbolic Link (Symlink) Following
► | URL | Tags | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-04T01:58:17.840Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.npmjs.com/package/%40npmcli/arborist" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "arborist", "vendor": "npm", "versions": [ { "status": "affected", "version": "\u003c 2.8.2" } ] } ], "descriptions": [ { "lang": "en", "value": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above." } ], "metrics": [ { "cvssV3_1": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "NONE", "baseScore": 8.2, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-61", "description": "CWE-61: UNIX Symbolic Link (Symlink) Following", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2022-03-08T14:07:47", "orgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "shortName": "GitHub_M" }, "references": [ { "tags": [ "x_refsource_CONFIRM" ], "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "tags": [ "x_refsource_MISC" ], "url": "https://www.npmjs.com/package/%40npmcli/arborist" }, { "tags": [ "x_refsource_MISC" ], "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" } ], "source": { "advisory": "GHSA-2h3h-q99f-3fhc", "discovery": "UNKNOWN" }, "title": "UNIX Symbolic Link (Symlink) Following in @npmcli/arborist", "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2021-39134", "STATE": "PUBLIC", "TITLE": "UNIX Symbolic Link (Symlink) Following in @npmcli/arborist" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "arborist", "version": { "version_data": [ { "version_value": "\u003c 2.8.2" } ] } } ] }, "vendor_name": "npm" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above." } ] }, "impact": { "cvss": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "NONE", "baseScore": 8.2, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" } }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "CWE-61: UNIX Symbolic Link (Symlink) Following" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc", "refsource": "CONFIRM", "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "name": "https://www.npmjs.com/package/@npmcli/arborist", "refsource": "MISC", "url": "https://www.npmjs.com/package/@npmcli/arborist" }, { "name": "https://www.oracle.com/security-alerts/cpuoct2021.html", "refsource": "MISC", "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "name": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", "refsource": "CONFIRM", "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" } ] }, "source": { "advisory": "GHSA-2h3h-q99f-3fhc", "discovery": "UNKNOWN" } } } }, "cveMetadata": { "assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "assignerShortName": "GitHub_M", "cveId": "CVE-2021-39134", "datePublished": "2021-08-31T16:55:11", "dateReserved": "2021-08-16T00:00:00", "dateUpdated": "2024-08-04T01:58:17.840Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "vulnerability-lookup:meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2021-39134\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2021-08-31T17:15:08.147\",\"lastModified\":\"2024-11-21T06:18:39.567\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\\\"foo\\\": \\\"file:/some/path\\\"`. Another package, `pwn-b` could define a dependency such as `FOO: \\\"file:foo.tgz\\\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.\"},{\"lang\":\"es\",\"value\":\"\\\"@npmcli/arborist\\\", la librer\u00eda que calcula los trees de dependencia y maneja la jerarqu\u00eda de carpetas \\\"node_modules\\\" para la interfaz de l\u00ednea de comandos de npm, presenta como objetivo garantizar que los contratos de dependencia de los paquetes se cumplan, y que la extracci\u00f3n de los contenidos de los paquetes sea llevada a cabo siempre en la carpeta esperada. Esto es conseguido, en parte, al resolver los especificadores de dependencia definidos en los manifiestos \\\"package.json\\\" para las dependencias con un nombre espec\u00edfico, y anidando las carpetas para resolver las dependencias conflictivas. Cuando las dependencias m\u00faltiples difieren s\u00f3lo en el caso de su nombre, la estructura de datos interna de Arborist las ve\u00eda como elementos separados que pod\u00edan coexistir dentro del mismo nivel en la jerarqu\u00eda \\\"node_modules\\\". Sin embargo, en los sistemas de archivos que no distinguen entre may\u00fasculas y min\u00fasculas (como macOS y Windows), esto no es as\u00ed. Combinado con una dependencia de symlink como \\\"file:/some/path\\\", esto permit\u00eda a un atacante crear una situaci\u00f3n en la que se pod\u00edan escribir contenidos arbitrarios en cualquier ubicaci\u00f3n del sistema de archivos. Por ejemplo, un paquete \\\"pwn-a\\\" podr\u00eda definir una dependencia en su archivo \\\"package.json\\\" como \\\"\\\"foo\\\": \\\"file:/some/path\\\"\\\". Otro paquete, \\\"pwn-b\\\" podr\u00eda definir una dependencia como \\\"FOO: \\\"file:foo.tgz\\\"\\\". En los sistemas de archivos que no distinguen entre may\u00fasculas y min\u00fasculas, si se instalara \\\"pwn-a\\\" y luego se instalara \\\"pwn-b\\\", el contenido de \\\"foo.tgz\\\" se escribir\u00eda en \\\"/some/path\\\", y cualquier contenido existente de \\\"/some/path\\\" se eliminar\u00eda. Cualquiera usando npm versiones v7.20.6 o anteriores en un sistema de archivos que no distinga entre may\u00fasculas y min\u00fasculas est\u00e1 potencialmente afectado. Esto est\u00e1 parcheado en @npmcli/arborist 2.8.2 que se incluye en npm versiones v7.20.7 y superiores\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N\",\"baseScore\":8.2,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"REQUIRED\",\"scope\":\"CHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":1.8,\"impactScore\":5.8},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H\",\"baseScore\":7.8,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"REQUIRED\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":5.9}],\"cvssMetricV2\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"2.0\",\"vectorString\":\"AV:L/AC:M/Au:N/C:P/I:P/A:P\",\"baseScore\":4.4,\"accessVector\":\"LOCAL\",\"accessComplexity\":\"MEDIUM\",\"authentication\":\"NONE\",\"confidentialityImpact\":\"PARTIAL\",\"integrityImpact\":\"PARTIAL\",\"availabilityImpact\":\"PARTIAL\"},\"baseSeverity\":\"MEDIUM\",\"exploitabilityScore\":3.4,\"impactScore\":6.4,\"acInsufInfo\":false,\"obtainAllPrivilege\":false,\"obtainUserPrivilege\":false,\"obtainOtherPrivilege\":false,\"userInteractionRequired\":true}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-61\"}]},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-178\"}]}],\"configurations\":[{\"operator\":\"AND\",\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:npmjs:arborist:*:*:*:*:*:node.js:*:*\",\"versionEndExcluding\":\"2.8.2\",\"matchCriteriaId\":\"D3A10E91-51B2-4817-B6BD-E18383B823B9\"}]},{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":false,\"criteria\":\"cpe:2.3:a:npmjs:npm:*:*:*:*:*:*:*:*\",\"versionEndExcluding\":\"7.20.7\",\"matchCriteriaId\":\"A017D9F7-6B4C-4E21-A721-D97FD6A6330C\"}]}]},{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:oracle:graalvm:20.3.3:*:*:*:enterprise:*:*:*\",\"matchCriteriaId\":\"53B2BB06-A2F7-4603-89C3-C8500E55483A\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:oracle:graalvm:21.2.0:*:*:*:enterprise:*:*:*\",\"matchCriteriaId\":\"01E88C86-8C04-4A4A-BF45-9082AA783056\"}]}]},{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:siemens:sinec_infrastructure_network_services:*:*:*:*:*:*:*:*\",\"versionEndExcluding\":\"1.0.1.1\",\"matchCriteriaId\":\"B0F46497-4AB0-49A7-9453-CC26837BF253\"}]}]}],\"references\":[{\"url\":\"https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mitigation\",\"Third Party Advisory\"]},{\"url\":\"https://www.npmjs.com/package/%40npmcli/arborist\",\"source\":\"security-advisories@github.com\"},{\"url\":\"https://www.oracle.com/security-alerts/cpuoct2021.html\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\",\"Third Party Advisory\"]},{\"url\":\"https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Mitigation\",\"Third Party Advisory\"]},{\"url\":\"https://www.npmjs.com/package/%40npmcli/arborist\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"},{\"url\":\"https://www.oracle.com/security-alerts/cpuoct2021.html\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Third Party Advisory\"]}]}}" } }
opensuse-su-2021:3964-1
Vulnerability from csaf_opensuse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs14", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs14 fixes the following issues:\n\nnodejs14 was updated to 14.18.1:\n\n* deps: update llhttp to 2.1.4\n\n - HTTP Request Smuggling due to spaced in headers (bsc#1191601, CVE-2021-22959)\n - HTTP Request Smuggling when parsing the body (bsc#1191602, CVE-2021-22960)\n\nChanges in 14.18.0:\n\n * buffer:\n\n + introduce Blob\n + add base64url encoding option\n\n * child_process:\n\n + allow options.cwd receive a URL\n + add timeout to spawn and fork\n + allow promisified exec to be cancel\n + add \u0027overlapped\u0027 stdio flag\n\n * dns: add \u0027tries\u0027 option to Resolve options\n * fs:\n\n + allow empty string for temp directory prefix\n + allow no-params fsPromises fileHandle read\n + add support for async iterators to fsPromises.writeFile\n\n * http2: add support for sensitive headers\n * process: add \u0027worker\u0027 event\n * tls: allow reading data into a static buffer\n * worker: add setEnvironmentData/getEnvironmentData\n\nChanges in 14.17.6\n\n * deps: upgrade npm to 6.14.15 which fixes a number of\n security issues\n (bsc#1190057, CVE-2021-37701, bsc#1190056, CVE-2021-37712,\n bsc#1190055, CVE-2021-37713, bsc#1190054, CVE-2021-39134,\n bsc#1190053, CVE-2021-39135)\n", "title": "Description of the patch" }, { "category": "details", "text": "openSUSE-SLE-15.3-2021-3964", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2021_3964-1.json" }, { "category": "self", "summary": "URL for openSUSE-SU-2021:3964-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/EB6I33SJCMQ2K7LAKKPS54HRXSB7FQXG/" }, { "category": "self", "summary": "E-Mail link for openSUSE-SU-2021:3964-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/EB6I33SJCMQ2K7LAKKPS54HRXSB7FQXG/" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs14", "tracking": { "current_release_date": "2021-12-07T07:57:43Z", "generator": { "date": "2021-12-07T07:57:43Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "openSUSE-SU-2021:3964-1", "initial_release_date": "2021-12-07T07:57:43Z", "revision_history": [ { "date": "2021-12-07T07:57:43Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.aarch64", "product": { "name": "nodejs14-14.18.1-15.21.2.aarch64", "product_id": "nodejs14-14.18.1-15.21.2.aarch64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.aarch64", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.aarch64", "product_id": "nodejs14-devel-14.18.1-15.21.2.aarch64" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.aarch64", "product": { "name": "npm14-14.18.1-15.21.2.aarch64", "product_id": "npm14-14.18.1-15.21.2.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "nodejs14-docs-14.18.1-15.21.2.noarch", "product": { "name": "nodejs14-docs-14.18.1-15.21.2.noarch", "product_id": "nodejs14-docs-14.18.1-15.21.2.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.ppc64le", "product": { "name": "nodejs14-14.18.1-15.21.2.ppc64le", "product_id": "nodejs14-14.18.1-15.21.2.ppc64le" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "product_id": "nodejs14-devel-14.18.1-15.21.2.ppc64le" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.ppc64le", "product": { "name": "npm14-14.18.1-15.21.2.ppc64le", "product_id": "npm14-14.18.1-15.21.2.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.s390x", "product": { "name": "nodejs14-14.18.1-15.21.2.s390x", "product_id": "nodejs14-14.18.1-15.21.2.s390x" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.s390x", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.s390x", "product_id": "nodejs14-devel-14.18.1-15.21.2.s390x" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.s390x", "product": { "name": "npm14-14.18.1-15.21.2.s390x", "product_id": "npm14-14.18.1-15.21.2.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.x86_64", "product": { "name": "nodejs14-14.18.1-15.21.2.x86_64", "product_id": "nodejs14-14.18.1-15.21.2.x86_64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.x86_64", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.x86_64", "product_id": "nodejs14-devel-14.18.1-15.21.2.x86_64" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.x86_64", "product": { "name": "npm14-14.18.1-15.21.2.x86_64", "product_id": "npm14-14.18.1-15.21.2.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "openSUSE Leap 15.3", "product": { "name": "openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.3" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64" }, "product_reference": "nodejs14-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le" }, "product_reference": "nodejs14-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x" }, "product_reference": "nodejs14-14.18.1-15.21.2.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64" }, "product_reference": "nodejs14-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-docs-14.18.1-15.21.2.noarch as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch" }, "product_reference": "nodejs14-docs-14.18.1-15.21.2.noarch", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64" }, "product_reference": "npm14-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le" }, "product_reference": "npm14-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x" }, "product_reference": "npm14-14.18.1-15.21.2.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" }, "product_reference": "npm14-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:nodejs14-devel-14.18.1-15.21.2.x86_64", "openSUSE Leap 15.3:nodejs14-docs-14.18.1-15.21.2.noarch", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.aarch64", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.ppc64le", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.s390x", "openSUSE Leap 15.3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:43Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
opensuse-su-2021:1574-1
Vulnerability from csaf_opensuse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs12", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs12 fixes the following issues:\n\n- CVE-2021-22959: Fixed HTTP Request Smuggling due to spaced in headers (bsc#1191601).\n- CVE-2021-22960: Fixed HTTP Request Smuggling when parsing the body (bsc#1191602).\n- CVE-2021-37701: Fixed arbitrary file creation and overwrite in nodejs-tar (bsc#1190057). \n- CVE-2021-37712: Fixed arbitrary file creation and overwrite in nodejs-tar (bsc#1190056). \n- CVE-2021-37713: Fixed arbitrary code execution and file creation and overwrite in nodejs-tar (bsc#1190055). \n- CVE-2021-39134: Fixed symling following vulnerability in nodejs-arborist (bsc#1190054). \n- CVE-2021-39135: Fixed symling following vulnerability in nodejs-arborist (bsc#1190053). \n\nThis update was imported from the SUSE:SLE-15-SP2:Update update project.", "title": "Description of the patch" }, { "category": "details", "text": "openSUSE-2021-1574", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2021_1574-1.json" }, { "category": "self", "summary": "URL for openSUSE-SU-2021:1574-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/OZ6MU5ASKOGKZBGVKFFXVB64PMZRVEPX/" }, { "category": "self", "summary": "E-Mail link for openSUSE-SU-2021:1574-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/OZ6MU5ASKOGKZBGVKFFXVB64PMZRVEPX/" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs12", "tracking": { "current_release_date": "2021-12-12T01:19:11Z", "generator": { "date": "2021-12-12T01:19:11Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "openSUSE-SU-2021:1574-1", "initial_release_date": "2021-12-12T01:19:11Z", "revision_history": [ { "date": "2021-12-12T01:19:11Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-lp152.3.21.1.i586", "product": { "name": "nodejs12-12.22.7-lp152.3.21.1.i586", "product_id": "nodejs12-12.22.7-lp152.3.21.1.i586" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-lp152.3.21.1.i586", "product": { "name": "nodejs12-devel-12.22.7-lp152.3.21.1.i586", "product_id": "nodejs12-devel-12.22.7-lp152.3.21.1.i586" } }, { "category": "product_version", "name": "npm12-12.22.7-lp152.3.21.1.i586", "product": { "name": "npm12-12.22.7-lp152.3.21.1.i586", "product_id": "npm12-12.22.7-lp152.3.21.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "product": { "name": "nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "product_id": "nodejs12-docs-12.22.7-lp152.3.21.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-lp152.3.21.1.x86_64", "product": { "name": "nodejs12-12.22.7-lp152.3.21.1.x86_64", "product_id": "nodejs12-12.22.7-lp152.3.21.1.x86_64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "product": { "name": "nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "product_id": "nodejs12-devel-12.22.7-lp152.3.21.1.x86_64" } }, { "category": "product_version", "name": "npm12-12.22.7-lp152.3.21.1.x86_64", "product": { "name": "npm12-12.22.7-lp152.3.21.1.x86_64", "product_id": "npm12-12.22.7-lp152.3.21.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "openSUSE Leap 15.2", "product": { "name": "openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.2" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-lp152.3.21.1.i586 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586" }, "product_reference": "nodejs12-12.22.7-lp152.3.21.1.i586", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-lp152.3.21.1.x86_64 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64" }, "product_reference": "nodejs12-12.22.7-lp152.3.21.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-lp152.3.21.1.i586 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586" }, "product_reference": "nodejs12-devel-12.22.7-lp152.3.21.1.i586", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-lp152.3.21.1.x86_64 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64" }, "product_reference": "nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-docs-12.22.7-lp152.3.21.1.noarch as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch" }, "product_reference": "nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-lp152.3.21.1.i586 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586" }, "product_reference": "npm12-12.22.7-lp152.3.21.1.i586", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-lp152.3.21.1.x86_64 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" }, "product_reference": "npm12-12.22.7-lp152.3.21.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.2" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:nodejs12-devel-12.22.7-lp152.3.21.1.x86_64", "openSUSE Leap 15.2:nodejs12-docs-12.22.7-lp152.3.21.1.noarch", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.i586", "openSUSE Leap 15.2:npm12-12.22.7-lp152.3.21.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-12T01:19:11Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
opensuse-su-2021:1552-1
Vulnerability from csaf_opensuse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs14", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs14 fixes the following issues:\n\nnodejs14 was updated to 14.18.1:\n\n* deps: update llhttp to 2.1.4\n\n - HTTP Request Smuggling due to spaced in headers (bsc#1191601, CVE-2021-22959)\n - HTTP Request Smuggling when parsing the body (bsc#1191602, CVE-2021-22960)\n\nChanges in 14.18.0:\n\n * buffer:\n\n + introduce Blob\n + add base64url encoding option\n\n * child_process:\n\n + allow options.cwd receive a URL\n + add timeout to spawn and fork\n + allow promisified exec to be cancel\n + add \u0027overlapped\u0027 stdio flag\n\n * dns: add \u0027tries\u0027 option to Resolve options\n * fs:\n\n + allow empty string for temp directory prefix\n + allow no-params fsPromises fileHandle read\n + add support for async iterators to fsPromises.writeFile\n\n * http2: add support for sensitive headers\n * process: add \u0027worker\u0027 event\n * tls: allow reading data into a static buffer\n * worker: add setEnvironmentData/getEnvironmentData\n\nChanges in 14.17.6\n\n * deps: upgrade npm to 6.14.15 which fixes a number of\n security issues\n (bsc#1190057, CVE-2021-37701, bsc#1190056, CVE-2021-37712,\n bsc#1190055, CVE-2021-37713, bsc#1190054, CVE-2021-39134,\n bsc#1190053, CVE-2021-39135)\n\nThis update was imported from the SUSE:SLE-15-SP2:Update update project.", "title": "Description of the patch" }, { "category": "details", "text": "openSUSE-2021-1552", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2021_1552-1.json" }, { "category": "self", "summary": "URL for openSUSE-SU-2021:1552-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/INKZHV64GX7LRVL3YYOERQLU3B3U47QD/" }, { "category": "self", "summary": "E-Mail link for openSUSE-SU-2021:1552-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/INKZHV64GX7LRVL3YYOERQLU3B3U47QD/" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs14", "tracking": { "current_release_date": "2021-12-10T09:43:16Z", "generator": { "date": "2021-12-10T09:43:16Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "openSUSE-SU-2021:1552-1", "initial_release_date": "2021-12-10T09:43:16Z", "revision_history": [ { "date": "2021-12-10T09:43:16Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs14-docs-14.18.1-lp152.17.1.noarch", "product": { "name": "nodejs14-docs-14.18.1-lp152.17.1.noarch", "product_id": "nodejs14-docs-14.18.1-lp152.17.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-lp152.17.1.x86_64", "product": { "name": "nodejs14-14.18.1-lp152.17.1.x86_64", "product_id": "nodejs14-14.18.1-lp152.17.1.x86_64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-lp152.17.1.x86_64", "product": { "name": "nodejs14-devel-14.18.1-lp152.17.1.x86_64", "product_id": "nodejs14-devel-14.18.1-lp152.17.1.x86_64" } }, { "category": "product_version", "name": "npm14-14.18.1-lp152.17.1.x86_64", "product": { "name": "npm14-14.18.1-lp152.17.1.x86_64", "product_id": "npm14-14.18.1-lp152.17.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "openSUSE Leap 15.2", "product": { "name": "openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.2" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-lp152.17.1.x86_64 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64" }, "product_reference": "nodejs14-14.18.1-lp152.17.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-lp152.17.1.x86_64 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64" }, "product_reference": "nodejs14-devel-14.18.1-lp152.17.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-docs-14.18.1-lp152.17.1.noarch as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch" }, "product_reference": "nodejs14-docs-14.18.1-lp152.17.1.noarch", "relates_to_product_reference": "openSUSE Leap 15.2" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-lp152.17.1.x86_64 as component of openSUSE Leap 15.2", "product_id": "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" }, "product_reference": "npm14-14.18.1-lp152.17.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.2" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.2:nodejs14-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-devel-14.18.1-lp152.17.1.x86_64", "openSUSE Leap 15.2:nodejs14-docs-14.18.1-lp152.17.1.noarch", "openSUSE Leap 15.2:npm14-14.18.1-lp152.17.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-10T09:43:16Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
opensuse-su-2021:3940-1
Vulnerability from csaf_opensuse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs12", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs12 fixes the following issues:\n\n- CVE-2021-22959: Fixed HTTP Request Smuggling due to spaced in headers (bsc#1191601).\n- CVE-2021-22960: Fixed HTTP Request Smuggling when parsing the body (bsc#1191602).\n- CVE-2021-37701: Fixed arbitrary file creation and overwrite in nodejs-tar (bsc#1190057). \n- CVE-2021-37712: Fixed arbitrary file creation and overwrite in nodejs-tar (bsc#1190056). \n- CVE-2021-37713: Fixed arbitrary code execution and file creation and overwrite in nodejs-tar (bsc#1190055). \n- CVE-2021-39134: Fixed symling following vulnerability in nodejs-arborist (bsc#1190054). \n- CVE-2021-39135: Fixed symling following vulnerability in nodejs-arborist (bsc#1190053). \n", "title": "Description of the patch" }, { "category": "details", "text": "openSUSE-SLE-15.3-2021-3940", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2021_3940-1.json" }, { "category": "self", "summary": "URL for openSUSE-SU-2021:3940-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LB7JXCGGW7EKOPAS4IDMUQPYHXS3ZUZA/" }, { "category": "self", "summary": "E-Mail link for openSUSE-SU-2021:3940-1", "url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/LB7JXCGGW7EKOPAS4IDMUQPYHXS3ZUZA/" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs12", "tracking": { "current_release_date": "2021-12-06T13:43:51Z", "generator": { "date": "2021-12-06T13:43:51Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "openSUSE-SU-2021:3940-1", "initial_release_date": "2021-12-06T13:43:51Z", "revision_history": [ { "date": "2021-12-06T13:43:51Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.aarch64", "product": { "name": "nodejs12-12.22.7-4.22.1.aarch64", "product_id": "nodejs12-12.22.7-4.22.1.aarch64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.aarch64", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.aarch64", "product_id": "nodejs12-devel-12.22.7-4.22.1.aarch64" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.aarch64", "product": { "name": "npm12-12.22.7-4.22.1.aarch64", "product_id": "npm12-12.22.7-4.22.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "nodejs12-docs-12.22.7-4.22.1.noarch", "product": { "name": "nodejs12-docs-12.22.7-4.22.1.noarch", "product_id": "nodejs12-docs-12.22.7-4.22.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.ppc64le", "product": { "name": "nodejs12-12.22.7-4.22.1.ppc64le", "product_id": "nodejs12-12.22.7-4.22.1.ppc64le" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "product_id": "nodejs12-devel-12.22.7-4.22.1.ppc64le" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.ppc64le", "product": { "name": "npm12-12.22.7-4.22.1.ppc64le", "product_id": "npm12-12.22.7-4.22.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.s390x", "product": { "name": "nodejs12-12.22.7-4.22.1.s390x", "product_id": "nodejs12-12.22.7-4.22.1.s390x" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.s390x", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.s390x", "product_id": "nodejs12-devel-12.22.7-4.22.1.s390x" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.s390x", "product": { "name": "npm12-12.22.7-4.22.1.s390x", "product_id": "npm12-12.22.7-4.22.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.x86_64", "product": { "name": "nodejs12-12.22.7-4.22.1.x86_64", "product_id": "nodejs12-12.22.7-4.22.1.x86_64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.x86_64", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.x86_64", "product_id": "nodejs12-devel-12.22.7-4.22.1.x86_64" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.x86_64", "product": { "name": "npm12-12.22.7-4.22.1.x86_64", "product_id": "npm12-12.22.7-4.22.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "openSUSE Leap 15.3", "product": { "name": "openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.3" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64" }, "product_reference": "nodejs12-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le" }, "product_reference": "nodejs12-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x" }, "product_reference": "nodejs12-12.22.7-4.22.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64" }, "product_reference": "nodejs12-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-docs-12.22.7-4.22.1.noarch as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch" }, "product_reference": "nodejs12-docs-12.22.7-4.22.1.noarch", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64" }, "product_reference": "npm12-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le" }, "product_reference": "npm12-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x" }, "product_reference": "npm12-12.22.7-4.22.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" }, "product_reference": "npm12-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:nodejs12-devel-12.22.7-4.22.1.x86_64", "openSUSE Leap 15.3:nodejs12-docs-12.22.7-4.22.1.noarch", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.aarch64", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.ppc64le", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.s390x", "openSUSE Leap 15.3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:51Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
suse-su-2021:3964-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs14", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs14 fixes the following issues:\n\nnodejs14 was updated to 14.18.1:\n\n* deps: update llhttp to 2.1.4\n\n - HTTP Request Smuggling due to spaced in headers (bsc#1191601, CVE-2021-22959)\n - HTTP Request Smuggling when parsing the body (bsc#1191602, CVE-2021-22960)\n\nChanges in 14.18.0:\n\n * buffer:\n\n + introduce Blob\n + add base64url encoding option\n\n * child_process:\n\n + allow options.cwd receive a URL\n + add timeout to spawn and fork\n + allow promisified exec to be cancel\n + add \u0027overlapped\u0027 stdio flag\n\n * dns: add \u0027tries\u0027 option to Resolve options\n * fs:\n\n + allow empty string for temp directory prefix\n + allow no-params fsPromises fileHandle read\n + add support for async iterators to fsPromises.writeFile\n\n * http2: add support for sensitive headers\n * process: add \u0027worker\u0027 event\n * tls: allow reading data into a static buffer\n * worker: add setEnvironmentData/getEnvironmentData\n\nChanges in 14.17.6\n\n * deps: upgrade npm to 6.14.15 which fixes a number of\n security issues\n (bsc#1190057, CVE-2021-37701, bsc#1190056, CVE-2021-37712,\n bsc#1190055, CVE-2021-37713, bsc#1190054, CVE-2021-39134,\n bsc#1190053, CVE-2021-39135)\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2021-3964,SUSE-SLE-Module-Web-Scripting-15-SP2-2021-3964,SUSE-SLE-Module-Web-Scripting-15-SP3-2021-3964", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2021_3964-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2021:3964-1", "url": "https://www.suse.com/support/update/announcement/2021/suse-su-20213964-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2021:3964-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2021-December/009869.html" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs14", "tracking": { "current_release_date": "2021-12-07T07:57:42Z", "generator": { "date": "2021-12-07T07:57:42Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2021:3964-1", "initial_release_date": "2021-12-07T07:57:42Z", "revision_history": [ { "date": "2021-12-07T07:57:42Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.aarch64", "product": { "name": "nodejs14-14.18.1-15.21.2.aarch64", "product_id": "nodejs14-14.18.1-15.21.2.aarch64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.aarch64", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.aarch64", "product_id": "nodejs14-devel-14.18.1-15.21.2.aarch64" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.aarch64", "product": { "name": "npm14-14.18.1-15.21.2.aarch64", "product_id": "npm14-14.18.1-15.21.2.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.i586", "product": { "name": "nodejs14-14.18.1-15.21.2.i586", "product_id": "nodejs14-14.18.1-15.21.2.i586" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.i586", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.i586", "product_id": "nodejs14-devel-14.18.1-15.21.2.i586" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.i586", "product": { "name": "npm14-14.18.1-15.21.2.i586", "product_id": "npm14-14.18.1-15.21.2.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs14-docs-14.18.1-15.21.2.noarch", "product": { "name": "nodejs14-docs-14.18.1-15.21.2.noarch", "product_id": "nodejs14-docs-14.18.1-15.21.2.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.ppc64le", "product": { "name": "nodejs14-14.18.1-15.21.2.ppc64le", "product_id": "nodejs14-14.18.1-15.21.2.ppc64le" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "product_id": "nodejs14-devel-14.18.1-15.21.2.ppc64le" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.ppc64le", "product": { "name": "npm14-14.18.1-15.21.2.ppc64le", "product_id": "npm14-14.18.1-15.21.2.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.s390x", "product": { "name": "nodejs14-14.18.1-15.21.2.s390x", "product_id": "nodejs14-14.18.1-15.21.2.s390x" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.s390x", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.s390x", "product_id": "nodejs14-devel-14.18.1-15.21.2.s390x" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.s390x", "product": { "name": "npm14-14.18.1-15.21.2.s390x", "product_id": "npm14-14.18.1-15.21.2.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-15.21.2.x86_64", "product": { "name": "nodejs14-14.18.1-15.21.2.x86_64", "product_id": "nodejs14-14.18.1-15.21.2.x86_64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-15.21.2.x86_64", "product": { "name": "nodejs14-devel-14.18.1-15.21.2.x86_64", "product_id": "nodejs14-devel-14.18.1-15.21.2.x86_64" } }, { "category": "product_version", "name": "npm14-14.18.1-15.21.2.x86_64", "product": { "name": "npm14-14.18.1-15.21.2.x86_64", "product_id": "npm14-14.18.1-15.21.2.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp2" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp3" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64" }, "product_reference": "nodejs14-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le" }, "product_reference": "nodejs14-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x" }, "product_reference": "nodejs14-14.18.1-15.21.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64" }, "product_reference": "nodejs14-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-docs-14.18.1-15.21.2.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch" }, "product_reference": "nodejs14-docs-14.18.1-15.21.2.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64" }, "product_reference": "npm14-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le" }, "product_reference": "npm14-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x" }, "product_reference": "npm14-14.18.1-15.21.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64" }, "product_reference": "npm14-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64" }, "product_reference": "nodejs14-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le" }, "product_reference": "nodejs14-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x" }, "product_reference": "nodejs14-14.18.1-15.21.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-15.21.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64" }, "product_reference": "nodejs14-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-15.21.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64" }, "product_reference": "nodejs14-devel-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-docs-14.18.1-15.21.2.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch" }, "product_reference": "nodejs14-docs-14.18.1-15.21.2.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64" }, "product_reference": "npm14-14.18.1-15.21.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le" }, "product_reference": "npm14-14.18.1-15.21.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x" }, "product_reference": "npm14-14.18.1-15.21.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-15.21.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" }, "product_reference": "npm14-14.18.1-15.21.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-devel-14.18.1-15.21.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs14-docs-14.18.1-15.21.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm14-14.18.1-15.21.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-07T07:57:42Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
suse-su-2021:3940-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs12", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs12 fixes the following issues:\n\n- CVE-2021-22959: Fixed HTTP Request Smuggling due to spaced in headers (bsc#1191601).\n- CVE-2021-22960: Fixed HTTP Request Smuggling when parsing the body (bsc#1191602).\n- CVE-2021-37701: Fixed arbitrary file creation and overwrite in nodejs-tar (bsc#1190057). \n- CVE-2021-37712: Fixed arbitrary file creation and overwrite in nodejs-tar (bsc#1190056). \n- CVE-2021-37713: Fixed arbitrary code execution and file creation and overwrite in nodejs-tar (bsc#1190055). \n- CVE-2021-39134: Fixed symling following vulnerability in nodejs-arborist (bsc#1190054). \n- CVE-2021-39135: Fixed symling following vulnerability in nodejs-arborist (bsc#1190053). \n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2021-3940,SUSE-SLE-Module-Web-Scripting-15-SP2-2021-3940,SUSE-SLE-Module-Web-Scripting-15-SP3-2021-3940", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2021_3940-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2021:3940-1", "url": "https://www.suse.com/support/update/announcement/2021/suse-su-20213940-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2021:3940-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2021-December/009853.html" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs12", "tracking": { "current_release_date": "2021-12-06T13:43:50Z", "generator": { "date": "2021-12-06T13:43:50Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2021:3940-1", "initial_release_date": "2021-12-06T13:43:50Z", "revision_history": [ { "date": "2021-12-06T13:43:50Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.aarch64", "product": { "name": "nodejs12-12.22.7-4.22.1.aarch64", "product_id": "nodejs12-12.22.7-4.22.1.aarch64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.aarch64", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.aarch64", "product_id": "nodejs12-devel-12.22.7-4.22.1.aarch64" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.aarch64", "product": { "name": "npm12-12.22.7-4.22.1.aarch64", "product_id": "npm12-12.22.7-4.22.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.i586", "product": { "name": "nodejs12-12.22.7-4.22.1.i586", "product_id": "nodejs12-12.22.7-4.22.1.i586" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.i586", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.i586", "product_id": "nodejs12-devel-12.22.7-4.22.1.i586" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.i586", "product": { "name": "npm12-12.22.7-4.22.1.i586", "product_id": "npm12-12.22.7-4.22.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs12-docs-12.22.7-4.22.1.noarch", "product": { "name": "nodejs12-docs-12.22.7-4.22.1.noarch", "product_id": "nodejs12-docs-12.22.7-4.22.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.ppc64le", "product": { "name": "nodejs12-12.22.7-4.22.1.ppc64le", "product_id": "nodejs12-12.22.7-4.22.1.ppc64le" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "product_id": "nodejs12-devel-12.22.7-4.22.1.ppc64le" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.ppc64le", "product": { "name": "npm12-12.22.7-4.22.1.ppc64le", "product_id": "npm12-12.22.7-4.22.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.s390x", "product": { "name": "nodejs12-12.22.7-4.22.1.s390x", "product_id": "nodejs12-12.22.7-4.22.1.s390x" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.s390x", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.s390x", "product_id": "nodejs12-devel-12.22.7-4.22.1.s390x" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.s390x", "product": { "name": "npm12-12.22.7-4.22.1.s390x", "product_id": "npm12-12.22.7-4.22.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.7-4.22.1.x86_64", "product": { "name": "nodejs12-12.22.7-4.22.1.x86_64", "product_id": "nodejs12-12.22.7-4.22.1.x86_64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.7-4.22.1.x86_64", "product": { "name": "nodejs12-devel-12.22.7-4.22.1.x86_64", "product_id": "nodejs12-devel-12.22.7-4.22.1.x86_64" } }, { "category": "product_version", "name": "npm12-12.22.7-4.22.1.x86_64", "product": { "name": "npm12-12.22.7-4.22.1.x86_64", "product_id": "npm12-12.22.7-4.22.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp2" } } }, { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp3" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64" }, "product_reference": "nodejs12-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le" }, "product_reference": "nodejs12-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x" }, "product_reference": "nodejs12-12.22.7-4.22.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64" }, "product_reference": "nodejs12-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-docs-12.22.7-4.22.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch" }, "product_reference": "nodejs12-docs-12.22.7-4.22.1.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64" }, "product_reference": "npm12-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le" }, "product_reference": "npm12-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x" }, "product_reference": "npm12-12.22.7-4.22.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP2", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64" }, "product_reference": "npm12-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP2" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64" }, "product_reference": "nodejs12-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le" }, "product_reference": "nodejs12-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x" }, "product_reference": "nodejs12-12.22.7-4.22.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.7-4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64" }, "product_reference": "nodejs12-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.7-4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64" }, "product_reference": "nodejs12-devel-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-docs-12.22.7-4.22.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch" }, "product_reference": "nodejs12-docs-12.22.7-4.22.1.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64" }, "product_reference": "npm12-12.22.7-4.22.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le" }, "product_reference": "npm12-12.22.7-4.22.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x" }, "product_reference": "npm12-12.22.7-4.22.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.7-4.22.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" }, "product_reference": "npm12-12.22.7-4.22.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP2:npm12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-devel-12.22.7-4.22.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs12-docs-12.22.7-4.22.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm12-12.22.7-4.22.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-06T13:43:50Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
suse-su-2021:3886-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs14", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs14 fixes the following issues:\n\nnodejs14 was updated to 14.18.1:\n\n* deps: update llhttp to 2.1.4\n\nSecurity fixes:\n\n- HTTP Request Smuggling due to spaced in headers (bsc#1191601, CVE-2021-22959)\n- HTTP Request Smuggling when parsing the body (bsc#1191602, CVE-2021-22960)\n\nChanges in 14.18.0:\n\n * buffer:\n\n + introduce Blob\n + add base64url encoding option\n\n * child_process:\n\n + allow options.cwd receive a URL\n + add timeout to spawn and fork\n + allow promisified exec to be cancel\n + add \u0027overlapped\u0027 stdio flag\n\n * dns: add \u0027tries\u0027 option to Resolve options\n * fs:\n\n + allow empty string for temp directory prefix\n + allow no-params fsPromises fileHandle read\n + add support for async iterators to fsPromises.writeFile\n\n * http2: add support for sensitive headers\n * process: add \u0027worker\u0027 event\n * tls: allow reading data into a static buffer\n * worker: add setEnvironmentData/getEnvironmentData\n\nChanges in 14.17.6:\n\n * deps: upgrade npm to 6.14.15 which fixes a number of\n security issues\n (bsc#1190057, CVE-2021-37701, bsc#1190056, CVE-2021-37712,\n bsc#1190055, CVE-2021-37713, bsc#1190054, CVE-2021-39134,\n bsc#1190053, CVE-2021-39135)\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2021-3886,SUSE-SLE-Module-Web-Scripting-12-2021-3886", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2021_3886-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2021:3886-1", "url": "https://www.suse.com/support/update/announcement/2021/suse-su-20213886-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2021:3886-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2021-December/009816.html" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" } ], "title": "Security update for nodejs14", "tracking": { "current_release_date": "2021-12-02T12:51:24Z", "generator": { "date": "2021-12-02T12:51:24Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2021:3886-1", "initial_release_date": "2021-12-02T12:51:24Z", "revision_history": [ { "date": "2021-12-02T12:51:24Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-6.18.2.aarch64", "product": { "name": "nodejs14-14.18.1-6.18.2.aarch64", "product_id": "nodejs14-14.18.1-6.18.2.aarch64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-6.18.2.aarch64", "product": { "name": "nodejs14-devel-14.18.1-6.18.2.aarch64", "product_id": "nodejs14-devel-14.18.1-6.18.2.aarch64" } }, { "category": "product_version", "name": "npm14-14.18.1-6.18.2.aarch64", "product": { "name": "npm14-14.18.1-6.18.2.aarch64", "product_id": "npm14-14.18.1-6.18.2.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-6.18.2.i586", "product": { "name": "nodejs14-14.18.1-6.18.2.i586", "product_id": "nodejs14-14.18.1-6.18.2.i586" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-6.18.2.i586", "product": { "name": "nodejs14-devel-14.18.1-6.18.2.i586", "product_id": "nodejs14-devel-14.18.1-6.18.2.i586" } }, { "category": "product_version", "name": "npm14-14.18.1-6.18.2.i586", "product": { "name": "npm14-14.18.1-6.18.2.i586", "product_id": "npm14-14.18.1-6.18.2.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs14-docs-14.18.1-6.18.2.noarch", "product": { "name": "nodejs14-docs-14.18.1-6.18.2.noarch", "product_id": "nodejs14-docs-14.18.1-6.18.2.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-6.18.2.ppc64le", "product": { "name": "nodejs14-14.18.1-6.18.2.ppc64le", "product_id": "nodejs14-14.18.1-6.18.2.ppc64le" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-6.18.2.ppc64le", "product": { "name": "nodejs14-devel-14.18.1-6.18.2.ppc64le", "product_id": "nodejs14-devel-14.18.1-6.18.2.ppc64le" } }, { "category": "product_version", "name": "npm14-14.18.1-6.18.2.ppc64le", "product": { "name": "npm14-14.18.1-6.18.2.ppc64le", "product_id": "npm14-14.18.1-6.18.2.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-6.18.2.s390x", "product": { "name": "nodejs14-14.18.1-6.18.2.s390x", "product_id": "nodejs14-14.18.1-6.18.2.s390x" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-6.18.2.s390x", "product": { "name": "nodejs14-devel-14.18.1-6.18.2.s390x", "product_id": "nodejs14-devel-14.18.1-6.18.2.s390x" } }, { "category": "product_version", "name": "npm14-14.18.1-6.18.2.s390x", "product": { "name": "npm14-14.18.1-6.18.2.s390x", "product_id": "npm14-14.18.1-6.18.2.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "nodejs14-14.18.1-6.18.2.x86_64", "product": { "name": "nodejs14-14.18.1-6.18.2.x86_64", "product_id": "nodejs14-14.18.1-6.18.2.x86_64" } }, { "category": "product_version", "name": "nodejs14-devel-14.18.1-6.18.2.x86_64", "product": { "name": "nodejs14-devel-14.18.1-6.18.2.x86_64", "product_id": "nodejs14-devel-14.18.1-6.18.2.x86_64" } }, { "category": "product_version", "name": "npm14-14.18.1-6.18.2.x86_64", "product": { "name": "npm14-14.18.1-6.18.2.x86_64", "product_id": "npm14-14.18.1-6.18.2.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 12", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:12" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-6.18.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64" }, "product_reference": "nodejs14-14.18.1-6.18.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-6.18.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le" }, "product_reference": "nodejs14-14.18.1-6.18.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-6.18.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x" }, "product_reference": "nodejs14-14.18.1-6.18.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-14.18.1-6.18.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64" }, "product_reference": "nodejs14-14.18.1-6.18.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-6.18.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64" }, "product_reference": "nodejs14-devel-14.18.1-6.18.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-6.18.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le" }, "product_reference": "nodejs14-devel-14.18.1-6.18.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-6.18.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x" }, "product_reference": "nodejs14-devel-14.18.1-6.18.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-devel-14.18.1-6.18.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64" }, "product_reference": "nodejs14-devel-14.18.1-6.18.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs14-docs-14.18.1-6.18.2.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch" }, "product_reference": "nodejs14-docs-14.18.1-6.18.2.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-6.18.2.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64" }, "product_reference": "npm14-14.18.1-6.18.2.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-6.18.2.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le" }, "product_reference": "npm14-14.18.1-6.18.2.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-6.18.2.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x" }, "product_reference": "npm14-14.18.1-6.18.2.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm14-14.18.1-6.18.2.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" }, "product_reference": "npm14-14.18.1-6.18.2.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-devel-14.18.1-6.18.2.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs14-docs-14.18.1-6.18.2.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm14-14.18.1-6.18.2.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2021-12-02T12:51:24Z", "details": "important" } ], "title": "CVE-2021-39135" } ] }
suse-su-2022:0101-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "important" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs12", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs12 fixes the following issues:\n\n- CVE-2021-44531: Fixed improper handling of URI Subject Alternative Names (bsc#1194511).\n- CVE-2021-44532: Fixed certificate Verification Bypass via String Injection (bsc#1194512).\n- CVE-2021-44533: Fixed incorrect handling of certificate subject and issuer fields (bsc#1194513).\n- CVE-2022-21824: Fixed prototype pollution via console.table properties (bsc#1194514).\n- CVE-2021-22959: Fixed HTTP Request Smuggling due to spaced in headers(bsc#1191601).\n- CVE-2021-22960: Fixed HTTP Request Smuggling when parsing the body (bsc#1191602).\n- CVE-2021-37701: Fixed arbitrary file creation and overwrite vulnerability in nodejs-tar (bsc#1190057).\n- CVE-2021-37712: Fixed arbitrary file creation and overwrite vulnerability in nodejs-tar (bsc#1190056).\n- CVE-2021-37713: Fixed arbitrary file creation/overwrite and arbitrary code execution vulnerability in nodejs-tar (bsc#1190055).\n- CVE-2021-39134: Fixed symlink following vulnerability in nodejs-arborist (bsc#1190054).\n- CVE-2021-39135: Fixed symlink following vulnerability in nodejs-arborist (bsc#1190053).\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2022-101,SUSE-SLE-Module-Web-Scripting-12-2022-101", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2022_0101-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2022:0101-1", "url": "https://www.suse.com/support/update/announcement/2022/suse-su-20220101-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2022:0101-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-January/010017.html" }, { "category": "self", "summary": "SUSE Bug 1190053", "url": "https://bugzilla.suse.com/1190053" }, { "category": "self", "summary": "SUSE Bug 1190054", "url": "https://bugzilla.suse.com/1190054" }, { "category": "self", "summary": "SUSE Bug 1190055", "url": "https://bugzilla.suse.com/1190055" }, { "category": "self", "summary": "SUSE Bug 1190056", "url": "https://bugzilla.suse.com/1190056" }, { "category": "self", "summary": "SUSE Bug 1190057", "url": "https://bugzilla.suse.com/1190057" }, { "category": "self", "summary": "SUSE Bug 1191601", "url": "https://bugzilla.suse.com/1191601" }, { "category": "self", "summary": "SUSE Bug 1191602", "url": "https://bugzilla.suse.com/1191602" }, { "category": "self", "summary": "SUSE Bug 1194511", "url": "https://bugzilla.suse.com/1194511" }, { "category": "self", "summary": "SUSE Bug 1194512", "url": "https://bugzilla.suse.com/1194512" }, { "category": "self", "summary": "SUSE Bug 1194513", "url": "https://bugzilla.suse.com/1194513" }, { "category": "self", "summary": "SUSE Bug 1194514", "url": "https://bugzilla.suse.com/1194514" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22959 page", "url": "https://www.suse.com/security/cve/CVE-2021-22959/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-22960 page", "url": "https://www.suse.com/security/cve/CVE-2021-22960/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37701 page", "url": "https://www.suse.com/security/cve/CVE-2021-37701/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37712 page", "url": "https://www.suse.com/security/cve/CVE-2021-37712/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-37713 page", "url": "https://www.suse.com/security/cve/CVE-2021-37713/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39134 page", "url": "https://www.suse.com/security/cve/CVE-2021-39134/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-39135 page", "url": "https://www.suse.com/security/cve/CVE-2021-39135/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-44531 page", "url": "https://www.suse.com/security/cve/CVE-2021-44531/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-44532 page", "url": "https://www.suse.com/security/cve/CVE-2021-44532/" }, { "category": "self", "summary": "SUSE CVE CVE-2021-44533 page", "url": "https://www.suse.com/security/cve/CVE-2021-44533/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-21824 page", "url": "https://www.suse.com/security/cve/CVE-2022-21824/" } ], "title": "Security update for nodejs12", "tracking": { "current_release_date": "2022-01-18T08:35:56Z", "generator": { "date": "2022-01-18T08:35:56Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2022:0101-1", "initial_release_date": "2022-01-18T08:35:56Z", "revision_history": [ { "date": "2022-01-18T08:35:56Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.9-1.38.1.aarch64", "product": { "name": "nodejs12-12.22.9-1.38.1.aarch64", "product_id": "nodejs12-12.22.9-1.38.1.aarch64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.9-1.38.1.aarch64", "product": { "name": "nodejs12-devel-12.22.9-1.38.1.aarch64", "product_id": "nodejs12-devel-12.22.9-1.38.1.aarch64" } }, { "category": "product_version", "name": "npm12-12.22.9-1.38.1.aarch64", "product": { "name": "npm12-12.22.9-1.38.1.aarch64", "product_id": "npm12-12.22.9-1.38.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.9-1.38.1.i586", "product": { "name": "nodejs12-12.22.9-1.38.1.i586", "product_id": "nodejs12-12.22.9-1.38.1.i586" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.9-1.38.1.i586", "product": { "name": "nodejs12-devel-12.22.9-1.38.1.i586", "product_id": "nodejs12-devel-12.22.9-1.38.1.i586" } }, { "category": "product_version", "name": "npm12-12.22.9-1.38.1.i586", "product": { "name": "npm12-12.22.9-1.38.1.i586", "product_id": "npm12-12.22.9-1.38.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs12-docs-12.22.9-1.38.1.noarch", "product": { "name": "nodejs12-docs-12.22.9-1.38.1.noarch", "product_id": "nodejs12-docs-12.22.9-1.38.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.9-1.38.1.ppc64le", "product": { "name": "nodejs12-12.22.9-1.38.1.ppc64le", "product_id": "nodejs12-12.22.9-1.38.1.ppc64le" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.9-1.38.1.ppc64le", "product": { "name": "nodejs12-devel-12.22.9-1.38.1.ppc64le", "product_id": "nodejs12-devel-12.22.9-1.38.1.ppc64le" } }, { "category": "product_version", "name": "npm12-12.22.9-1.38.1.ppc64le", "product": { "name": "npm12-12.22.9-1.38.1.ppc64le", "product_id": "npm12-12.22.9-1.38.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.9-1.38.1.s390x", "product": { "name": "nodejs12-12.22.9-1.38.1.s390x", "product_id": "nodejs12-12.22.9-1.38.1.s390x" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.9-1.38.1.s390x", "product": { "name": "nodejs12-devel-12.22.9-1.38.1.s390x", "product_id": "nodejs12-devel-12.22.9-1.38.1.s390x" } }, { "category": "product_version", "name": "npm12-12.22.9-1.38.1.s390x", "product": { "name": "npm12-12.22.9-1.38.1.s390x", "product_id": "npm12-12.22.9-1.38.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "nodejs12-12.22.9-1.38.1.x86_64", "product": { "name": "nodejs12-12.22.9-1.38.1.x86_64", "product_id": "nodejs12-12.22.9-1.38.1.x86_64" } }, { "category": "product_version", "name": "nodejs12-devel-12.22.9-1.38.1.x86_64", "product": { "name": "nodejs12-devel-12.22.9-1.38.1.x86_64", "product_id": "nodejs12-devel-12.22.9-1.38.1.x86_64" } }, { "category": "product_version", "name": "npm12-12.22.9-1.38.1.x86_64", "product": { "name": "npm12-12.22.9-1.38.1.x86_64", "product_id": "npm12-12.22.9-1.38.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 12", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:12" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.9-1.38.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64" }, "product_reference": "nodejs12-12.22.9-1.38.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.9-1.38.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le" }, "product_reference": "nodejs12-12.22.9-1.38.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.9-1.38.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x" }, "product_reference": "nodejs12-12.22.9-1.38.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-12.22.9-1.38.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64" }, "product_reference": "nodejs12-12.22.9-1.38.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.9-1.38.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64" }, "product_reference": "nodejs12-devel-12.22.9-1.38.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.9-1.38.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le" }, "product_reference": "nodejs12-devel-12.22.9-1.38.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.9-1.38.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x" }, "product_reference": "nodejs12-devel-12.22.9-1.38.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-devel-12.22.9-1.38.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64" }, "product_reference": "nodejs12-devel-12.22.9-1.38.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs12-docs-12.22.9-1.38.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch" }, "product_reference": "nodejs12-docs-12.22.9-1.38.1.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.9-1.38.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64" }, "product_reference": "npm12-12.22.9-1.38.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.9-1.38.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le" }, "product_reference": "npm12-12.22.9-1.38.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.9-1.38.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x" }, "product_reference": "npm12-12.22.9-1.38.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm12-12.22.9-1.38.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" }, "product_reference": "npm12-12.22.9-1.38.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-22959", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22959" } ], "notes": [ { "category": "general", "text": "The parser in accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS) in llhttp \u003c v2.1.4 and \u003c v6.0.6.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22959", "url": "https://www.suse.com/security/cve/CVE-2021-22959" }, { "category": "external", "summary": "SUSE Bug 1191601 for CVE-2021-22959", "url": "https://bugzilla.suse.com/1191601" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "moderate" } ], "title": "CVE-2021-22959" }, { "cve": "CVE-2021-22960", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-22960" } ], "notes": [ { "category": "general", "text": "The parse function in llhttp \u003c 2.1.4 and \u003c 6.0.6. ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-22960", "url": "https://www.suse.com/security/cve/CVE-2021-22960" }, { "category": "external", "summary": "SUSE Bug 1191602 for CVE-2021-22960", "url": "https://bugzilla.suse.com/1191602" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.1, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "moderate" } ], "title": "CVE-2021-22960" }, { "cve": "CVE-2021-37701", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37701" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.16, 5.0.8, and 6.1.7 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with the same name as the directory, where the symlink and directory names in the archive entry used backslashes as a path separator on posix systems. The cache checking logic used both `\\` and `/` characters as path separators, however `\\` is a valid filename character on posix systems. By first creating a directory, and then replacing that directory with a symlink, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. Additionally, a similar confusion could arise on case-insensitive filesystems. If a tar archive contained a directory at `FOO`, followed by a symbolic link named `foo`, then on case-insensitive file systems, the creation of the symbolic link would remove the directory from the filesystem, but _not_ from the internal directory cache, as it would not be treated as a cache hit. A subsequent file entry within the `FOO` directory would then be placed in the target of the symbolic link, thinking that the directory had already been created. These issues were addressed in releases 4.4.16, 5.0.8 and 6.1.7. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-9r2w-394v-53qc.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37701", "url": "https://www.suse.com/security/cve/CVE-2021-37701" }, { "category": "external", "summary": "SUSE Bug 1190057 for CVE-2021-37701", "url": "https://bugzilla.suse.com/1190057" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "important" } ], "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37712" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37712", "url": "https://www.suse.com/security/cve/CVE-2021-37712" }, { "category": "external", "summary": "SUSE Bug 1190056 for CVE-2021-37712", "url": "https://bugzilla.suse.com/1190056" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "important" } ], "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-37713" } ], "notes": [ { "category": "general", "text": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-37713", "url": "https://www.suse.com/security/cve/CVE-2021-37713" }, { "category": "external", "summary": "SUSE Bug 1190055 for CVE-2021-37713", "url": "https://bugzilla.suse.com/1190055" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.2, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "important" } ], "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39134" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39134", "url": "https://www.suse.com/security/cve/CVE-2021-39134" }, { "category": "external", "summary": "SUSE Bug 1190054 for CVE-2021-39134", "url": "https://bugzilla.suse.com/1190054" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "important" } ], "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-39135" } ], "notes": [ { "category": "general", "text": "`@npmcli/arborist`, the library that calculates dependency trees and manages the node_modules folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is accomplished by extracting package contents into a project\u0027s `node_modules` folder. If the `node_modules` folder of the root project or any of its dependencies is somehow replaced with a symbolic link, it could allow Arborist to write package dependencies to any arbitrary location on the file system. Note that symbolic links contained within package artifact contents are filtered out, so another means of creating a `node_modules` symbolic link would have to be employed. 1. A `preinstall` script could replace `node_modules` with a symlink. (This is prevented by using `--ignore-scripts`.) 2. An attacker could supply the target with a git repository, instructing them to run `npm install --ignore-scripts` in the root. This may be successful, because `npm install --ignore-scripts` is typically not capable of making changes outside of the project directory, so it may be deemed safe. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above. For more information including workarounds please see the referenced GHSA-gmw6-94gg-2rc2.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-39135", "url": "https://www.suse.com/security/cve/CVE-2021-39135" }, { "category": "external", "summary": "SUSE Bug 1190053 for CVE-2021-39135", "url": "https://bugzilla.suse.com/1190053" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 8.1, "baseSeverity": "HIGH", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "important" } ], "title": "CVE-2021-39135" }, { "cve": "CVE-2021-44531", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-44531" } ], "notes": [ { "category": "general", "text": "Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI is specifically defined to use a particular SAN type, can result in bypassing name-constrained intermediates. Node.js \u003c 12.22.9, \u003c 14.18.3, \u003c 16.13.2, and \u003c 17.3.1 was accepting URI SAN types, which PKIs are often not defined to use. Additionally, when a protocol allows URI SANs, Node.js did not match the URI correctly.Versions of Node.js with the fix for this disable the URI SAN type when checking a certificate against a hostname. This behavior can be reverted through the --security-revert command-line option.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-44531", "url": "https://www.suse.com/security/cve/CVE-2021-44531" }, { "category": "external", "summary": "SUSE Bug 1194511 for CVE-2021-44531", "url": "https://bugzilla.suse.com/1194511" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "moderate" } ], "title": "CVE-2021-44531" }, { "cve": "CVE-2021-44532", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-44532" } ], "notes": [ { "category": "general", "text": "Node.js \u003c 12.22.9, \u003c 14.18.3, \u003c 16.13.2, and \u003c 17.3.1 converts SANs (Subject Alternative Names) to a string format. It uses this string to check peer certificates against hostnames when validating connections. The string format was subject to an injection vulnerability when name constraints were used within a certificate chain, allowing the bypass of these name constraints.Versions of Node.js with the fix for this escape SANs containing the problematic characters in order to prevent the injection. This behavior can be reverted through the --security-revert command-line option.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-44532", "url": "https://www.suse.com/security/cve/CVE-2021-44532" }, { "category": "external", "summary": "SUSE Bug 1194512 for CVE-2021-44532", "url": "https://bugzilla.suse.com/1194512" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "moderate" } ], "title": "CVE-2021-44532" }, { "cve": "CVE-2021-44533", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2021-44533" } ], "notes": [ { "category": "general", "text": "Node.js \u003c 12.22.9, \u003c 14.18.3, \u003c 16.13.2, and \u003c 17.3.1 did not handle multi-value Relative Distinguished Names correctly. Attackers could craft certificate subjects containing a single-value Relative Distinguished Name that would be interpreted as a multi-value Relative Distinguished Name, for example, in order to inject a Common Name that would allow bypassing the certificate subject verification.Affected versions of Node.js that do not accept multi-value Relative Distinguished Names and are thus not vulnerable to such attacks themselves. However, third-party code that uses node\u0027s ambiguous presentation of certificate subjects may be vulnerable.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2021-44533", "url": "https://www.suse.com/security/cve/CVE-2021-44533" }, { "category": "external", "summary": "SUSE Bug 1194513 for CVE-2021-44533", "url": "https://bugzilla.suse.com/1194513" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.9, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "moderate" } ], "title": "CVE-2021-44533" }, { "cve": "CVE-2022-21824", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-21824" } ], "notes": [ { "category": "general", "text": "Due to the formatting logic of the \"console.table()\" function it was not safe to allow user controlled input to be passed to the \"properties\" parameter while simultaneously passing a plain object with at least one property as the first parameter, which could be \"__proto__\". The prototype pollution has very limited control, in that it only allows an empty string to be assigned to numerical keys of the object prototype.Node.js \u003e= 12.22.9, \u003e= 14.18.3, \u003e= 16.13.2, and \u003e= 17.3.1 use a null protoype for the object these properties are being assigned to.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-21824", "url": "https://www.suse.com/security/cve/CVE-2022-21824" }, { "category": "external", "summary": "SUSE Bug 1194514 for CVE-2022-21824", "url": "https://bugzilla.suse.com/1194514" }, { "category": "external", "summary": "SUSE Bug 1202688 for CVE-2022-21824", "url": "https://bugzilla.suse.com/1202688" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 4, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-devel-12.22.9-1.38.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs12-docs-12.22.9-1.38.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm12-12.22.9-1.38.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-01-18T08:35:56Z", "details": "moderate" } ], "title": "CVE-2022-21824" } ] }
wid-sec-w-2022-0092
Vulnerability from csaf_certbund
Notes
{ "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 Dateien zu manipulieren.", "title": "Angriff" }, { "category": "general", "text": "- Linux\n- MacOS X\n- Sonstiges\n- UNIX\n- Windows", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2022-0092 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2021/wid-sec-w-2022-0092.json" }, { "category": "self", "summary": "WID-SEC-2022-0092 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2022-0092" }, { "category": "external", "summary": "NodeJs Security Release vom 2021-08-31", "url": "https://nodejs.org/en/blog/vulnerability/aug-2021-security-releases2/" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2021:3638 vom 2021-09-22", "url": "https://access.redhat.com/errata/RHSA-2021:3638" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2021:3639 vom 2021-09-22", "url": "https://access.redhat.com/errata/RHSA-2021:3639" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2021:3623 vom 2021-09-21", "url": "https://access.redhat.com/errata/RHSA-2021:3623" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2021-3623 vom 2021-09-22", "url": "http://linux.oracle.com/errata/ELSA-2021-3623.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2021:3666 vom 2021-09-28", "url": "https://access.redhat.com/errata/RHSA-2021:3666" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2021-3666 vom 2021-09-28", "url": "http://linux.oracle.com/errata/ELSA-2021-3666.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2021:4618 vom 2021-11-11", "url": "https://access.redhat.com/errata/RHSA-2021:4618" }, { "category": "external", "summary": "Debian Security Advisory DSA-5008 vom 2021-11-12", "url": "https://www.debian.org/security/2021/dsa-5008" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2021:3886-1 vom 2021-12-02", "url": "https://lists.suse.com/pipermail/sle-security-updates/2021-December/009816.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2021:3940-1 vom 2021-12-06", "url": "https://lists.suse.com/pipermail/sle-security-updates/2021-December/009853.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2021:3964-1 vom 2021-12-07", "url": "https://lists.suse.com/pipermail/sle-security-updates/2021-December/009869.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2021:5086 vom 2021-12-13", "url": "https://access.redhat.com/errata/RHSA-2021:5086" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2022:0041 vom 2022-01-06", "url": "https://access.redhat.com/errata/RHSA-2022:0041" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0101-1 vom 2022-01-18", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-January/010017.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2022:0246 vom 2022-01-25", "url": "https://access.redhat.com/errata/RHSA-2022:0246" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2022:4914 vom 2022-06-06", "url": "https://access.redhat.com/errata/RHSA-2022:4914" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2022:0350 vom 2022-02-02", "url": "https://access.redhat.com/errata/RHSA-2022:0350" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2022-0350 vom 2022-02-02", "url": "http://linux.oracle.com/errata/ELSA-2022-0350.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:1717-1 vom 2022-05-17", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-May/011058.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0531-1 vom 2022-02-21", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-February/010279.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0563-1 vom 2022-02-24", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-February/010304.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0569-1 vom 2022-02-24", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-February/010307.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0570-1 vom 2022-02-24", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-February/010306.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0657-1 vom 2022-03-02", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-March/010326.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0704-1 vom 2022-03-03", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-March/010344.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2022:0715-1 vom 2022-03-04", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-March/010355.html" }, { "category": "external", "summary": "Debian Security Advisory DLA-3237 vom 2022-12-12", "url": "https://lists.debian.org/debian-lts-announce/2022/12/msg00023.html" }, { "category": "external", "summary": "Gentoo Linux Security Advisory GLSA-202405-29 vom 2024-05-08", "url": "https://security.gentoo.org/glsa/202405-29" } ], "source_lang": "en-US", "title": "Node.js: Mehrere Schwachstellen erm\u00f6glichen Manipulation von Dateien", "tracking": { "current_release_date": "2024-05-09T22:00:00.000+00:00", "generator": { "date": "2024-08-15T17:26:27.934+00:00", "engine": { "name": "BSI-WID", "version": "1.3.5" } }, "id": "WID-SEC-W-2022-0092", "initial_release_date": "2021-08-31T22:00:00.000+00:00", "revision_history": [ { "date": "2021-08-31T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2021-09-21T22:00:00.000+00:00", "number": "2", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2021-09-22T22:00:00.000+00:00", "number": "3", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2021-09-27T22:00:00.000+00:00", "number": "4", "summary": "Neue Updates von Red Hat und Oracle Linux aufgenommen" }, { "date": "2021-11-11T23:00:00.000+00:00", "number": "5", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2021-11-14T23:00:00.000+00:00", "number": "6", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2021-12-02T23:00:00.000+00:00", "number": "7", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2021-12-06T23:00:00.000+00:00", "number": "8", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2021-12-07T23:00:00.000+00:00", "number": "9", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2021-12-13T23:00:00.000+00:00", "number": "10", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2022-01-06T23:00:00.000+00:00", "number": "11", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2022-01-18T23:00:00.000+00:00", "number": "12", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-01-24T23:00:00.000+00:00", "number": "13", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2022-02-01T23:00:00.000+00:00", "number": "14", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2022-02-02T23:00:00.000+00:00", "number": "15", "summary": "Neue Updates von Oracle Linux aufgenommen" }, { "date": "2022-02-21T23:00:00.000+00:00", "number": "16", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-02-24T23:00:00.000+00:00", "number": "17", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-03-02T23:00:00.000+00:00", "number": "18", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-03-03T23:00:00.000+00:00", "number": "19", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-03-06T23:00:00.000+00:00", "number": "20", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-05-17T22:00:00.000+00:00", "number": "21", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2022-06-06T22:00:00.000+00:00", "number": "22", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2022-12-12T23:00:00.000+00:00", "number": "23", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2024-05-09T22:00:00.000+00:00", "number": "24", "summary": "Neue Updates von Gentoo aufgenommen" } ], "status": "final", "version": "24" } }, "product_tree": { "branches": [ { "branches": [ { "category": "product_name", "name": "Debian Linux", "product": { "name": "Debian Linux", "product_id": "2951", "product_identification_helper": { "cpe": "cpe:/o:debian:debian_linux:-" } } } ], "category": "vendor", "name": "Debian" }, { "branches": [ { "category": "product_name", "name": "Gentoo Linux", "product": { "name": "Gentoo Linux", "product_id": "T012167", "product_identification_helper": { "cpe": "cpe:/o:gentoo:linux:-" } } } ], "category": "vendor", "name": "Gentoo" }, { "branches": [ { "branches": [ { "category": "product_version_range", "name": "\u003cv12.22.6 (LTS)", "product": { "name": "Open Source Node.js \u003cv12.22.6 (LTS)", "product_id": "T020280" } }, { "category": "product_version_range", "name": "\u003cv14.17.6 (LTS)", "product": { "name": "Open Source Node.js \u003cv14.17.6 (LTS)", "product_id": "T020281" } } ], "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": "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" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-32803", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-32803" }, { "cve": "CVE-2021-32804", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-32804" }, { "cve": "CVE-2021-37701", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-37701" }, { "cve": "CVE-2021-37712", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-37712" }, { "cve": "CVE-2021-37713", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-37713" }, { "cve": "CVE-2021-39134", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-39134" }, { "cve": "CVE-2021-39135", "notes": [ { "category": "description", "text": "In Node.js existieren mehrere Schwachstellen. Die Schwachstellen bestehen in den Modulen \"tar\" und \"@npmcli/arborist\" und aufgrund von Symlink-Fehlern. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um Dateien zu manipulieren. Zur erfolgreichen Ausnutzung einiger dieser Schwachstellen ist eine Benutzeraktion erforderlich." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T012167", "T004914" ] }, "release_date": "2021-08-31T22:00:00.000+00:00", "title": "CVE-2021-39135" } ] }
ghsa-2h3h-q99f-3fhc
Vulnerability from github
Impact
Arbitrary File Creation, Arbitrary File Overwrite, Arbitrary Code Execution
@npmcli/arborist
, the library that calculates dependency trees and manages the node_modules
folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder.
This is, in part, accomplished by resolving dependency specifiers defined in package.json
manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies.
When multiple dependencies differ only in the case of their name, Arborist's internal data structure saw them as separate items that could coexist within the same level in the node_modules
hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as file:/some/path
, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem.
For example, a package pwn-a
could define a dependency in their package.json
file such as "foo": "file:/some/path"
. Another package, pwn-b
could define a dependency such as FOO: "file:foo.tgz"
. On case-insensitive file systems, if pwn-a
was installed, and then pwn-b
was installed afterwards, the contents of foo.tgz
would be written to /some/path
, and any existing contents of /some/path
would be removed.
Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected.
Patches
2.8.2 (included in npm v7.20.7 and above)
Fix and Caveats
There are two parts to the fix:
- Immediately prior to extraction, if the target folder is not a directory, it is moved aside. (If the installation fails, filesystem entries moved aside in this manner are moved back as part of the rollback process.)
- The
children
map that represents child nodes in the tree is replaced with a case-insensitive map object, such thatnode.children.get('foo')
andnode.children.get('FOO')
will return the same object, enabling Arborist to detect and handle this class of tree collision.
This second item imposes a caveat on case sensitive filesystems where two packages with names which differ only in case may already exist at the same level in the tree, causing unpredictable behavior in this rare edge case. Note that in such cases, the package-lock.json
already creates a situation which is hazardous to use on case-sensitive filesystems, and will likely lead to other problems.
If affected by this caveat, please run npm update
to rebuild your tree and generate a new package-lock.json
file.
{ "affected": [ { "package": { "ecosystem": "npm", "name": "@npmcli/arborist" }, "ranges": [ { "events": [ { "introduced": "0" }, { "fixed": "2.8.2" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2021-39134" ], "database_specific": { "cwe_ids": [ "CWE-178", "CWE-59", "CWE-61" ], "github_reviewed": true, "github_reviewed_at": "2021-08-31T16:02:46Z", "nvd_published_at": "2021-08-31T17:15:00Z", "severity": "HIGH" }, "details": "### Impact\n\nArbitrary File Creation, Arbitrary File Overwrite, Arbitrary Code Execution\n\n`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder.\n\nThis is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies.\n\nWhen multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem.\n\nFor example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed.\n\nAnyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected.\n\n### Patches\n\n2.8.2 (included in npm v7.20.7 and above)\n\n### Fix and Caveats\n\nThere are two parts to the fix:\n\n1. Immediately prior to extraction, if the target folder is not a directory, it is moved aside. (If the installation fails, filesystem entries moved aside in this manner are moved back as part of the rollback process.)\n2. The `children` map that represents child nodes in the tree is replaced with a case-insensitive map object, such that `node.children.get(\u0027foo\u0027)` and `node.children.get(\u0027FOO\u0027)` will return the same object, enabling Arborist to detect and handle this class of tree collision.\n\nThis second item imposes a caveat on case _sensitive_ filesystems where two packages with names which differ only in case may already exist at the same level in the tree, causing unpredictable behavior in this rare edge case. Note that in such cases, the `package-lock.json` already creates a situation which is hazardous to use on case-sensitive filesystems, and will likely lead to other problems.\n\nIf affected by this caveat, please run `npm update` to rebuild your tree and generate a new `package-lock.json` file.", "id": "GHSA-2h3h-q99f-3fhc", "modified": "2022-08-15T20:08:31Z", "published": "2021-08-31T16:04:03Z", "references": [ { "type": "WEB", "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-39134" }, { "type": "WEB", "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" }, { "type": "PACKAGE", "url": "https://github.com/npm/arborist" }, { "type": "WEB", "url": "https://www.npmjs.com/package/@npmcli/arborist" }, { "type": "WEB", "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "type": "CVSS_V3" } ], "summary": "@npmcli/arborist vulnerable to UNIX Symbolic Link (Symlink) Following" }
gsd-2021-39134
Vulnerability from gsd
{ "GSD": { "alias": "CVE-2021-39134", "description": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "id": "GSD-2021-39134", "references": [ "https://www.suse.com/security/cve/CVE-2021-39134.html", "https://advisories.mageia.org/CVE-2021-39134.html", "https://security.archlinux.org/CVE-2021-39134" ] }, "gsd": { "metadata": { "exploitCode": "unknown", "remediation": "unknown", "reportConfidence": "confirmed", "type": "vulnerability" }, "osvSchema": { "aliases": [ "CVE-2021-39134" ], "details": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above.", "id": "GSD-2021-39134", "modified": "2023-12-13T01:23:15.623322Z", "schema_version": "1.4.0" } }, "namespaces": { "cve.org": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2021-39134", "STATE": "PUBLIC", "TITLE": "UNIX Symbolic Link (Symlink) Following in @npmcli/arborist" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "arborist", "version": { "version_data": [ { "version_value": "\u003c 2.8.2" } ] } } ] }, "vendor_name": "npm" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above." } ] }, "impact": { "cvss": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "NONE", "baseScore": 8.2, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" } }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "CWE-61: UNIX Symbolic Link (Symlink) Following" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc", "refsource": "CONFIRM", "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "name": "https://www.npmjs.com/package/@npmcli/arborist", "refsource": "MISC", "url": "https://www.npmjs.com/package/@npmcli/arborist" }, { "name": "https://www.oracle.com/security-alerts/cpuoct2021.html", "refsource": "MISC", "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "name": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", "refsource": "CONFIRM", "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" } ] }, "source": { "advisory": "GHSA-2h3h-q99f-3fhc", "discovery": "UNKNOWN" } }, "gitlab.com": { "advisories": [ { "affected_range": "\u003c2.8.2", "affected_versions": "All versions before 2.8.2", "cvss_v2": "AV:L/AC:M/Au:N/C:P/I:P/A:P", "cvss_v3": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "cwe_ids": [ "CWE-1035", "CWE-178", "CWE-937" ], "date": "2022-08-12", "description": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder.", "fixed_versions": [ "2.8.2" ], "identifier": "CVE-2021-39134", "identifiers": [ "CVE-2021-39134", "GHSA-2h3h-q99f-3fhc" ], "not_impacted": "All versions starting from 2.8.2", "package_slug": "npm/@npmcli/arborist", "pubdate": "2021-08-31", "solution": "Upgrade to version 2.8.2 or above.", "title": "UNIX Symbolic Link (Symlink) Following", "urls": [ "https://nvd.nist.gov/vuln/detail/CVE-2021-39134", "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc", "https://www.npmjs.com/package/@npmcli/arborist", "https://www.oracle.com/security-alerts/cpuoct2021.html" ], "uuid": "0caee093-f7f8-410a-bf70-4894562743c2" } ] }, "nvd.nist.gov": { "configurations": { "CVE_data_version": "4.0", "nodes": [ { "children": [ { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:npmjs:arborist:*:*:*:*:*:node.js:*:*", "cpe_name": [], "versionEndExcluding": "2.8.2", "vulnerable": true } ], "operator": "OR" }, { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:npmjs:npm:*:*:*:*:*:*:*:*", "cpe_name": [], "versionEndExcluding": "7.20.7", "vulnerable": false } ], "operator": "OR" } ], "cpe_match": [], "operator": "AND" }, { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:oracle:graalvm:20.3.3:*:*:*:enterprise:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:oracle:graalvm:21.2.0:*:*:*:enterprise:*:*:*", "cpe_name": [], "vulnerable": true } ], "operator": "OR" }, { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:siemens:sinec_infrastructure_network_services:*:*:*:*:*:*:*:*", "cpe_name": [], "versionEndExcluding": "1.0.1.1", "vulnerable": true } ], "operator": "OR" } ] }, "cve": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2021-39134" }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "en", "value": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "en", "value": "CWE-178" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc", "refsource": "CONFIRM", "tags": [ "Mitigation", "Third Party Advisory" ], "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "name": "https://www.npmjs.com/package/@npmcli/arborist", "refsource": "MISC", "tags": [ "Product", "Third Party Advisory" ], "url": "https://www.npmjs.com/package/@npmcli/arborist" }, { "name": "https://www.oracle.com/security-alerts/cpuoct2021.html", "refsource": "MISC", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "name": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", "refsource": "CONFIRM", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" } ] } }, "impact": { "baseMetricV2": { "acInsufInfo": false, "cvssV2": { "accessComplexity": "MEDIUM", "accessVector": "LOCAL", "authentication": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 4.4, "confidentialityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "vectorString": "AV:L/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0" }, "exploitabilityScore": 3.4, "impactScore": 6.4, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "severity": "MEDIUM", "userInteractionRequired": true }, "baseMetricV3": { "cvssV3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 1.8, "impactScore": 5.9 } }, "lastModifiedDate": "2022-08-12T17:49Z", "publishedDate": "2021-08-31T17:15Z" } } }
fkie_cve-2021-39134
Vulnerability from fkie_nvd
7.8 (High) - CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
▶ | URL | Tags | |
---|---|---|---|
security-advisories@github.com | https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf | Patch, Third Party Advisory | |
security-advisories@github.com | https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc | Mitigation, Third Party Advisory | |
security-advisories@github.com | https://www.npmjs.com/package/%40npmcli/arborist | ||
security-advisories@github.com | https://www.oracle.com/security-alerts/cpuoct2021.html | Patch, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf | Patch, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc | Mitigation, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.npmjs.com/package/%40npmcli/arborist | ||
af854a3a-2127-422b-91ae-364da2661108 | https://www.oracle.com/security-alerts/cpuoct2021.html | Patch, Third Party Advisory |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:npmjs:arborist:*:*:*:*:*:node.js:*:*", "matchCriteriaId": "D3A10E91-51B2-4817-B6BD-E18383B823B9", "versionEndExcluding": "2.8.2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:a:npmjs:npm:*:*:*:*:*:*:*:*", "matchCriteriaId": "A017D9F7-6B4C-4E21-A721-D97FD6A6330C", "versionEndExcluding": "7.20.7", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:oracle:graalvm:20.3.3:*:*:*:enterprise:*:*:*", "matchCriteriaId": "53B2BB06-A2F7-4603-89C3-C8500E55483A", "vulnerable": true }, { "criteria": "cpe:2.3:a:oracle:graalvm:21.2.0:*:*:*:enterprise:*:*:*", "matchCriteriaId": "01E88C86-8C04-4A4A-BF45-9082AA783056", "vulnerable": true } ], "negate": false, "operator": "OR" } ] }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:siemens:sinec_infrastructure_network_services:*:*:*:*:*:*:*:*", "matchCriteriaId": "B0F46497-4AB0-49A7-9453-CC26837BF253", "versionEndExcluding": "1.0.1.1", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "`@npmcli/arborist`, the library that calculates dependency trees and manages the `node_modules` folder hierarchy for the npm command line interface, aims to guarantee that package dependency contracts will be met, and the extraction of package contents will always be performed into the expected folder. This is, in part, accomplished by resolving dependency specifiers defined in `package.json` manifests for dependencies with a specific name, and nesting folders to resolve conflicting dependencies. When multiple dependencies differ only in the case of their name, Arborist\u0027s internal data structure saw them as separate items that could coexist within the same level in the `node_modules` hierarchy. However, on case-insensitive file systems (such as macOS and Windows), this is not the case. Combined with a symlink dependency such as `file:/some/path`, this allowed an attacker to create a situation in which arbitrary contents could be written to any location on the filesystem. For example, a package `pwn-a` could define a dependency in their `package.json` file such as `\"foo\": \"file:/some/path\"`. Another package, `pwn-b` could define a dependency such as `FOO: \"file:foo.tgz\"`. On case-insensitive file systems, if `pwn-a` was installed, and then `pwn-b` was installed afterwards, the contents of `foo.tgz` would be written to `/some/path`, and any existing contents of `/some/path` would be removed. Anyone using npm v7.20.6 or earlier on a case-insensitive filesystem is potentially affected. This is patched in @npmcli/arborist 2.8.2 which is included in npm v7.20.7 and above." }, { "lang": "es", "value": "\"@npmcli/arborist\", la librer\u00eda que calcula los trees de dependencia y maneja la jerarqu\u00eda de carpetas \"node_modules\" para la interfaz de l\u00ednea de comandos de npm, presenta como objetivo garantizar que los contratos de dependencia de los paquetes se cumplan, y que la extracci\u00f3n de los contenidos de los paquetes sea llevada a cabo siempre en la carpeta esperada. Esto es conseguido, en parte, al resolver los especificadores de dependencia definidos en los manifiestos \"package.json\" para las dependencias con un nombre espec\u00edfico, y anidando las carpetas para resolver las dependencias conflictivas. Cuando las dependencias m\u00faltiples difieren s\u00f3lo en el caso de su nombre, la estructura de datos interna de Arborist las ve\u00eda como elementos separados que pod\u00edan coexistir dentro del mismo nivel en la jerarqu\u00eda \"node_modules\". Sin embargo, en los sistemas de archivos que no distinguen entre may\u00fasculas y min\u00fasculas (como macOS y Windows), esto no es as\u00ed. Combinado con una dependencia de symlink como \"file:/some/path\", esto permit\u00eda a un atacante crear una situaci\u00f3n en la que se pod\u00edan escribir contenidos arbitrarios en cualquier ubicaci\u00f3n del sistema de archivos. Por ejemplo, un paquete \"pwn-a\" podr\u00eda definir una dependencia en su archivo \"package.json\" como \"\"foo\": \"file:/some/path\"\". Otro paquete, \"pwn-b\" podr\u00eda definir una dependencia como \"FOO: \"file:foo.tgz\"\". En los sistemas de archivos que no distinguen entre may\u00fasculas y min\u00fasculas, si se instalara \"pwn-a\" y luego se instalara \"pwn-b\", el contenido de \"foo.tgz\" se escribir\u00eda en \"/some/path\", y cualquier contenido existente de \"/some/path\" se eliminar\u00eda. Cualquiera usando npm versiones v7.20.6 o anteriores en un sistema de archivos que no distinga entre may\u00fasculas y min\u00fasculas est\u00e1 potencialmente afectado. Esto est\u00e1 parcheado en @npmcli/arborist 2.8.2 que se incluye en npm versiones v7.20.7 y superiores" } ], "id": "CVE-2021-39134", "lastModified": "2024-11-21T06:18:39.567", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "MEDIUM", "cvssData": { "accessComplexity": "MEDIUM", "accessVector": "LOCAL", "authentication": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 4.4, "confidentialityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "vectorString": "AV:L/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0" }, "exploitabilityScore": 3.4, "impactScore": 6.4, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": true } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "NONE", "baseScore": 8.2, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "version": "3.1" }, "exploitabilityScore": 1.8, "impactScore": 5.8, "source": "security-advisories@github.com", "type": "Secondary" }, { "cvssData": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 1.8, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2021-08-31T17:15:08.147", "references": [ { "source": "security-advisories@github.com", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" }, { "source": "security-advisories@github.com", "tags": [ "Mitigation", "Third Party Advisory" ], "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "source": "security-advisories@github.com", "url": "https://www.npmjs.com/package/%40npmcli/arborist" }, { "source": "security-advisories@github.com", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Mitigation", "Third Party Advisory" ], "url": "https://github.com/npm/arborist/security/advisories/GHSA-2h3h-q99f-3fhc" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "https://www.npmjs.com/package/%40npmcli/arborist" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://www.oracle.com/security-alerts/cpuoct2021.html" } ], "sourceIdentifier": "security-advisories@github.com", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-61" } ], "source": "security-advisories@github.com", "type": "Secondary" }, { "description": [ { "lang": "en", "value": "CWE-178" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.