Vulnerabilities

146 via 268 paths

Dependencies

79

Source

Group 6 Copy Created with Sketch. Docker

Target OS

debian:9
Test your Docker Hub image against our market leading vulnerability database Sign up for free
Severity
  • 1
  • 21
  • 33
  • 91
Status
  • 146
  • 0
  • 0
OS binaries
  • 87
  • 59

critical severity
new

Race Condition

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Race Condition in the vm module with the timeout option. An attacker can access secrets like tokens or passwords to leak or cause data corruption by exploiting a race condition in buffer allocation logic that allows zero-fill toggle to remain disabled when vm module timeouts interrupt execution.

Remediation

Upgrade node to version 20.20.0, 22.22.0, 24.13.0, 25.3.0 or higher.

References

high severity

DNS Rebinding

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.18.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to DNS Rebinding due to the way the IsIPAddress() function in inspector_socket.cc processes invalid octal format IP addresses during an --inspect session. This could allow attackers to execute arbitrary code.

Remediation

Upgrade node to version 14.21.1, 16.18.1, 18.12.1, 19.0.1 or higher.

References

high severity

Uncaught Exception

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Uncaught Exception in the SignTraits::DeriveBits() function, which incorrectly invokes ThrowException() based on user inputs when executing in a background thread. This allows an attacker to trigger a runtime crash.

Note: The cryptographic operations involved are commonly applied to untrusted input.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 20.19.2, 22.15.1, 23.11.1, 24.0.2 or higher.

References

high severity
new

Uncaught Exception

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Uncaught Exception due to the unhandled TLSSocket error ECONNRESET. An attacker can cause application crash by passing malformed HTTP/2 HEADERS frame with oversized, invalid HPACK data.

Note:

This issue primary affects applications without explicit error handlers to secure sockets.

Remediation

Upgrade node to version 20.20.0, 22.22.0, 24.13.0, 25.3.0 or higher.

References

high severity

Directory Traversal

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Directory Traversal in the path.join function. An attacker can bypass the path traversal protection and access restricted files by crafting specific path inputs that leverage Windows reserved driver names such as CON, PRN, and AUX.

Note: This issue only affects Windows systems and is a result of an incomplete fix for CVE-2025-23084

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade node to version 20.19.4, 22.17.1, 24.4.1 or higher.

References

high severity
new

Reliance on Undefined, Unspecified, or Implementation-Defined Behavior

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 20.20.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Reliance on Undefined, Unspecified, or Implementation-Defined Behavior due to a flaw in error handling when async_hooks (or AsyncLocalStorage) is enabled. Normally, a "Maximum call stack size exceeded" error (stack overflow) is catchable by try-catch blocks or uncaughtException handlers. However, if this error occurs while an async_hooks callback is on the stack (which happens frequently in frameworks like Next.js or when using APM tools), Node.js treats it as a fatal error. Remote attackers can trigger this crash by sending payloads that cause deep recursion (e.g., deeply nested JSON objects), leading to a Denial of Service.

Notes:

  1. Node.js 24.x and 25.x are less affected if using only AsyncLocalStorage, as they use a newer V8 feature that avoids this hook mechanism;

  2. The patch improves recoverability in one edge case, but it does not remove the broader risk. Recovery from space exhaustion is unspecified, best‑effort behavior and is not a reliable basis for availability or security.

PoC

import { createHook } from 'node:async_hooks';

// This simulates what APM tools do
createHook({ init() {} }).enable();

function recursive() {
  new Promise(() => {}); // Creates async context
  return recursive();
}

try {
  recursive();
} catch (err) {
  console.log('This never runs', err);
}

Remediation

Upgrade node to version 20.20.0, 22.22.0, 24.13.0, 25.3.0 or higher.

References

high severity

Information Exposure

  • Vulnerable module: gcc-6/gcc-6-base
  • Introduced through: gcc-6/gcc-6-base@6.3.0-18+deb9u1, gcc-6/libgcc1@1:6.3.0-18+deb9u1 and others

Detailed paths

  • Introduced through: node@16-stretch-slim gcc-6/gcc-6-base@6.3.0-18+deb9u1
  • Introduced through: node@16-stretch-slim gcc-6/libgcc1@1:6.3.0-18+deb9u1
  • Introduced through: node@16-stretch-slim gcc-6/libstdc++6@6.3.0-18+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream gcc-6 package and not the gcc-6 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.

Remediation

There is no fixed version for Debian:9 gcc-6.

References

high severity

Code Injection

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Code Injection due to the incorrect handling of environment variables on Linux when the process is running with elevated privileges that the current user lacks (does not apply to CAP_NET_BIND_SERVICE).

Remediation

Upgrade node to version 18.19.1, 20.11.1, 21.6.2 or higher.

References

high severity

Use After Free

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13
  • Fixed in: 232-25+deb9u14

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A heap use-after-free vulnerability was found in systemd before version v245-rc1, where asynchronous Polkit queries are performed while handling dbus messages. A local unprivileged attacker can abuse this flaw to crash systemd services or potentially execute code and elevate their privileges, by sending specially crafted dbus messages.

Remediation

Upgrade Debian:9 systemd to version 232-25+deb9u14 or higher.

References

high severity
new

UNIX Symbolic Link (Symlink) Following

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to UNIX Symbolic Link (Symlink) Following in the fs.symlink() function. An attacker can escape the allowed path and read/write sensitive files by chaining directories and symlinks, bypassing --allow-fs-read and --allow-fs-write restrictions.

Remediation

Upgrade node to version 20.20.0, 22.22.0, 24.13.0, 25.3.0 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to a lack of safeguards on chunk extension bytes. The server may read an unbounded number of bytes from a single connection, which allows an attacker to cause denial of service via CPU and network bandwidth exhaustion.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 18.19.1, 20.11.1, 21.6.2 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to a race condition in Http2Session when nghttp2 data is left in memory after a connection is reset while processing HTTP/2 CONTINUATION frames. An attacker can cause denial of service by sending such frames then triggering the Http2Session destructor.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 18.20.1, 20.12.1, 21.7.2 or higher.

