Vulnerabilities |
146 via 268 paths |
|---|---|
Dependencies |
79 |
Source |
Docker |
Target OS |
debian:9 |
critical severity
new
- 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
- 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
- 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
wspackage
Remediation
Upgrade node to version 20.19.2, 22.15.1, 23.11.1, 24.0.2 or higher.
References
high severity
new
- 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
- 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
- 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:
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;
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
- 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
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2020-1712
- https://github.com/systemd/systemd/commit/1068447e6954dc6ce52f099ed174c442cb89ed54
- https://github.com/systemd/systemd/commit/637486261528e8aa3da9f26a4487dc254f4b7abb
- https://github.com/systemd/systemd/commit/bc130b6858327b382b07b3985cf48e2aa9016b2d
- https://github.com/systemd/systemd/commit/ea0d0ede03c6f18dbc5036c5e9cccf97e415ccc2
- https://www.openwall.com/lists/oss-security/2020/02/05/1
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1712
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2020-1712
- https://lists.debian.org/debian-lts-announce/2022/06/msg00025.html
high severity
new
- 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
- 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
wspackage
Remediation
Upgrade node to version 18.19.1, 20.11.1, 21.6.2 or higher.
References
high severity
- 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
wspackage
Remediation
Upgrade node to version 18.20.1, 20.12.1, 21.7.2 or higher.
References
high severity
- 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
- 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
wspackage
Remediation
Upgrade node to version 16.19.1, 18.14.1, 19.6.1 or higher.
References
high severity
- 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
wspackage
Remediation
Upgrade node to version 16.19.1, 18.14.1, 19.2.0 or higher.
References
high severity
- 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
wspackage
Remediation
Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.
References
high severity
- 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
- 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
- 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
- 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
Objectrecursive mergeProperty 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
Freeze the prototype— use
Object.freeze (Object.prototype).Require schema validation of JSON input.
Avoid using unsafe recursive merge functions.
Consider using objects without prototypes (for example,
Object.create(null)), breaking the prototype chain and preventing pollution.As a best practice use
Mapinstead ofObject.
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
- 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:
- 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.
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2022-34903
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/
- http://www.openwall.com/lists/oss-security/2022/07/02/1
- https://bugs.debian.org/1014157
- https://dev.gnupg.org/T6027
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/
- https://security.netapp.com/advisory/ntap-20220826-0005/
- https://www.debian.org/security/2022/dsa-5174
- https://www.openwall.com/lists/oss-security/2022/06/30/1
medium severity
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
wspackage
Remediation
Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.
References
medium severity
- 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
wspackage
Remediation
Upgrade node to version 14.21.3, 16.19.1, 18.14.1, 19.6.1 or higher.
References
medium severity
- 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
wspackage
Remediation
Upgrade node to version 16.19.1, 18.14.1, 19.6.1 or higher.
References
medium severity
- 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
wspackage
Remediation
Upgrade node to version 16.19.1, 18.14.1, 19.6.1 or higher.
References
medium severity
- 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
wspackage
Remediation
Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.
References
medium severity
- 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
- 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
- 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
- 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
- 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
- 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
- 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
wspackage
Remediation
Upgrade node to version 16.20.1, 18.16.1, 20.3.1 or higher.
References
medium severity
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-12900
- https://seclists.org/bugtraq/2019/Aug/4
- https://seclists.org/bugtraq/2019/Jul/22
- https://support.f5.com/csp/article/K68713584?utm_source=f5support&utm_medium=RSS
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12900
- https://lists.debian.org/debian-lts-announce/2019/06/msg00021.html
- https://security.FreeBSD.org/advisories/FreeBSD-SA-19:18.bzip2.asc
- http://packetstormsecurity.com/files/153644/Slackware-Security-Advisory-bzip2-Updates.html
- http://packetstormsecurity.com/files/153957/FreeBSD-Security-Advisory-FreeBSD-SA-19-18.bzip2.html
- https://gitlab.com/federicomenaquintero/bzip2/commit/74de1e2e6ffc9d51ef9824db71a8ffee5962cdbc
- https://www.oracle.com/security-alerts/cpuoct2020.html
- https://lists.apache.org/thread.html/ra0adb9653c7de9539b93cc8434143b655f753b9f60580ff260becb2b@%3Cusers.kafka.apache.org%3E
- https://lists.apache.org/thread.html/rce8cd8c30f60604b580ea01bebda8a671a25c9a1629f409fc24e7774@%3Cuser.flink.apache.org%3E
- https://lists.apache.org/thread.html/rda98305669476c4d90cc8527c4deda7e449019dd1fe9936b56671dd4@%3Cuser.flink.apache.org%3E
- https://lists.debian.org/debian-lts-announce/2019/07/msg00014.html
- https://lists.debian.org/debian-lts-announce/2019/10/msg00012.html
- https://lists.debian.org/debian-lts-announce/2019/10/msg00018.html
- http://lists.opensuse.org/opensuse-security-announce/2019-07/msg00040.html
- http://lists.opensuse.org/opensuse-security-announce/2019-08/msg00050.html
- http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00078.html
- http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00000.html
- https://usn.ubuntu.com/4146-1/
- https://usn.ubuntu.com/4146-2/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-12900
- https://usn.ubuntu.com/4038-1/
- https://usn.ubuntu.com/4038-2/
- https://lists.apache.org/thread.html/ra0adb9653c7de9539b93cc8434143b655f753b9f60580ff260becb2b%40%3Cusers.kafka.apache.org%3E
- https://lists.apache.org/thread.html/rce8cd8c30f60604b580ea01bebda8a671a25c9a1629f409fc24e7774%40%3Cuser.flink.apache.org%3E
- https://lists.apache.org/thread.html/rda98305669476c4d90cc8527c4deda7e449019dd1fe9936b56671dd4%40%3Cuser.flink.apache.org%3E
- https://support.f5.com/csp/article/K68713584?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-8457
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/
- https://www.oracle.com/security-alerts/cpujan2020.html
- https://www.oracle.com/security-alerts/cpujul2020.html
- https://www.sqlite.org/releaselog/3_28_0.html
- https://www.sqlite.org/src/info/90acdbfce9c08858
- https://www.oracle.com/security-alerts/cpuapr2020.html
- https://security.netapp.com/advisory/ntap-20190606-0002/
- http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html
- https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-8457
- https://usn.ubuntu.com/4004-1/
- https://usn.ubuntu.com/4004-2/
- https://usn.ubuntu.com/4019-1/
- https://usn.ubuntu.com/4019-2/
- https://kc.mcafee.com/corporate/index?page=content&id=SB10365
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/
low severity
- 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
- 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
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-9169
- https://kc.mcafee.com/corporate/index?page=content&id=SB10278
- https://support.f5.com/csp/article/K54823184
- https://security.gentoo.org/glsa/202006-04
- https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34140
- https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34142
- https://sourceware.org/bugzilla/show_bug.cgi?id=24114
- https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=583dd860d5b833037175247230a328f0050dbfe9
- https://security.netapp.com/advisory/ntap-20190315-0002/
- http://www.securityfocus.com/bid/107160
- https://usn.ubuntu.com/4416-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-9169
- https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Ba=commit%3Bh=583dd860d5b833037175247230a328f0050dbfe9
- https://www.oracle.com/security-alerts/cpuapr2022.html
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-6485
- https://sourceware.org/bugzilla/show_bug.cgi?id=22343
- http://bugs.debian.org/878159
- https://security.netapp.com/advisory/ntap-20190404-0003/
- https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html
- https://access.redhat.com/errata/RHBA-2019:0327
- https://access.redhat.com/errata/RHSA-2018:3092
- http://www.securityfocus.com/bid/102912
- https://usn.ubuntu.com/4416-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-6485
- https://usn.ubuntu.com/4218-1/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-6551
- https://sourceware.org/bugzilla/show_bug.cgi?id=22774
- https://sourceware.org/git/?p=glibc.git;a=commit;h=8e448310d74b283c5cd02b9ed7fb997b47bf9b22
- https://security.netapp.com/advisory/ntap-20190404-0003/
- https://sourceware.org/git/?p=glibc.git%3Ba=commit%3Bh=8e448310d74b283c5cd02b9ed7fb997b47bf9b22
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-33574
- https://security.netapp.com/advisory/ntap-20210629-0005/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/
- https://security.gentoo.org/glsa/202107-07
- https://sourceware.org/bugzilla/show_bug.cgi?id=27896
- https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2005-2541
- http://marc.info/?l=bugtraq&m=112327628230258&w=2
- https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E
- https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c%40%3Cissues.guacamole.apache.org%3E
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-35942
- https://security.netapp.com/advisory/ntap-20210827-0005/
- https://sourceware.org/bugzilla/show_bug.cgi?id=28011
- https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c
- https://sourceware.org/glibc/wiki/Security%20Exceptions
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://security.gentoo.org/glsa/202208-24
- https://sourceware.org/git/?p=glibc.git%3Ba=commit%3Bh=5adda61f62b77384718b4c0d8336ade8f2b4b35c
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-1010023
- https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS
- https://sourceware.org/bugzilla/show_bug.cgi?id=22851
- http://www.securityfocus.com/bid/109167
- https://ubuntu.com/security/CVE-2019-1010023
- https://support.f5.com/csp/article/K11932200?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-39537
- http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/patch-ncurses_tinfo_captoinfo.c?rev=1.1&content-type=text/x-cvsweb-markup
- https://lists.gnu.org/archive/html/bug-ncurses/2020-08/msg00006.html
- https://lists.gnu.org/archive/html/bug-ncurses/2021-10/msg00023.html
- http://seclists.org/fulldisclosure/2022/Oct/28
- http://seclists.org/fulldisclosure/2022/Oct/41
- http://seclists.org/fulldisclosure/2022/Oct/43
- http://seclists.org/fulldisclosure/2022/Oct/45
- https://support.apple.com/kb/HT213443
- https://support.apple.com/kb/HT213444
- https://support.apple.com/kb/HT213488
- https://security.netapp.com/advisory/ntap-20230427-0012/
- https://lists.debian.org/debian-lts-announce/2023/12/msg00004.html
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2020-6096
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/
- https://security.gentoo.org/glsa/202101-20
- https://sourceware.org/bugzilla/show_bug.cgi?id=25620
- https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/
low severity
- 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
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-17543
- https://security-tracker.debian.org/tracker/CVE-2019-17543
- https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E
- https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2
- https://github.com/lz4/lz4/issues/801
- https://github.com/lz4/lz4/pull/756
- https://github.com/lz4/lz4/pull/760
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941
- https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E
- https://www.oracle.com/security-alerts/cpuoct2020.html
- https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E
- https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E
- https://www.oracle.com//security-alerts/cpujul2021.html
- http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html
- http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-17543
- https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17%40%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6%40%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357%40%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3%40%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316%40%3Cissues.arrow.apache.org%3E
- https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3%40%3Cdev.arrow.apache.org%3E
- https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26%40%3Cissues.kudu.apache.org%3E
- https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720%40%3Cissues.kudu.apache.org%3E
- https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960%40%3Cissues.kudu.apache.org%3E
- https://security.netapp.com/advisory/ntap-20210723-0001/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-18276
- https://security.netapp.com/advisory/ntap-20200430-0003/
- https://security.gentoo.org/glsa/202105-34
- https://github.com/bminor/bash/commit/951bdaad7a18cc0dc1036bba86b18b90874d39ff
- http://packetstormsecurity.com/files/155498/Bash-5.0-Patch-11-Privilege-Escalation.html
- https://www.youtube.com/watch?v=-wGtxJ8opa8
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-18276
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
- https://www.oracle.com/security-alerts/cpuapr2022.html
- https://www.exploit-db.com/exploits/47726
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2022-1304
- https://access.redhat.com/errata/RHSA-2022:7720
- https://access.redhat.com/errata/RHSA-2022:8361
- https://access.redhat.com/security/cve/CVE-2022-1304
- https://lists.debian.org/debian-lts-announce/2024/10/msg00001.html
- https://security.netapp.com/advisory/ntap-20241122-0010/
- https://bugzilla.redhat.com/show_bug.cgi?id=2069726
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-3999
- https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e
- https://access.redhat.com/errata/RHSA-2022:0896
- https://access.redhat.com/security/cve/CVE-2021-3999
- https://bugzilla.redhat.com/show_bug.cgi?id=2024637
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://security.netapp.com/advisory/ntap-20221104-0001/
- https://sourceware.org/bugzilla/show_bug.cgi?id=28769
- https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e
- https://www.openwall.com/lists/oss-security/2022/01/24/4
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-1000001
- https://www.exploit-db.com/exploits/43775/
- https://www.exploit-db.com/exploits/44889/
- https://www.halfdog.net/Security/2017/LibcRealpathBufferUnderflow/
- https://security.netapp.com/advisory/ntap-20190404-0003/
- http://seclists.org/oss-sec/2018/q1/38
- https://access.redhat.com/errata/RHSA-2018:0805
- http://www.securityfocus.com/bid/102525
- http://www.securitytracker.com/id/1040162
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-1000001
- https://usn.ubuntu.com/3534-1/
- https://usn.ubuntu.com/3536-1/
- https://www.exploit-db.com/exploits/44889
- https://github.com/0x00-0x00/CVE-2018-1000001
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2017-7245
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-7245
- https://security.gentoo.org/glsa/201710-25
- https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/
- https://access.redhat.com/errata/RHSA-2018:2486
- http://www.securityfocus.com/bid/97067
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-7245
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2017-7246
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-7246
- https://security.gentoo.org/glsa/201710-25
- https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/
- https://access.redhat.com/errata/RHSA-2018:2486
- http://www.securityfocus.com/bid/97067
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-7246
low severity
- 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.
CPAN 2.28 allows Signature Verification Bypass.
Remediation
There is no fixed version for Debian:9 perl.
References
- https://security-tracker.debian.org/tracker/CVE-2020-16156
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/
- http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html
- https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/
- https://lists.debian.org/debian-lts-announce/2024/10/msg00017.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/
- https://metacpan.org/pod/distribution/CPAN/scripts/cpan
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-19882
- https://security.gentoo.org/glsa/202008-09
- https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75
- https://github.com/shadow-maint/shadow/pull/199
- https://github.com/void-linux/void-packages/pull/17580
- https://bugs.archlinux.org/task/64836
- https://bugs.gentoo.org/702252
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-6954
- https://github.com/systemd/systemd/issues/7986
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- http://lists.opensuse.org/opensuse-security-announce/2019-05/msg00062.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-6954
- https://usn.ubuntu.com/3816-1/
- https://usn.ubuntu.com/3816-2/
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-3843
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- https://security.netapp.com/advisory/ntap-20190619-0002/
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843
- http://www.securityfocus.com/bid/108116
- https://usn.ubuntu.com/4269-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-3843
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2017-18078
- https://lists.debian.org/debian-lts-announce/2019/04/msg00022.html
- https://www.exploit-db.com/exploits/43935/
- https://github.com/systemd/systemd/issues/7736
- http://packetstormsecurity.com/files/146184/systemd-Local-Privilege-Escalation.html
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- http://lists.opensuse.org/opensuse-updates/2018-02/msg00109.html
- https://www.openwall.com/lists/oss-security/2018/01/29/4
- http://www.openwall.com/lists/oss-security/2018/01/29/3
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-3844
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- https://security.netapp.com/advisory/ntap-20190619-0002/
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844
- http://www.securityfocus.com/bid/108096
- https://usn.ubuntu.com/4269-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-3844
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2009-5155
- https://support.f5.com/csp/article/K64119434
- https://support.f5.com/csp/article/K64119434?utm_source=f5support&utm_medium=RSS
- http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=5513b40999149090987a0341c018d05d3eea1272
- https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22793
- https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32806
- https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34238
- https://sourceware.org/bugzilla/show_bug.cgi?id=11053
- https://sourceware.org/bugzilla/show_bug.cgi?id=18986
- https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=eb04c21373e2a2885f3d52ff192b0499afe3c672
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- https://security.netapp.com/advisory/ntap-20190315-0002/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2009-5155
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
- https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=eb04c21373e2a2885f3d52ff192b0499afe3c672
- https://support.f5.com/csp/article/K64119434?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-3326
- https://security.netapp.com/advisory/ntap-20210304-0007/
- https://sourceware.org/bugzilla/show_bug.cgi?id=27256
- https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888
- http://www.openwall.com/lists/oss-security/2021/01/28/2
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://security.gentoo.org/glsa/202107-07
- https://sourceware.org/git/?p=glibc.git%3Ba=commit%3Bh=7d88c6142c6efc160c0ee5e4f85cde382c072888
- https://www.oracle.com/security-alerts/cpuapr2022.html
- https://www.oracle.com/security-alerts/cpujan2022.html
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-9192
- https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS
- https://sourceware.org/bugzilla/show_bug.cgi?id=24269
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-9192
- https://support.f5.com/csp/article/K26346590?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-20796
- https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS
- https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141
- https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html
- https://security.netapp.com/advisory/ntap-20190315-0002/
- http://www.securityfocus.com/bid/107160
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20796
- https://support.f5.com/csp/article/K26346590?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- 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
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855
- https://security-tracker.debian.org/tracker/CVE-2019-14855
- https://dev.gnupg.org/T4755
- https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html
- https://rwc.iacr.org/2020/slides/Leurent.pdf
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855
- https://usn.ubuntu.com/4516-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-14855
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-33560
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/
- https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61
- https://dev.gnupg.org/T5305
- https://dev.gnupg.org/T5328
- https://dev.gnupg.org/T5466
- https://www.oracle.com/security-alerts/cpuoct2021.html
- https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/
- https://security.gentoo.org/glsa/202210-13
- https://www.oracle.com/security-alerts/cpuapr2022.html
- https://www.oracle.com/security-alerts/cpujan2022.html
- https://www.oracle.com/security-alerts/cpujul2022.html
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-6829
- https://github.com/weikengchen/attack-on-libgcrypt-elgamal
- https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki
- https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html
- https://www.oracle.com/security-alerts/cpujan2020.html
low severity
- 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
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-20838
- https://security-tracker.debian.org/tracker/CVE-2019-20838
- https://support.apple.com/kb/HT211931
- https://support.apple.com/kb/HT212147
- http://seclists.org/fulldisclosure/2020/Dec/32
- http://seclists.org/fulldisclosure/2021/Feb/14
- https://bugs.gentoo.org/717920
- https://www.pcre.org/original/changelog.txt
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2017-11164
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- http://openwall.com/lists/oss-security/2017/07/11/3
- http://www.securityfocus.com/bid/99575
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-11164
- http://www.openwall.com/lists/oss-security/2023/04/11/1
- http://www.openwall.com/lists/oss-security/2023/04/12/1
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
low severity
- 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.
pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.
Remediation
There is no fixed version for Debian:9 tar.
References
- https://security-tracker.debian.org/tracker/CVE-2019-9923
- http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120
- http://savannah.gnu.org/bugs/?55369
- https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-9923
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2022-29458
- http://seclists.org/fulldisclosure/2022/Oct/28
- http://seclists.org/fulldisclosure/2022/Oct/41
- https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html
- https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html
- https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html
- https://support.apple.com/kb/HT213488
low severity
- 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
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2020-1751
- https://security-tracker.debian.org/tracker/CVE-2020-1751
- https://security.gentoo.org/glsa/202006-04
- https://sourceware.org/bugzilla/show_bug.cgi?id=25423
- https://security.netapp.com/advisory/ntap-20200430-0002/
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751
- https://usn.ubuntu.com/4416-1/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2020-1752
- https://sourceware.org/bugzilla/show_bug.cgi?id=25414
- https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c
- https://security.gentoo.org/glsa/202101-20
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E
- https://security.netapp.com/advisory/ntap-20200511-0005/
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752
- https://usn.ubuntu.com/4416-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2020-1752
- https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4%40%3Cissues.bookkeeper.apache.org%3E
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=ddc650e9b3dc916eab417ce9f79e67337b05035c
low severity
- 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
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2020-13776
- https://security-tracker.debian.org/tracker/CVE-2020-13776
- https://security.netapp.com/advisory/ntap-20200611-0003/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IYGLFEKG45EYBJ7TPQMLWROWPTZBEU63/
- https://github.com/systemd/systemd/issues/15985
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/IYGLFEKG45EYBJ7TPQMLWROWPTZBEU63/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2016-2781
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- http://www.openwall.com/lists/oss-security/2016/02/28/2
- http://www.openwall.com/lists/oss-security/2016/02/28/3
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2016-2781
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
low severity
- 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
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627
- https://security-tracker.debian.org/tracker/CVE-2019-13627
- https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html
- https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html
- https://security.gentoo.org/glsa/202003-32
- https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5
- https://minerva.crocs.fi.muni.cz/
- http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html
- http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html
- http://www.openwall.com/lists/oss-security/2019/10/02/2
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-13627
- https://usn.ubuntu.com/4236-1/
- https://usn.ubuntu.com/4236-2/
- https://usn.ubuntu.com/4236-3/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2007-5686
- http://www.securityfocus.com/archive/1/482129/100/100/threaded
- http://www.securityfocus.com/archive/1/482857/100/0/threaded
- https://issues.rpath.com/browse/RPL-1825
- http://secunia.com/advisories/27215
- http://www.securityfocus.com/bid/26048
- http://www.vupen.com/english/advisories/2007/3474
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2020-13529
- https://security.netapp.com/advisory/ntap-20210625-0005/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/
- https://security.gentoo.org/glsa/202107-48
- https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142
- http://www.openwall.com/lists/oss-security/2021/08/04/2
- http://www.openwall.com/lists/oss-security/2021/08/17/3
- http://www.openwall.com/lists/oss-security/2021/09/07/3
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2015-8985
- https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779392
- https://security.gentoo.org/glsa/201908-06
- http://www.openwall.com/lists/oss-security/2017/02/14/9
- http://www.securityfocus.com/bid/76916
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2015-8985
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2016-10228
- https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21
- https://sourceware.org/bugzilla/show_bug.cgi?id=26224
- https://security.gentoo.org/glsa/202101-20
- https://sourceware.org/bugzilla/show_bug.cgi?id=19519
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- http://openwall.com/lists/oss-security/2017/03/01/10
- http://www.securityfocus.com/bid/96525
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2016-10228
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://www.oracle.com/security-alerts/cpuapr2022.html
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-25013
- https://security.netapp.com/advisory/ntap-20210205-0004/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/
- https://sourceware.org/bugzilla/show_bug.cgi?id=24973
- https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b
- https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E
- https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E
- https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f%40%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7%40%3Cdev.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2%40%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9%40%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff%40%3Cjira.kafka.apache.org%3E
- https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece%40%3Cissues.zookeeper.apache.org%3E
- https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc%40%3Cdev.zookeeper.apache.org%3E
- https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c%40%3Cissues.zookeeper.apache.org%3E
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/
- https://security.gentoo.org/glsa/202107-07
- https://sourceware.org/git/?p=glibc.git%3Ba=commit%3Bh=ee7a3144c9922808181009b7b3e50e852fb4999b
- https://www.oracle.com/security-alerts/cpuapr2022.html
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-7309
- https://security.gentoo.org/glsa/202006-04
- https://sourceware.org/bugzilla/show_bug.cgi?id=24155
- https://sourceware.org/ml/libc-alpha/2019-02/msg00041.html
- http://www.securityfocus.com/bid/106835
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-7309
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2020-27618
- https://security.netapp.com/advisory/ntap-20210401-0006/
- https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21
- https://sourceware.org/bugzilla/show_bug.cgi?id=26224
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://security.gentoo.org/glsa/202107-07
- https://www.oracle.com/security-alerts/cpuapr2022.html
- https://www.oracle.com/security-alerts/cpujan2022.html
low severity
- 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
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2020-10029
- https://security-tracker.debian.org/tracker/CVE-2020-10029
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/
- https://security.gentoo.org/glsa/202006-04
- https://sourceware.org/bugzilla/show_bug.cgi?id=25487
- https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f
- https://security.netapp.com/advisory/ntap-20200327-0003/
- http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html
- https://usn.ubuntu.com/4416-1/
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/
- https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Ba=commit%3Bh=9333498794cde1d5cca518badf79533a24114b6f
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2017-16231
- https://bugs.exim.org/show_bug.cgi?id=2047
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16231
- http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html
- http://www.openwall.com/lists/oss-security/2017/11/01/11
- http://www.openwall.com/lists/oss-security/2017/11/01/3
- http://www.openwall.com/lists/oss-security/2017/11/01/7
- http://www.openwall.com/lists/oss-security/2017/11/01/8
- http://seclists.org/fulldisclosure/2018/Dec/33
- http://www.securityfocus.com/bid/101688
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-3997
- https://access.redhat.com/security/cve/CVE-2021-3997
- https://bugzilla.redhat.com/show_bug.cgi?id=2024639
- https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1
- https://security.gentoo.org/glsa/202305-15
- https://www.openwall.com/lists/oss-security/2022/01/10/2
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2022-0563
- https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u
- https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w%40ws.net.home/T/#u
- https://security.gentoo.org/glsa/202401-08
- https://security.netapp.com/advisory/ntap-20220331-0002/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-37600
- https://security.netapp.com/advisory/ntap-20210902-0002/
- https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c
- https://github.com/karelzak/util-linux/issues/1395
- https://lists.debian.org/debian-lts-announce/2024/04/msg00005.html
- https://security.gentoo.org/glsa/202401-08
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-17595
- https://security.gentoo.org/glsa/202101-28
- https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00013.html
- https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html
- http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html
- http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-17595
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2016-10739
- https://sourceware.org/bugzilla/show_bug.cgi?id=20018
- http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00082.html
- https://access.redhat.com/errata/RHSA-2019:3513
- https://bugzilla.redhat.com/show_bug.cgi?id=1347549
- https://access.redhat.com/errata/RHSA-2019:2118
- http://www.securityfocus.com/bid/106672
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2016-10739
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-1010024
- https://support.f5.com/csp/article/K06046097
- https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS
- https://sourceware.org/bugzilla/show_bug.cgi?id=22852
- http://www.securityfocus.com/bid/109162
- https://ubuntu.com/security/CVE-2019-1010024
- https://support.f5.com/csp/article/K06046097?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-1010025
- https://support.f5.com/csp/article/K06046097
- https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS
- https://sourceware.org/bugzilla/show_bug.cgi?id=22853
- https://ubuntu.com/security/CVE-2019-1010025
- https://support.f5.com/csp/article/K06046097?utm_source=f5support&%3Butm_medium=RSS
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-17594
- https://security.gentoo.org/glsa/202101-28
- https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00017.html
- https://lists.gnu.org/archive/html/bug-ncurses/2019-10/msg00045.html
- http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00059.html
- http://lists.opensuse.org/opensuse-security-announce/2019-11/msg00061.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-17594
low severity
- 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.44 allows an integer overflow via a large number after a (?C substring.
Remediation
There is no fixed version for Debian:9 pcre3.
References
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2020-14155
- https://security-tracker.debian.org/tracker/CVE-2020-14155
- https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/
- https://support.apple.com/kb/HT211931
- https://support.apple.com/kb/HT212147
- http://seclists.org/fulldisclosure/2020/Dec/32
- http://seclists.org/fulldisclosure/2021/Feb/14
- https://bugs.gentoo.org/717920
- https://www.pcre.org/original/changelog.txt
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
- https://security.netapp.com/advisory/ntap-20221028-0010/
- https://www.oracle.com/security-alerts/cpuapr2022.html
low severity
- 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
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2013-4235
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235
- https://access.redhat.com/security/cve/cve-2013-4235
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2013-4235
- https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E
- https://security.gentoo.org/glsa/202210-26
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2018-16888
- https://lists.apache.org/thread.html/5960a34a524848cd722fd7ab7e2227eac10107b0f90d9d1e9c3caa74@%3Cuser.cassandra.apache.org%3E
- https://security.netapp.com/advisory/ntap-20190307-0007/
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-16888
- https://access.redhat.com/errata/RHSA-2019:2091
- https://usn.ubuntu.com/4269-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-16888
- https://lists.apache.org/thread.html/5960a34a524848cd722fd7ab7e2227eac10107b0f90d9d1e9c3caa74%40%3Cuser.cassandra.apache.org%3E
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2010-4756
- http://cxib.net/stuff/glob-0day.c
- http://securityreason.com/achievement_securityalert/89
- http://securityreason.com/exploitalert/9223
- https://bugzilla.redhat.com/show_bug.cgi?id=681681
- https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756
- https://security.netapp.com/advisory/ntap-20241108-0002/
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2011-3374
- https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480
- https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html
- https://seclists.org/fulldisclosure/2011/Sep/221
- https://snyk.io/vuln/SNYK-LINUX-APT-116518
- https://ubuntu.com/security/CVE-2011-3374
- https://access.redhat.com/security/cve/cve-2011-3374
low severity
- 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
- 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
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-19126
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/
- https://sourceware.org/bugzilla/show_bug.cgi?id=25204
- https://usn.ubuntu.com/4416-1/
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-19126
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-36087
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675
- https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml
- https://github.com/SELinuxProject/selinux/commit/bad0a746e9f4cf260dedba5828d9645d50176aac
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
- https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/
- https://security.netapp.com/advisory/ntap-20250207-0004/
- https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521
- https://lists.debian.org/debian-lts-announce/2024/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
- https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ%40mail.gmail.com/T/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-36084
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065
- https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml
- https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
- https://security.netapp.com/advisory/ntap-20250207-0004/
- https://lists.debian.org/debian-lts-announce/2024/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-36085
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124
- https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml
- https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
- https://security.netapp.com/advisory/ntap-20250207-0004/
- https://lists.debian.org/debian-lts-announce/2024/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-36086
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177
- https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml
- https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
- https://security.netapp.com/advisory/ntap-20250207-0004/
- https://lists.debian.org/debian-lts-announce/2024/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2011-4116
- https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14
- https://rt.cpan.org/Public/Bug/Display.html?id=69106
- https://seclists.org/oss-sec/2011/q4/238
- http://www.openwall.com/lists/oss-security/2011/11/04/2
- http://www.openwall.com/lists/oss-security/2011/11/04/4
low severity
- 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
- 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
- https://security-tracker.debian.org/tracker/CVE-2021-27645
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/
- https://sourceware.org/bugzilla/show_bug.cgi?id=27462
- https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/
- https://security.gentoo.org/glsa/202107-07
low severity
- 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
- https://security-tracker.debian.org/tracker/CVE-2019-20386
- https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/
- https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad
- https://security.netapp.com/advisory/ntap-20200210-0002/
- http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html
- http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-20386
- https://usn.ubuntu.com/4269-1/
- https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/
low severity
- 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
- 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
- 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.