Upstream information
Description
### SummaryWhen `qs.parse` is called with `comma: true` and `throwOnLimitExceeded: true`, a comma-separated value under a bracket-push key (`a[]=1,2,3,4`) is split into an array without being compared against `arrayLimit`, while the same value under a flat key (`a=1,2,3,4`), an indexed key (`a[0]=`), a nested key (`a[b]=`), or a dotted key (`a.b=` with `allowDots`) throws the documented `RangeError`. A single parameter such as `a[]=1,2,2,...` therefore produces an inner array of arbitrary length even though the caller opted into the hard limit. This is the `[]=` key form that the fix for CVE-2026-2391 (qs 6.14.2) did not cover.
### Details
In `lib/parse.js`, a comma-separated value under a `[]=` key is split and then wrapped as a single nested element (`val = [val]`, so that each `a[]=x,y` group counts as one element of the outer array). The `arrayLimit` check that 6.14.2 added for comma values runs after that wrap, so for `[]=` parts it only ever saw the wrapper of length 1. 6.15.3 added a pre-split comma count so that an oversized value throws before it is allocated, but gated it on an `isFlatArrayValue` flag that `parseValues` set to `false` for any part containing `[]=`, and did not pass it for object-valued input, so the gap remained.
#### PoC
```js
var qs = require('qs');
var options = { comma: true, arrayLimit: 3, throwOnLimitExceeded: true };
qs.parse('a=1,2,3,4', options); // RangeError: Array limit exceeded. Only 3 elements allowed in an array.
qs.parse('a[]=1,2,3,4', options); // { a: [ [ '1', '2', '3', '4' ] ] } (no throw)
qs.parse('a[]=' + '1,'.repeat(1000000) + '1', { comma: true, arrayLimit: 20, throwOnLimitExceeded: true });
// no throw; a 1,000,001-element inner array is allocated
```
#### Fix
`lib/parse.js`, applied in 8859c37 on `main` and released as v6.16.0: the `isFlatArrayValue` gate is removed, so every comma-split value is counted against `arrayLimit` before splitting regardless of key form. An in-limit group under `a[]=` still counts as one element of the outer array, and the default (`throwOnLimitExceeded: false`) path is unchanged.
### Affected versions
`>=6.14.2 <6.16.0`, fixed in v6.16.0.
v6.14.2 introduced `arrayLimit` enforcement for comma values (the fix for CVE-2026-2391) but only for values not under a `[]=` key, and every release from v6.14.2 through v6.15.3 has the same gap. v6.14.0 and v6.14.1, where `throwOnLimitExceeded` exists but does not apply to any comma form, are covered by CVE-2026-2391 rather than this record. Earlier lines (6.7.x through 6.13.x) have `comma` but no `throwOnLimitExceeded`, so there is no hard cap on any comma path to bypass; releases before 6.7.0 have no `comma` option.
### Impact
An unauthenticated attacker who can reach an application that parses untrusted query strings or urlencoded bodies with both `comma: true` and `throwOnLimitExceeded: true` (both non-default) can bypass the configured limit with a single `a[]=` parameter and force the parser to allocate an array proportional to the request size. The cost is strictly linear in the attacker-supplied bytes (about 0.1 microseconds and 6 to 7 retained bytes per input byte; the same out-of-memory threshold as the documented default `throwOnLimitExceeded: false` path), so a transport-layer request or body size limit bounds it completely (and node's default maximum HTTP header size of 16 KB already bounds the request line, so multi-megabyte payloads need a body parser). The impact is that an opt-in hard limit fails open on one key spelling, not unbounded allocation from a small input.
SUSE information
Overall state of this security issue: Resolved
This issue is currently rated as having moderate severity.
| CVSS detail | CNA (harborist) | SUSE |
|---|---|---|
| Base Score | 3.7 | 5.3 |
| Vector | CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L |
| Attack Vector | Network | Network |
| Attack Complexity | High | Low |
| Privileges Required | None | None |
| User Interaction | None | None |
| Scope | Unchanged | Unchanged |
| Confidentiality Impact | None | None |
| Integrity Impact | None | None |
| Availability Impact | Low | Low |
| CVSSv3 Version | 3.1 | 3.1 |
| CVSS detail | CNA (harborist) | SUSE |
|---|---|---|
| Base Score | 6.3 | 6.3 |
| Vector | CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X | CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N |
| Attack Vector | Network | Network |
| Attack Complexity | Low | Low |
| Attack Requirements | Present | Present |
| Privileges Required | None | None |
| User Interaction | None | None |
| Vulnerable System Confidentiality Impact | None | None |
| Vulnerable System Integrity Impact | None | None |
| Vulnerable System Availability Impact | Low | Low |
| Subsequent System Confidentiality Impact | None | None |
| Subsequent System Integrity Impact | None | None |
| Subsequent System Availability Impact | None | None |
| CVSSv4 Version | 4.0 | 4.0 |
Status of this issue by product and package
Please note that this evaluation state might be work in progress, incomplete or outdated. Also information for service packs in the LTSS phase is only included for issues meeting the LTSS criteria. If in doubt, feel free to contact us for clarification. The updates are grouped by state of their lifecycle. SUSE product lifecycles are documented on the lifecycle page.
| Product(s) | Source package | State |
|---|---|---|
| Products under general support and receiving all security fixes. | ||
| SUSE Linux Enterprise Desktop 15 SP7 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 12 | nodejs18 | Not affected |
| SUSE Linux Enterprise Micro 5.3 | cockpit | Not affected |
| SUSE Linux Enterprise Micro 5.3 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Micro 5.4 | cockpit | Not affected |
| SUSE Linux Enterprise Micro 5.4 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Micro 5.5 | cockpit | Not affected |
| SUSE Linux Enterprise Micro 5.5 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP7 | golang-github-prometheus-prometheus | Not affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP7 | python-pytest-html | Not affected |
| SUSE Linux Enterprise Module for Python 3 15 SP7 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP7 | nodejs22 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP7 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server 15 SP7 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server 15 SP7 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server 15 SP7 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 16.0 | cockpit | Not affected |
| SUSE Linux Enterprise Server 16.0 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Server 16.0 | golang-github-prometheus-prometheus | Not affected |
| SUSE Linux Enterprise Server 16.0 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server 16.0 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server 16.0 | velociraptor | Not affected |
| SUSE Linux Enterprise Server 16.1 | cockpit | Not affected |
| SUSE Linux Enterprise Server 16.1 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Server 16.1 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server 16.1 | velociraptor | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | cockpit | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | golang-github-prometheus-prometheus | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | velociraptor | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | cockpit | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | cockpit-machines | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | nodejs24 | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | velociraptor | Not affected |
| SUSE Linux Micro 6.0 | cockpit | Not affected |
| SUSE Linux Micro 6.0 | cockpit-machines | Not affected |
| SUSE Linux Micro 6.1 | cockpit | Not affected |
| SUSE Linux Micro 6.1 | cockpit-machines | Not affected |
| SUSE Linux Micro 6.2 | cockpit | Not affected |
| SUSE Linux Micro 6.2 | cockpit-machines | Not affected |
| SUSE Manager Client Tools 15 | golang-github-prometheus-prometheus | Not affected |
| SUSE Manager Client Tools for SLE 15 | golang-github-prometheus-prometheus | Not affected |
| SUSE Multi-Linux Manager Client Tools for SLE 15 | golang-github-prometheus-prometheus | Not affected |
| openSUSE Leap 16.0 | cockpit | Not affected |
| openSUSE Leap 16.0 | cockpit-machines | Not affected |
| openSUSE Leap 16.0 | golang-github-prometheus-prometheus | Not affected |
| openSUSE Leap 16.0 | nodejs22 | Not affected |
| openSUSE Leap 16.0 | nodejs24 | Not affected |
| openSUSE Leap 16.0 | velociraptor | Not affected |
| Products under Long Term Service Pack support and receiving important and critical security fixes. | ||
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | nodejs16 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | nodejs18 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5 | nodejs20 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | nodejs18 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | nodejs20 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Python 3 15 SP6 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Server Applications 15 SP4 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Server Applications 15 SP5 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP4 | nodejs16 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP4 | nodejs18 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP5 | nodejs20 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP6 | nodejs20 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP6 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server 12 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 15 SP4 | nodejs16 | Not affected |
| SUSE Linux Enterprise Server 15 SP4 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 15 SP4 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP4-LTSS | nodejs16 | Not affected |
| SUSE Linux Enterprise Server 15 SP4-LTSS | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 15 SP4-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 15 SP5 | nodejs20 | Not affected |
| SUSE Linux Enterprise Server 15 SP5 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP5-LTSS | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 15 SP5-LTSS | nodejs20 | Not affected |
| SUSE Linux Enterprise Server 15 SP5-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP6 | nodejs20 | Not affected |
| SUSE Linux Enterprise Server 15 SP6 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server 15 SP6 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP6-LTSS | nodejs20 | Not affected |
| SUSE Linux Enterprise Server 15 SP6-LTSS | nodejs22 | Not affected |
| SUSE Linux Enterprise Server 15 SP6-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 12 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | nodejs16 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | nodejs20 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | nodejs20 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | nodejs22 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | pgadmin4 | Not affected |
| SUSE Manager Proxy Module 4.3 | golang-github-prometheus-prometheus | Not affected |
| Products past their end of life and not receiving proactive updates anymore. | ||
| SUSE CaaS Platform 4.0 | nodejs10 | Not affected |
| SUSE CaaS Platform 4.0 | nodejs8 | Not affected |
| SUSE CaaS Platform 4.0 | pgadmin4 | Not affected |
| SUSE Enterprise Storage 6 | golang-github-prometheus-prometheus | Not affected |
| SUSE Enterprise Storage 6 | nodejs10 | Not affected |
| SUSE Enterprise Storage 6 | nodejs8 | Not affected |
| SUSE Enterprise Storage 6 | pgadmin4 | Not affected |
| SUSE Enterprise Storage 7 | nodejs10 | Not affected |
| SUSE Enterprise Storage 7 | nodejs12 | Not affected |
| SUSE Enterprise Storage 7 | nodejs14 | Not affected |
| SUSE Enterprise Storage 7 | nodejs8 | Not affected |
| SUSE Enterprise Storage 7 | pgadmin4 | Not affected |
| SUSE Enterprise Storage 7.1 | nodejs12 | Not affected |
| SUSE Enterprise Storage 7.1 | nodejs14 | Not affected |
| SUSE Enterprise Storage 7.1 | nodejs16 | Not affected |
| SUSE Enterprise Storage 7.1 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Desktop 15 SP6 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1 | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1 | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | nodejs12 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | nodejs14 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | nodejs12 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | nodejs14 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | nodejs12 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | nodejs14 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3 | nodejs12 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3 | nodejs14 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3 | nodejs16 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | nodejs12 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | nodejs14 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | nodejs16 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | nodejs12 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | nodejs14 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | nodejs16 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4 | nodejs16 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4 | nodejs18 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4 | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | nodejs16 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | nodejs18 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | nodejs18 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | nodejs20 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | pgadmin4 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15-ESPOS | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15-ESPOS | nodejs8 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15-LTSS | nodejs10 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15-LTSS | nodejs8 | Not affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP5 | golang-github-prometheus-prometheus | Not affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP5 | python-pytest-html | Not affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP6 | golang-github-prometheus-prometheus | Not affected |
| SUSE Linux Enterprise Module for Package Hub 15 SP6 | python-pytest-html | Not affected |
| SUSE Linux Enterprise Module for Server Applications 15 SP1 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Server Applications 15 SP2 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Server Applications 15 SP3 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 12 | nodejs18 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 | nodejs10 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 | nodejs8 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP1 | nodejs10 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP1 | nodejs8 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP2 | nodejs10 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP2 | nodejs12 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP2 | nodejs14 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP2 | nodejs8 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP3 | nodejs12 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP3 | nodejs14 | Not affected |
| SUSE Linux Enterprise Module for Web and Scripting 15 SP3 | nodejs16 | Not affected |
| SUSE Linux Enterprise Real Time 15 SP2 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Real Time 15 SP3 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Real Time 15 SP4 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 12 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 12 SP3 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 12 SP4 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server 15 | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP1 | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 SP1 | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP1 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP1-BCL | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 SP1-BCL | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP1-BCL | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | nodejs12 | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | nodejs14 | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | nodejs12 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | nodejs14 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | nodejs12 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | nodejs14 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | nodejs8 | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP3 | nodejs12 | Not affected |
| SUSE Linux Enterprise Server 15 SP3 | nodejs14 | Not affected |
| SUSE Linux Enterprise Server 15 SP3 | nodejs16 | Not affected |
| SUSE Linux Enterprise Server 15 SP3 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-BCL | nodejs12 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-BCL | nodejs14 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-BCL | nodejs16 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-BCL | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | nodejs12 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | nodejs14 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | nodejs16 | Not affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server 15-LTSS | nodejs10 | Not affected |
| SUSE Linux Enterprise Server 15-LTSS | nodejs8 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 12 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 12 SP3 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 12 SP4 | nodejs18 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 | nodejs10 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 | nodejs8 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP1 | nodejs10 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP1 | nodejs8 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP1 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | nodejs10 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | nodejs12 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | nodejs14 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | nodejs8 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | pgadmin4 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP3 | nodejs12 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP3 | nodejs14 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP3 | nodejs16 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP3 | pgadmin4 | Not affected |
| SUSE Manager Proxy 4.0 | nodejs10 | Not affected |
| SUSE Manager Proxy 4.0 | nodejs8 | Not affected |
| SUSE Manager Proxy 4.0 | pgadmin4 | Not affected |
| SUSE Manager Proxy 4.1 | nodejs10 | Not affected |
| SUSE Manager Proxy 4.1 | nodejs12 | Not affected |
| SUSE Manager Proxy 4.1 | nodejs14 | Not affected |
| SUSE Manager Proxy 4.1 | nodejs8 | Not affected |
| SUSE Manager Proxy 4.1 | pgadmin4 | Not affected |
| SUSE Manager Proxy 4.2 | nodejs12 | Not affected |
| SUSE Manager Proxy 4.2 | nodejs14 | Not affected |
| SUSE Manager Proxy 4.2 | nodejs16 | Not affected |
| SUSE Manager Proxy 4.2 | pgadmin4 | Not affected |
| SUSE Manager Proxy 4.3 | nodejs16 | Not affected |
| SUSE Manager Proxy 4.3 | nodejs18 | Not affected |
| SUSE Manager Proxy 4.3 | pgadmin4 | Not affected |
| SUSE Manager Proxy LTS 4.3 | golang-github-prometheus-prometheus | Not affected |
| SUSE Manager Proxy LTS 4.3 | pgadmin4 | Not affected |
| SUSE Manager Proxy Module 4.1 | golang-github-prometheus-prometheus | Not affected |
| SUSE Manager Proxy Module 4.2 | golang-github-prometheus-prometheus | Not affected |
| SUSE Manager Retail Branch Server 4.0 | nodejs10 | Not affected |
| SUSE Manager Retail Branch Server 4.0 | nodejs8 | Not affected |
| SUSE Manager Retail Branch Server 4.0 | pgadmin4 | Not affected |
| SUSE Manager Retail Branch Server 4.1 | nodejs10 | Not affected |
| SUSE Manager Retail Branch Server 4.1 | nodejs12 | Not affected |
| SUSE Manager Retail Branch Server 4.1 | nodejs14 | Not affected |
| SUSE Manager Retail Branch Server 4.1 | nodejs8 | Not affected |
| SUSE Manager Retail Branch Server 4.1 | pgadmin4 | Not affected |
| SUSE Manager Retail Branch Server 4.2 | nodejs12 | Not affected |
| SUSE Manager Retail Branch Server 4.2 | nodejs14 | Not affected |
| SUSE Manager Retail Branch Server 4.2 | nodejs16 | Not affected |
| SUSE Manager Retail Branch Server 4.2 | pgadmin4 | Not affected |
| SUSE Manager Retail Branch Server 4.3 | nodejs16 | Not affected |
| SUSE Manager Retail Branch Server 4.3 | nodejs18 | Not affected |
| SUSE Manager Retail Branch Server 4.3 | pgadmin4 | Not affected |
| SUSE Manager Retail Branch Server LTS 4.3 | pgadmin4 | Not affected |
| SUSE Manager Server 4.0 | nodejs10 | Not affected |
| SUSE Manager Server 4.0 | nodejs8 | Not affected |
| SUSE Manager Server 4.0 | pgadmin4 | Not affected |
| SUSE Manager Server 4.1 | nodejs10 | Not affected |
| SUSE Manager Server 4.1 | nodejs12 | Not affected |
| SUSE Manager Server 4.1 | nodejs14 | Not affected |
| SUSE Manager Server 4.1 | nodejs8 | Not affected |
| SUSE Manager Server 4.1 | pgadmin4 | Not affected |
| SUSE Manager Server 4.2 | nodejs12 | Not affected |
| SUSE Manager Server 4.2 | nodejs14 | Not affected |
| SUSE Manager Server 4.2 | nodejs16 | Not affected |
| SUSE Manager Server 4.2 | pgadmin4 | Not affected |
| SUSE Manager Server 4.3 | nodejs16 | Not affected |
| SUSE Manager Server 4.3 | nodejs18 | Not affected |
| SUSE Manager Server 4.3 | pgadmin4 | Not affected |
| SUSE Manager Server LTS 4.3 | nodejs16 | Not affected |
| SUSE Manager Server LTS 4.3 | nodejs18 | Not affected |
| SUSE Manager Server LTS 4.3 | pgadmin4 | Not affected |
| openSUSE Leap 15.3 | golang-github-prometheus-prometheus | Not affected |
| openSUSE Leap 15.3 | nodejs10 | Not affected |
| openSUSE Leap 15.3 | nodejs12 | Not affected |
| openSUSE Leap 15.3 | nodejs14 | Not affected |
| openSUSE Leap 15.3 | nodejs16 | Not affected |
| openSUSE Leap 15.3 | nodejs8 | Not affected |
| openSUSE Leap 15.3 | pgadmin4 | Not affected |
| openSUSE Leap 15.4 | golang-github-prometheus-prometheus | Not affected |
| openSUSE Leap 15.4 | nodejs10 | Not affected |
| openSUSE Leap 15.4 | nodejs12 | Not affected |
| openSUSE Leap 15.4 | nodejs14 | Not affected |
| openSUSE Leap 15.4 | nodejs16 | Not affected |
| openSUSE Leap 15.4 | nodejs18 | Not affected |
| openSUSE Leap 15.4 | nodejs8 | Not affected |
| openSUSE Leap 15.4 | pgadmin4 | Not affected |
| openSUSE Leap 15.5 | golang-github-prometheus-prometheus | Not affected |
| openSUSE Leap 15.5 | nodejs18 | Not affected |
| openSUSE Leap 15.5 | nodejs20 | Not affected |
| openSUSE Leap 15.5 | pgadmin4 | Not affected |
| openSUSE Leap 15.5 | python-pytest-html | Not affected |
| openSUSE Leap 15.6 | golang-github-prometheus-prometheus | Not affected |
| openSUSE Leap 15.6 | nodejs20 | Not affected |
| openSUSE Leap 15.6 | nodejs22 | Not affected |
| openSUSE Leap 15.6 | pgadmin4 | Not affected |
| openSUSE Leap 15.6 | python-pytest-html | Not affected |
| openSUSE Leap Micro 5.5 | cockpit-machines | Not affected |
| Products at an unknown state of their lifecycle. | ||
| SUSE Multi Linux Manager Tools SLE-15 | golang-github-prometheus-prometheus | Not affected |
| Container Status | ||
| ses/7.1/ceph/prometheus-server ses/7/ceph/prometheus-server suse/multi-linux-manager/5.2/x86_64/monitoring-prometheus | golang-github-prometheus-prometheus | Not affected |
| bci/node:12 | nodejs12 | Not affected |
| bci/node:14 | nodejs14 | Not affected |
| bci/node:16 bci/nodejs | nodejs16 | Not affected |
| bci/node:18 bci/nodejs | nodejs18 | Not affected |
| bci/node:20 bci/nodejs containers/open-webui:0 | nodejs20 | Not affected |
| bci/node:22 containers/open-webui-mcpo:0 | nodejs22 | Not affected |
SUSE Timeline for this CVE
CVE page created: Thu Sep 3 14:57:08 2026CVE page last modified: Thu Sep 3 15:46:56 2026