References

high severity

Arbitrary Code Injection

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.2

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Arbitrary Code Injection. The use of the deprecated API process.binding() can bypass the policy mechanism by requiring internal modules and eventually take advantage of process.binding('spawn_sync') to run arbitrary code, outside of the limits defined in a policy.json file.

Note:

At the time this advisory was issued, the policy is an experimental feature of Node.js, which is not enabled by default.

Remediation

Upgrade node to version 16.20.2, 18.17.1, 20.5.1 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to a null pointer dereference in when signatures are being verified on PKCS7 signed or signedAndEnveloped data in pkcs7/pk7_doit.c. If the hash algorithm used for the signature is known to the OpenSSL library but the implementation of the hash algorithm is not available, the digest initialization will fail.

NOTE: The TLS implementation in OpenSSL does not call these functions.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.19.1, 18.14.1, 19.6.1 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) such that in some cases Node.js does not clear the OpenSSL error stack after operations that may set it. This may lead to false positive errors during subsequent cryptographic operations that happen to be on the same thread.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.19.1, 18.14.1, 19.2.0 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) via a 0-byte UDP payload.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

high severity

Insecure Permissions

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Insecure Permissions which allow users to access unauthorized modules with process.mainModule.require() if the --experimental-policy option is in use.

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

high severity

Insecure Randomness

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.17.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Insecure Randomness via the EntropySource() function in SecretKeyGenTraits::DoKeyGen(), due to improper checking the return value, allowing an attacker to perform cryptographic attacks.

Remediation

Upgrade node to version 16.17.1, 18.9.1 or higher.

References

high severity

Access of Resource Using Incompatible Type ('Type Confusion')

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Access of Resource Using Incompatible Type ('Type Confusion') in x509/v3_genn.c, when processing X.400 addresses with CRL checking enabled (e.g. when X509_V_FLAG_CRL_CHECK is set). An attacker in possession of both the certificate chain and CRL, of which neither needs a valid signature, can expose memory or cause a denial of service. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon.

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Prototype Pollution. The use of proto in process.mainModule.proto.require() can bypass the policy mechanism and require modules outside of the policy.json definition.

Note:

At the time this CVE was issued, the policy is an experimental feature of Node.js.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

high severity

Server-Side Request Forgery (SSRF)

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Server-Side Request Forgery (SSRF) due to the handling of the hostname_ascii variable in the uv_getaddrinfo function. Attackers can exploit the creation of addresses that bypass developer checks and resolve to unintended IP addresses, to access internal APIs or for websites that allow users to have username.example.com pages, potentially exposing internal services to attacks.

Notes:

  1. Depending on the build and runtime environment, it can lead to different exploitation scenarios:

The last byte of the hostname is a random value (0-256) but identical in successive calls, and the subsequent byte is a null byte. This situation can be exploited through brute force, especially in production environments where many Node.js instances run in parallel (pm2, kubernetes, etc).

Since the last byte is random, there are cases where it's one of 0-9a-f, which makes 16 possible cases (out of 256) useful for calling localhost (127.0.0.x) and potentially bypassing security measures on internal APIs. The same is true for calling other IP-ranges.

  1. When deployed in an environment with multiple pods (e.g., Kubernetes), is vulnerable to the attack described above, potentially allowing unauthorized access to internal APIs.

Remediation

Upgrade node to version 18.19.1, 20.11.1, 21.6.2 or higher.

References

high severity

Improper Control of Generation of Code ('Code Injection')

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Improper Control of Generation of Code ('Code Injection') due to the improper handling of batch files in child_process.spawn or child_process.spawnSync. An attacker can inject arbitrary commands and achieve code execution even if the shell option is not enabled.

Note: This vulnerability only affects Windows machines.

Remediation

Upgrade node to version 18.20.2, 20.12.2, 21.7.3 or higher.

References

medium severity

Access Restriction Bypass

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Access Restriction Bypass by embedding non-network imports in data URLs. Exploiting this vulnerability allows an attacker to execute arbitrary code, compromising system security.

Remediation

Upgrade node to version 18.20.4, 20.15.1, 22.4.1 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the ReadFileUtf8 internal binding, which fails to clean up pointers in uv_fs_s.file. UTF-16 path buffers leak memory, which can lead to denial of service.

Note:

CVE-2025-23122 is a duplicate of this vulnerability.

Remediation

Upgrade node to version 20.19.2, 22.15.1 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling in the llhttp implementation, when handing HTTP/1 headers terminated with \r\n\rX instead of the required \r\n\r\n. This allows attackers to bypass proxy-based access controls and submit unauthorized requests.

Remediation

Upgrade node to version 20.19.2 or higher.

References

medium severity

Improper Control of Generation of Code ('Code Injection')

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Improper Control of Generation of Code ('Code Injection'). This is due to a bypass of CVE-2024-27980.

A malicious command line argument can inject arbitrary commands and achieve code execution even if the shell option is not enabled.

Note: This vulnerability affects only users of child_process.spawn and child_process.spawnSync on Windows in all active release lines.

Remediation

Upgrade node to version 18.20.4, 20.15.1, 22.4.1 or higher.

References

medium severity

Arbitrary Code Injection

  • Vulnerable module: gnupg2/gpgv
  • Introduced through: gnupg2/gpgv@2.1.18-8~deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim gnupg2/gpgv@2.1.18-8~deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnupg2 package and not the gnupg2 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.

Remediation

There is no fixed version for Debian:9 gnupg2.

References

medium severity

Access Restriction Bypass

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.2

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Access Restriction Bypass via the Module._load which can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.

Remediation

Upgrade node to version 16.20.2, 18.17.1, 20.5.1 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.16.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling when the llhttp parser in the http module does not correctly parse and validate Transfer-Encoding headers.

Remediation

Upgrade node to version 14.20.0, 16.16.0, 18.5.0 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.16.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling. The llhttp parser in the http module does not correctly handle multi-line Transfer-Encoding headers.

Remediation

Upgrade node to version 14.20.0, 16.16.0, 18.5.0 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.16.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling. when the llhttp parser in the http module does not adequately delimit HTTP requests with CRLF sequences.

Remediation

Upgrade node to version 14.20.0, 16.16.0, 18.5.0 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.17.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling via the llhttp parser in the http module, due to improper parsing of header fields that are not terminated with CLRF.

Remediation

Upgrade node to version 14.20.1, 16.17.1, 18.9.1 or higher.

References

medium severity

Improper Access Control

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.2

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Improper Access Control through the usage of module.constructor.createRequire(), which allows an attacker to bypass the policy mechanism and require modules outside of the policy.json definition for a given module.

Note: This vulnerability affects all users using the experimental policy mechanism.

Remediation

Upgrade node to version 16.20.2, 18.17.1, 20.5.1 or higher.

References

medium severity

Privilege Escalation

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Privilege Escalation due to insecure loading of ICU data through ICU_DATA environment variable.

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity
new

Uncaught Exception

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Uncaught Exception in the TLS module when a TLS server is configured with pskCallback or ALPNCallback. A remote attacker can crash or exhaust resources of a TLS server by sending input that causes the callback to throw an error.

Remediation

Upgrade node to version 20.20.0, 22.22.0, 24.13.0, 25.3.0 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to a read buffer overflow in certificate name constraint checking in x509/v3_ncons.c. This occurs after certificate chain signature verification, and requires either a CA to have signed the malicious certificate or for the application to continue certificate verification despite failure to construct a path to a trusted issuer.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to a double free after calling the PEM_read_bio_ex() function. An attacker who supplies a malicious PEM file with a 0-length payload can trigger a crash.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to an invalid pointer dereference in the d2i_PKCS7(), d2i_PKCS7_bio() and d2i_PKCS7_fp(). An attacker could trigger a crash by supplying malicious PKCS7 data.

NOTE: The TLS implementation in OpenSSL does not call these functions.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to a null dereference when validating DSA public keys in the EVP_PKEY_public_check() function.

NOTE: The TLS implementation in OpenSSL does not call this function.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS) when processing specially crafted ASN.1 objects identifiers. Applications that use OBJ_obj2txt() directly, or use any of the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message size limit may experience notable to very long delays when processing those messages, which may lead to a exploitation of this vulnerability.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

DLL Hijacking

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.16.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to DLL Hijacking. on Windows based systems running OpenSSL that use a C:\Program Files\Common Files\SSL\openssl.cnf file. Attackers could place a malicious providers.dll file at one of the locations checked according to DLL Search Order and it would be used by the application.

Remediation

Upgrade node to version 14.20.0, 16.16.0, 18.5.0 or higher.

References

medium severity

DNS Rebinding

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.16.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to DNS Rebinding by bypassing IsAllowedHost because IsIPAddress does not properly check if an IP address is invalid or not. This vulnerability is a bypass of CVE-2021-22884.

Remediation

Upgrade node to version 14.20.0, 16.16.0, 18.5.0 or higher.

References

medium severity

Insecure Randomness

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Insecure Randomness in the generation of DNS query IDs.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

Observable Timing Discrepancy

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Observable Timing Discrepancy due to the implementation of PKCS#1 v1.5 padding. An attacker can infer the private key used in the cryptographic operation by observing the time taken to execute cryptographic operations (Marvin).

Remediation

Upgrade node to version 18.19.1, 20.11.1, 21.6.2 or higher.

References

medium severity

Privilege Escalation

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Privilege Escalation via Malicious Registry Key manipulation during Node.js installer repair process. The issue arises when the path referenced by the %USERPROFILE% environment variable does not exist. In such cases, the "msiexec.exe" process attempts to create the specified path in an unsafe manner, potentially leading to the creation of arbitrary folders in arbitrary locations.

Note:

This vulnerability is specific to Windows users who install Node.js using the .msi installer. Users who opt for other installation methods are not affected by this particular issue.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

Use After Free

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Use After Free in the BIO_new_NDEF() function. A new filter BIO can be freed, with the function returning a NULL result indicating a failure. But the BIO passed by the caller still holds pointers to the previously freed filter BIO. This could allow an attacker to cause a crash.

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Denial of Service (DoS). When an invalid public key is used to create an x509 certificate using the crypto.X509Certificate() API a non-expect termination occurs making it susceptible to DoS attacks when the attacker could force interruptions of application processing, as the process terminates when accessing public key info of provided certificates from user code. The current context of the users will be gone, and that will cause a DoS scenario.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling. The llhttp parser in the http module in Node.js does not strictly use the CRLF sequence to delimit HTTP requests.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to HTTP Request Smuggling via content length ofuscation. An attacker can smuggle an HTTP request by including a space before a Content-Length header.

Remediation

Upgrade node to version 18.20.1, 20.12.1, 21.7.2 or higher.

References

medium severity

Inconsistency Between Implementation and Documented Design

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Inconsistency Between Implementation and Documented Design where the generateKeys() API function returned from crypto.createDiffieHellman() do not generate keys after setting a private key.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

Information Exposure

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.16.0

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Information Exposure in the aesni_ocb_encrypt and aesni_ocb_decrypt, which reveal 16 unencrypted bytes of memory.

NOTE: Implementations using TLS or DTLS are not affected by this vulnerability.

Remediation

Upgrade node to version 14.20.0, 16.16.0, 18.5.0 or higher.

References

medium severity

Timing Attack

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.19.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Timing Attack in rsa/rsa_ossl.c. An attacker can recover ciphertext with a Bleichenbacher style attack by sending a large number of trial messages (Marvin). This affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.

Remediation

Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.

References

medium severity
new

Incorrect Authorization

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Incorrect Authorization in the permission model via the fs.futimes() function due to failing to check for write permissions. A process restricted to "read-only" access can still modify a file's access and modification timestamps. While it doesn't allow changing the file's content, it can be used to obscure malicious activity by tampering with audit logs or metadata.

Note:

This is only exploitable if the attacker already has the ability to execute code on the system (within the restricted Node.js environment).

Remediation

Upgrade node to version 20.20.0, 22.22.0, 24.13.0, 25.3.0 or higher.

References

medium severity

Buffer Over-read

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Buffer Over-read on 64-bit ARM systems using AES-XTS cipher decryption. Attackers in control of the size and location of the ciphertext buffer can cause a crash by supplying a buffer of length 4 mod 5 at a location just before unmapped memory.

NOTE: This issue can be patched by applying the fix commits to versions 3.0 and 3.1, but no dedicated fixed release is planned until the next scheduled one.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

medium severity

Buffer Underwrite (Buffer Underflow)

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Buffer Underwrite (Buffer Underflow) in the ares_inet_net_pton() function. C-ares only uses this function internally for configuration purposes which would require an administrator to configure such an address via ares_set_sortlist(). However, users may externally use ares_inet_net_pton() for other purposes and thus be vulnerable to more severe issues.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

low severity

Out-of-bounds Write

  • Vulnerable module: bzip2/libbz2-1.0
  • Introduced through: bzip2/libbz2-1.0@1.0.6-8.1

Detailed paths

  • Introduced through: node@16-stretch-slim bzip2/libbz2-1.0@1.0.6-8.1

NVD Description

Note: Versions mentioned in the description apply only to the upstream bzip2 package and not the bzip2 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

BZ2_decompress in decompress.c in bzip2 through 1.0.6 has an out-of-bounds write when there are many selectors.

Remediation

There is no fixed version for Debian:9 bzip2.

References

low severity

Out-of-bounds Read

  • Vulnerable module: db5.3/libdb5.3
  • Introduced through: db5.3/libdb5.3@5.3.28-12+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim db5.3/libdb5.3@5.3.28-12+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream db5.3 package and not the db5.3 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.

Remediation

There is no fixed version for Debian:9 db5.3.

References

low severity

Buffer Overflow

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Buffer Overflow

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-Bounds

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Read

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In the GNU C Library (aka glibc or libc6) through 2.29, proceed_next_node in posix/regexec.c has a heap-based buffer over-read via an attempted case-insensitive regular-expression match.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Write

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An integer overflow in the implementation of the posix_memalign in memalign functions in the GNU C Library (aka glibc or libc6) 2.26 and earlier could cause these functions to return a pointer to a heap area that is too small, potentially leading to heap corruption.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Write

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The malloc implementation in the GNU C Library (aka glibc or libc6), from version 2.24 to 2.26 on powerpc, and only in version 2.26 on i386, did not properly handle malloc calls with arguments close to SIZE_MAX and could return a pointer to a heap region that is smaller than requested, eventually leading to heap corruption.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Use After Free

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Improper Input Validation

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

systemd v233 and earlier fails to safely parse usernames starting with a numeric digit (e.g. "0day"), running the service in question with root privileges rather than the user intended.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

CVE-2005-2541

  • Vulnerable module: tar
  • Introduced through: tar@1.29b-1.1+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim tar@1.29b-1.1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream tar package and not the tar package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.

Remediation

There is no fixed version for Debian:9 tar.

References

low severity

Integer Overflow or Wraparound

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

CVE-2019-1010023

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Cross-site Request Forgery (CSRF)

  • Vulnerable module: gnupg2/gpgv
  • Introduced through: gnupg2/gpgv@2.1.18-8~deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim gnupg2/gpgv@2.1.18-8~deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnupg2 package and not the gnupg2 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GnuPG version 2.1.12 - 2.2.11 contains a Cross ite Request Forgery (CSRF) vulnerability in dirmngr that can result in Attacker controlled CSRF, Information Disclosure, DoS. This attack appear to be exploitable via Victim must perform a WKD request, e.g. enter an email address in the composer window of Thunderbird/Enigmail. This vulnerability appears to have been fixed in after commit 4a4bb874f63741026bd26264c43bb32b1099f060.

Remediation

There is no fixed version for Debian:9 gnupg2.

References

low severity

Out-of-bounds Write

  • Vulnerable module: ncurses/libncursesw5
  • Introduced through: ncurses/libncursesw5@6.0+20161126-1+deb9u2, ncurses/libtinfo5@6.0+20161126-1+deb9u2 and others

Detailed paths

  • Introduced through: node@16-stretch-slim ncurses/libncursesw5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/libtinfo5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-base@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-bin@6.0+20161126-1+deb9u2

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An issue was discovered in ncurses through v6.2-1. _nc_captoinfo in captoinfo.c has a heap-based buffer overflow.

Remediation

There is no fixed version for Debian:9 ncurses.

References

low severity

Integer Underflow

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Write

  • Vulnerable module: lz4/liblz4-1
  • Introduced through: lz4/liblz4-1@0.0~r131-2+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim lz4/liblz4-1@0.0~r131-2+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream lz4 package and not the lz4 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states "only a few specific / uncommon usages of the API are at risk."

Remediation

There is no fixed version for Debian:9 lz4.

References

low severity

Improper Check for Dropped Privileges

  • Vulnerable module: bash
  • Introduced through: bash@4.4-5

Detailed paths

  • Introduced through: node@16-stretch-slim bash@4.4-5

NVD Description

Note: Versions mentioned in the description apply only to the upstream bash package and not the bash package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An issue was discovered in disable_priv_mode in shell.c in GNU Bash through 5.0 patch 11. By default, if Bash is run with its effective UID not equal to its real UID, it will drop privileges by setting its effective UID to its real UID. However, it does so incorrectly. On Linux and other systems that support "saved UID" functionality, the saved UID is not dropped. An attacker with command execution in the shell can use "enable -f" for runtime loading of a new builtin, which can be a shared object that calls setuid() and therefore regains privileges. However, binaries running with an effective UID of 0 are unaffected.

Remediation

There is no fixed version for Debian:9 bash.

References

low severity

Out-of-bounds Read

  • Vulnerable module: e2fsprogs
  • Introduced through: e2fsprogs@1.43.4-2+deb9u2, e2fsprogs/e2fslibs@1.43.4-2+deb9u2 and others

Detailed paths

  • Introduced through: node@16-stretch-slim e2fsprogs@1.43.4-2+deb9u2
  • Introduced through: node@16-stretch-slim e2fsprogs/e2fslibs@1.43.4-2+deb9u2
  • Introduced through: node@16-stretch-slim e2fsprogs/libcomerr2@1.43.4-2+deb9u2
  • Introduced through: node@16-stretch-slim e2fsprogs/libss2@1.43.4-2+deb9u2

NVD Description

Note: Versions mentioned in the description apply only to the upstream e2fsprogs package and not the e2fsprogs package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.

Remediation

There is no fixed version for Debian:9 e2fsprogs.

References

low severity

Improper Resource Shutdown or Release

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The string component in the GNU C Library (aka glibc or libc6) through 2.28, when running on the x32 architecture, incorrectly attempts to use a 64-bit register for size_t in assembly codes, which can lead to a segmentation fault or possibly unspecified other impact, as demonstrated by a crash in __memmove_avx_unaligned_erms in sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S during a memcpy.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Off-by-one Error

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Write

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In glibc 2.26 and earlier there is confusion in the usage of getcwd() by realpath() which can be used to write before the destination buffer leading to a buffer underflow and potential code execution.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-Bounds

  • Vulnerable module: pcre3/libpcre3
  • Introduced through: pcre3/libpcre3@2:8.39-3

Detailed paths

  • Introduced through: node@16-stretch-slim pcre3/libpcre3@2:8.39-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream pcre3 package and not the pcre3 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.

Remediation

There is no fixed version for Debian:9 pcre3.

References

low severity

Out-of-Bounds

  • Vulnerable module: pcre3/libpcre3
  • Introduced through: pcre3/libpcre3@2:8.39-3

Detailed paths

  • Introduced through: node@16-stretch-slim pcre3/libpcre3@2:8.39-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream pcre3 package and not the pcre3 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.

Remediation

There is no fixed version for Debian:9 pcre3.

References

low severity

Improper Verification of Cryptographic Signature

low severity

Incorrect Permission Assignment for Critical Resource

  • Vulnerable module: shadow/login
  • Introduced through: shadow/login@1:4.4-4.1+deb9u1 and shadow/passwd@1:4.4-4.1+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim shadow/login@1:4.4-4.1+deb9u1
  • Introduced through: node@16-stretch-slim shadow/passwd@1:4.4-4.1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream shadow package and not the shadow package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).

Remediation

There is no fixed version for Debian:9 shadow.

References

low severity

CVE-2018-6954

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

systemd-tmpfiles in systemd through 237 mishandles symlinks present in non-terminal path components, which allows local users to obtain ownership of arbitrary files via vectors involving creation of a directory and a file under that directory, and later replacing that directory with a symlink. This occurs even if the fs.protected_symlinks sysctl is turned on.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Incorrect Privilege Assignment

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Link Following

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

systemd-tmpfiles in systemd before 237 attempts to support ownership/permission changes on hardlinked files even if the fs.protected_hardlinks sysctl is turned off, which allows local users to bypass intended access restrictions via vectors involving a hard link to a file for which the user lacks write access, as demonstrated by changing the ownership of the /etc/passwd file.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Privilege Chaining

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Access Restriction Bypass

  • Vulnerable module: util-linux
  • Introduced through: util-linux@2.29.2-1+deb9u1, util-linux/bsdutils@1:2.29.2-1+deb9u1 and others

Detailed paths

  • Introduced through: node@16-stretch-slim util-linux@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/bsdutils@1:2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libblkid1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libfdisk1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libmount1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libsmartcols1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libuuid1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/mount@2.29.2-1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream util-linux package and not the util-linux package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

runuser in util-linux allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

Remediation

There is no fixed version for Debian:9 util-linux.

References

low severity

Improper Data Handling

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In the GNU C Library (aka glibc or libc6) before 2.28, parse_reg_exp in posix/regcomp.c misparses alternatives, which allows attackers to cause a denial of service (assertion failure and application exit) or trigger an incorrect result by attempting a regular-expression match.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Reachable Assertion

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Uncontrolled Recursion

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\1\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Uncontrolled Recursion

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\227|)(\1\1|t1|\\2537)+' in grep.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Key Management Errors

  • Vulnerable module: gnupg2/gpgv
  • Introduced through: gnupg2/gpgv@2.1.18-8~deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim gnupg2/gpgv@2.1.18-8~deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnupg2 package and not the gnupg2 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GnuPG 2.2.4 and 2.2.5 does not enforce a configuration in which key certification requires an offline master Certify key, which results in apparently valid certifications that occurred only with access to a signing subkey.

Remediation

There is no fixed version for Debian:9 gnupg2.

References

low severity

Use of a Broken or Risky Cryptographic Algorithm

  • Vulnerable module: gnupg2/gpgv
  • Introduced through: gnupg2/gpgv@2.1.18-8~deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim gnupg2/gpgv@2.1.18-8~deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream gnupg2 package and not the gnupg2 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.

Remediation

There is no fixed version for Debian:9 gnupg2.

References

low severity

Information Exposure

  • Vulnerable module: libgcrypt20
  • Introduced through: libgcrypt20@1.7.6-2+deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim libgcrypt20@1.7.6-2+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream libgcrypt20 package and not the libgcrypt20 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.

Remediation

There is no fixed version for Debian:9 libgcrypt20.

References

low severity

Use of a Broken or Risky Cryptographic Algorithm

  • Vulnerable module: libgcrypt20
  • Introduced through: libgcrypt20@1.7.6-2+deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim libgcrypt20@1.7.6-2+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream libgcrypt20 package and not the libgcrypt20 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.

Remediation

There is no fixed version for Debian:9 libgcrypt20.

References

low severity

Out-of-bounds Read

  • Vulnerable module: pcre3/libpcre3
  • Introduced through: pcre3/libpcre3@2:8.39-3

Detailed paths

  • Introduced through: node@16-stretch-slim pcre3/libpcre3@2:8.39-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream pcre3 package and not the pcre3 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \X or \R has more than one fixed quantifier, a related issue to CVE-2019-20454.

Remediation

There is no fixed version for Debian:9 pcre3.

References

low severity

Uncontrolled Recursion

  • Vulnerable module: pcre3/libpcre3
  • Introduced through: pcre3/libpcre3@2:8.39-3

Detailed paths

  • Introduced through: node@16-stretch-slim pcre3/libpcre3@2:8.39-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream pcre3 package and not the pcre3 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.

Remediation

There is no fixed version for Debian:9 pcre3.

References

low severity

NULL Pointer Dereference

  • Vulnerable module: tar
  • Introduced through: tar@1.29b-1.1+deb9u1

low severity

Out-of-bounds Read

  • Vulnerable module: ncurses/libncursesw5
  • Introduced through: ncurses/libncursesw5@6.0+20161126-1+deb9u2, ncurses/libtinfo5@6.0+20161126-1+deb9u2 and others

Detailed paths

  • Introduced through: node@16-stretch-slim ncurses/libncursesw5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/libtinfo5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-base@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-bin@6.0+20161126-1+deb9u2

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.

Remediation

There is no fixed version for Debian:9 ncurses.

References

low severity

Out-of-bounds Write

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Use After Free

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Improper Input Validation

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

systemd through v245 mishandles numerical usernames such as ones composed of decimal digits or 0x followed by hex digits, as demonstrated by use of root privileges when privileges of the 0x0 user account were intended. NOTE: this issue exists because of an incomplete fix for CVE-2017-1000082.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Improper Input Validation

  • Vulnerable module: coreutils
  • Introduced through: coreutils@8.26-3

Detailed paths

  • Introduced through: node@16-stretch-slim coreutils@8.26-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream coreutils package and not the coreutils package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.

Remediation

There is no fixed version for Debian:9 coreutils.

References

low severity

Race Condition

  • Vulnerable module: libgcrypt20
  • Introduced through: libgcrypt20@1.7.6-2+deb9u4

Detailed paths

  • Introduced through: node@16-stretch-slim libgcrypt20@1.7.6-2+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream libgcrypt20 package and not the libgcrypt20 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.

Remediation

There is no fixed version for Debian:9 libgcrypt20.

References

low severity

Access Restriction Bypass

  • Vulnerable module: shadow/login
  • Introduced through: shadow/login@1:4.4-4.1+deb9u1 and shadow/passwd@1:4.4-4.1+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim shadow/login@1:4.4-4.1+deb9u1
  • Introduced through: node@16-stretch-slim shadow/passwd@1:4.4-4.1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream shadow package and not the shadow package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.

Remediation

There is no fixed version for Debian:9 shadow.

References

low severity

Authentication Bypass

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The DNS stub resolver in the GNU C Library (aka glibc or libc6) before version 2.26, when EDNS support is enabled, will solicit large UDP responses from name servers, potentially simplifying off-path DNS spoofing attacks due to IP fragmentation.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Improper Data Handling

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The pop_fail_stack function in the GNU C Library (aka glibc or libc6) allows context-dependent attackers to cause a denial of service (assertion failure and application crash) via vectors related to extended regular expression processing.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Improper Input Validation

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Read

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

CVE-2019-7309

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In the GNU C Library (aka glibc or libc6) through 2.29, the memcmp function for the x32 architecture can incorrectly return zero (indicating that the inputs are equal) because the RDX most significant bit is mishandled.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Loop with Unreachable Exit Condition ('Infinite Loop')

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-Bounds

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

NULL Pointer Dereference

  • Vulnerable module: ncurses/libncursesw5
  • Introduced through: ncurses/libncursesw5@6.0+20161126-1+deb9u2, ncurses/libtinfo5@6.0+20161126-1+deb9u2 and others

Detailed paths

  • Introduced through: node@16-stretch-slim ncurses/libncursesw5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/libtinfo5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-base@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-bin@6.0+20161126-1+deb9u2

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In ncurses 6.1, there is a NULL pointer dereference at function _nc_parse_entry in parse_entry.c that will lead to a denial of service attack. The product proceeds to the dereference code path even after a "dubious character `*' in name or alias field" detection.

Remediation

There is no fixed version for Debian:9 ncurses.

References

low severity

Out-of-Bounds

  • Vulnerable module: pcre3/libpcre3
  • Introduced through: pcre3/libpcre3@2:8.39-3

Detailed paths

  • Introduced through: node@16-stretch-slim pcre3/libpcre3@2:8.39-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream pcre3 package and not the pcre3 package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used

Remediation

There is no fixed version for Debian:9 pcre3.

References

low severity

Uncontrolled Recursion

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Information Exposure

  • Vulnerable module: util-linux
  • Introduced through: util-linux@2.29.2-1+deb9u1, util-linux/bsdutils@1:2.29.2-1+deb9u1 and others

Detailed paths

  • Introduced through: node@16-stretch-slim util-linux@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/bsdutils@1:2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libblkid1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libfdisk1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libmount1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libsmartcols1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libuuid1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/mount@2.29.2-1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream util-linux package and not the util-linux package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.

Remediation

There is no fixed version for Debian:9 util-linux.

References

low severity

Integer Overflow or Wraparound

  • Vulnerable module: util-linux
  • Introduced through: util-linux@2.29.2-1+deb9u1, util-linux/bsdutils@1:2.29.2-1+deb9u1 and others

Detailed paths

  • Introduced through: node@16-stretch-slim util-linux@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/bsdutils@1:2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libblkid1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libfdisk1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libmount1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libsmartcols1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/libuuid1@2.29.2-1+deb9u1
  • Introduced through: node@16-stretch-slim util-linux/mount@2.29.2-1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream util-linux package and not the util-linux package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.

Remediation

There is no fixed version for Debian:9 util-linux.

References

low severity

Out-of-bounds Read

  • Vulnerable module: ncurses/libncursesw5
  • Introduced through: ncurses/libncursesw5@6.0+20161126-1+deb9u2, ncurses/libtinfo5@6.0+20161126-1+deb9u2 and others

Detailed paths

  • Introduced through: node@16-stretch-slim ncurses/libncursesw5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/libtinfo5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-base@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-bin@6.0+20161126-1+deb9u2

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

There is a heap-based buffer over-read in the fmt_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.

Remediation

There is no fixed version for Debian:9 ncurses.

References

low severity

Improper Input Validation

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In the GNU C Library (aka glibc or libc6) through 2.28, the getaddrinfo function would successfully parse a string that contained an IPv4 address followed by whitespace and arbitrary characters, which could lead applications to incorrectly assume that it had parsed a valid string, without the possibility of embedded HTTP headers or other potentially dangerous substrings.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Information Exposure

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Use of Insufficiently Random Values

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Read

  • Vulnerable module: ncurses/libncursesw5
  • Introduced through: ncurses/libncursesw5@6.0+20161126-1+deb9u2, ncurses/libtinfo5@6.0+20161126-1+deb9u2 and others

Detailed paths

  • Introduced through: node@16-stretch-slim ncurses/libncursesw5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/libtinfo5@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-base@6.0+20161126-1+deb9u2
  • Introduced through: node@16-stretch-slim ncurses/ncurses-bin@6.0+20161126-1+deb9u2

NVD Description

Note: Versions mentioned in the description apply only to the upstream ncurses package and not the ncurses package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

There is a heap-based buffer over-read in the _nc_find_entry function in tinfo/comp_hash.c in the terminfo library in ncurses before 6.1-20191012.

Remediation

There is no fixed version for Debian:9 ncurses.

References

low severity

Integer Overflow or Wraparound

  • Vulnerable module: pcre3/libpcre3
  • Introduced through: pcre3/libpcre3@2:8.39-3

low severity

Incorrect Permission Assignment for Critical Resource

  • Vulnerable module: shadow/login
  • Introduced through: shadow/login@1:4.4-4.1+deb9u1 and shadow/passwd@1:4.4-4.1+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim shadow/login@1:4.4-4.1+deb9u1
  • Introduced through: node@16-stretch-slim shadow/passwd@1:4.4-4.1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream shadow package and not the shadow package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used "group blacklisting" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.

Remediation

There is no fixed version for Debian:9 shadow.

References

low severity

Race Condition

  • Vulnerable module: coreutils
  • Introduced through: coreutils@8.26-3

Detailed paths

  • Introduced through: node@16-stretch-slim coreutils@8.26-3

NVD Description

Note: Versions mentioned in the description apply only to the upstream coreutils package and not the coreutils package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.

Remediation

There is no fixed version for Debian:9 coreutils.

References

low severity

Time-of-check Time-of-use (TOCTOU)

  • Vulnerable module: shadow/login
  • Introduced through: shadow/login@1:4.4-4.1+deb9u1 and shadow/passwd@1:4.4-4.1+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim shadow/login@1:4.4-4.1+deb9u1
  • Introduced through: node@16-stretch-slim shadow/passwd@1:4.4-4.1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream shadow package and not the shadow package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees

Remediation

There is no fixed version for Debian:9 shadow.

References

low severity

Improper Input Validation

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

It was discovered systemd does not correctly check the content of PIDFile files before using it to kill processes. When a service is run from an unprivileged user (e.g. User field set in the service file), a local attacker who is able to write to the PIDFile of the mentioned service may use this flaw to trick systemd into killing other services and/or privileged processes. Versions before v237 are vulnerable.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Link Following

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Resource Management Errors

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Permissive Cross-domain Policy with Untrusted Domains

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Permissive Cross-domain Policy with Untrusted Domains due to not clearing Proxy-Authentication headers on cross-origin redirects. An attacker can intercept the improperly cleared headers.

Remediation

Upgrade node to version 18.19.1, 20.11.1, 21.6.2 or higher.

References

low severity

Improper Verification of Cryptographic Signature

  • Vulnerable module: apt
  • Introduced through: apt@1.4.11 and apt/libapt-pkg5.0@1.4.11

Detailed paths

  • Introduced through: node@16-stretch-slim apt@1.4.11
  • Introduced through: node@16-stretch-slim apt/libapt-pkg5.0@1.4.11

NVD Description

Note: Versions mentioned in the description apply only to the upstream apt package and not the apt package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.

Remediation

There is no fixed version for Debian:9 apt.

References

low severity

Improper Certificate Validation

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Improper Certificate Validation due to invalid certificate policies in leaf certificates are silently ignored by OpenSSL and other certificate policy checks are skipped for that certificate. A malicious CA could use this to deliberately assert invalid certificate policies to circumvent policy checking on the certificate altogether.

Note: Exploiting this vulnerability is possible on applications that use a non-default option when verifying certificates.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

low severity

Improper Certificate Validation

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Improper Certificate Validation because the implementation of the X509_VERIFY_PARAM_add0_policy() function does not enable certificate policy check, it allows certificates with invalid or incorrect policies to pass the certificate verification.

Note:

Since enabling the policy check could break existing deployments, it was decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() function. Applications that require OpenSSL to perform certificate policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly enable the policy check by calling X509_VERIFY_PARAM_set_flags() with the X509_V_FLAG_POLICY_CHECK flag argument.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

low severity

Insecure Randomness

  • Vulnerable module: node
  • Introduced through: node@16.15.1
  • Fixed in: 16.20.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Insecure Randomness such that AutoTools does not set CARES_RANDOM_FILE during cross compilation.

Remediation

Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.

References

low severity

Information Exposure

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Out-of-bounds Read

  • Vulnerable module: libsepol/libsepol1
  • Introduced through: libsepol/libsepol1@2.6-2

Detailed paths

  • Introduced through: node@16-stretch-slim libsepol/libsepol1@2.6-2

NVD Description

Note: Versions mentioned in the description apply only to the upstream libsepol package and not the libsepol package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.

Remediation

There is no fixed version for Debian:9 libsepol.

References

low severity

Use After Free

  • Vulnerable module: libsepol/libsepol1
  • Introduced through: libsepol/libsepol1@2.6-2

Detailed paths

  • Introduced through: node@16-stretch-slim libsepol/libsepol1@2.6-2

NVD Description

Note: Versions mentioned in the description apply only to the upstream libsepol package and not the libsepol package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).

Remediation

There is no fixed version for Debian:9 libsepol.

References

low severity

Use After Free

  • Vulnerable module: libsepol/libsepol1
  • Introduced through: libsepol/libsepol1@2.6-2

Detailed paths

  • Introduced through: node@16-stretch-slim libsepol/libsepol1@2.6-2

NVD Description

Note: Versions mentioned in the description apply only to the upstream libsepol package and not the libsepol package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).

Remediation

There is no fixed version for Debian:9 libsepol.

References

low severity

Use After Free

  • Vulnerable module: libsepol/libsepol1
  • Introduced through: libsepol/libsepol1@2.6-2

Detailed paths

  • Introduced through: node@16-stretch-slim libsepol/libsepol1@2.6-2

NVD Description

Note: Versions mentioned in the description apply only to the upstream libsepol package and not the libsepol package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).

Remediation

There is no fixed version for Debian:9 libsepol.

References

low severity

Link Following

  • Vulnerable module: perl/perl-base
  • Introduced through: perl/perl-base@5.24.1-3+deb9u7

Detailed paths

  • Introduced through: node@16-stretch-slim perl/perl-base@5.24.1-3+deb9u7

NVD Description

Note: Versions mentioned in the description apply only to the upstream perl package and not the perl package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

_is_safe in the File::Temp module for Perl does not properly handle symlinks.

Remediation

There is no fixed version for Debian:9 perl.

References

low severity

Out-of-bounds Read

  • Vulnerable module: tar
  • Introduced through: tar@1.29b-1.1+deb9u1

Detailed paths

  • Introduced through: node@16-stretch-slim tar@1.29b-1.1+deb9u1

NVD Description

Note: Versions mentioned in the description apply only to the upstream tar package and not the tar package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.

Remediation

There is no fixed version for Debian:9 tar.

References

low severity

Double Free

  • Vulnerable module: glibc/libc-bin
  • Introduced through: glibc/libc-bin@2.24-11+deb9u4, glibc/libc6@2.24-11+deb9u4 and others

Detailed paths

  • Introduced through: node@16-stretch-slim glibc/libc-bin@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/libc6@2.24-11+deb9u4
  • Introduced through: node@16-stretch-slim glibc/multiarch-support@2.24-11+deb9u4

NVD Description

Note: Versions mentioned in the description apply only to the upstream glibc package and not the glibc package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.

Remediation

There is no fixed version for Debian:9 glibc.

References

low severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: systemd/libsystemd0
  • Introduced through: systemd/libsystemd0@232-25+deb9u13 and systemd/libudev1@232-25+deb9u13

Detailed paths

  • Introduced through: node@16-stretch-slim systemd/libsystemd0@232-25+deb9u13
  • Introduced through: node@16-stretch-slim systemd/libudev1@232-25+deb9u13

NVD Description

Note: Versions mentioned in the description apply only to the upstream systemd package and not the systemd package as distributed by Debian. See How to fix? for Debian:9 relevant fixed versions and status.

An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.

Remediation

There is no fixed version for Debian:9 systemd.

References

low severity

Authorization Bypass

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Authorization Bypass via fs.fchown or fs.fchmod operations which can use a "read-only" file descriptor to change the owner and permissions of a file.

Note: This is only exploitable for users using the experimental permission when the --allow-fs-write flag is used

Remediation

Upgrade node to version 20.15.1, 22.4.1 or higher.

References

low severity

Authorization Bypass

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Authorization Bypass due to a failure to restrict file stats through the fs.lstat API that allows attackers to retrieve stats from files to which they do not have explicit read access.

Note: This is exploitable only for users of the experimental permission model when the --allow-fs-read flag is used.

Remediation

Upgrade node to version 20.15.1, 22.4.1 or higher.

References

low severity

Improper Handling of Values

  • Vulnerable module: node
  • Introduced through: node@16.15.1

Detailed paths

  • Introduced through: docker-image|node@16-stretch-slim node@16.15.1

Overview

node is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Affected versions of this package are vulnerable to Improper Handling of Values. This is because the Permission Model assumes wrongly that any path starting with two backslashes \ has a four-character prefix that can be ignored.

Note: This vulnerability affects only Windows users of the Node.js Permission Model

Remediation

Upgrade node to version 20.15.1, 22.4.1 or higher.

References