CVE-2026-2391
published 2026-02-12CVE-2026-2391: ### Summary The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause…
PriorityP340high7.5CVSS 3.1
AVNACLPRNUINSUCNINAH
EPSS
0.48%
38.5th percentile
### Summary
The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).
### Details
When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation of arbitrarily large arrays from a single parameter, leading to excessive memory allocation.
**Vulnerable code** (lib/parse.js: lines ~40-50):
```js
if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {
return val.split(',');
}
if (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {
throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');
}
return val;
```
The `split(',')` returns the array immediately, skipping the subsequent limit check. Downstream merging via `utils.combine` does not prevent allocation, even if it marks overflows for sparse arrays.This discrepancy allows attackers to send a single parameter with millions of commas (e.g., `?param=,,,,,,,,...`), allocating massive arrays in memory without triggering limits. It bypasses the intent of `arrayLimit`, which is enforced correctly for indexed (`a[0]=`) and bracket (`a[]=`) notations (the latter fixed in v6.14.1 per GHSA-6rw7-vpxm-498p).
### PoC
**Test 1 - Basic bypass:**
```
npm install qs
```
```js
const qs = require('qs');
const payload = 'a=' + ','.repeat(25); // 26 elements after split (bypasses arrayLimit: 5)
const options = { comAffected
3 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| debian | node-qs | < node-qs 6.15.0+ds+~6.15.0-1 (forky) | node-qs 6.15.0+ds+~6.15.0-1 (forky) |
| qs_project | qs | >= 6.7.0 < 6.14.2 | 6.14.2 |
| qs_project | qs | >= 6.7.0 < 6.14.2 | 6.14.2 |
CVSS provenance
nvdv3.17.5HIGHCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
nvdv4.06.3MEDIUMCVSS: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
ghsa6.3MEDIUM
osv6.3MEDIUM
vendor_debian6.3MEDIUM
vendor_redhat6.3MEDIUM
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
OSV
qs's arrayLimit bypass in comma parsing allows denial of service
osv·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] qs's arrayLimit bypass in comma parsing allows denial of service
qs's arrayLimit bypass in comma parsing allows denial of service
### Summary
The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).
### Details
When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation
GHSA
qs's arrayLimit bypass in comma parsing allows denial of service
ghsa·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CWE-20 qs's arrayLimit bypass in comma parsing allows denial of service
qs's arrayLimit bypass in comma parsing allows denial of service
### Summary
The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).
### Details
When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation
OSV
CVE-2026-2391: ### Summary The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to caus
osv·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391: ### Summary The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to caus
### Summary The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284). ### Details When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation of arbitrarily large arrays from a single parameter, leading to ex
Red Hat
qs: qs's arrayLimit bypass in comma parsing allows denial of service
vendor_redhat·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CWE-179 qs: qs's arrayLimit bypass in comma parsing allows denial of service
qs: qs's arrayLimit bypass in comma parsing allows denial of service
### Summary
The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).
### Details
When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creat
Debian
CVE-2026-2391: node-qs - ### Summary The `arrayLimit` option in qs does not enforce limits for comma-sepa...
vendor_debian·2026·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391: node-qs - ### Summary The `arrayLimit` option in qs does not enforce limits for comma-sepa...
### Summary The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284). ### Details When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation of arbitrarily large arrays from a single parameter, leading to ex
No detection rules found.
No public exploits indexed.
Bugzilla
CVE-2026-2391 magicmirror-module-onthisday: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 magicmirror-module-onthisday: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 magicmirror-module-onthisday: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a curren
Bugzilla
CVE-2026-2391 icecat: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 icecat: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 icecat: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version
Bugzilla
CVE-2026-2391 yarnpkg: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 yarnpkg: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 yarnpkg: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained versio
Bugzilla
CVE-2026-2391 python-torch: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 python-torch: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 python-torch: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This comes from the qs JavaScript library. I'm not really sure how this impacts PyTorch, but it must be present in one of our build inputs or outputs?
---
I'm closing with the view that while this may be present in build inputs, as far as I am aware this JavaScript Library does not appear in the Python code or compiled objects output by our build process.
Bugzilla
CVE-2026-2391 h3: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 h3: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 h3: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, ch
Bugzilla
CVE-2026-2391 firefox: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 firefox: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 firefox: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained versio
Bugzilla
CVE-2026-2391 python-torch: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-43]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 python-torch: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-43]
CVE-2026-2391 python-torch: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-43]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This comes from the qs JavaScript library. I'm not really sure how this impacts PyTorch, but it must be present in one of our build inputs or outputs?
---
I'm closing with the view that while this may be present in build inputs, as far as I am aware this JavaScript Library does not appear in the Python code or compiled objects output by our build process.
Bugzilla
CVE-2026-2391 thunderbird: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 thunderbird: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 thunderbird: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained ve
Bugzilla
CVE-2026-2391 qs: qs's arrayLimit bypass in comma parsing allows denial of service
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 qs: qs's arrayLimit bypass in comma parsing allows denial of service
CVE-2026-2391 qs: qs's arrayLimit bypass in comma parsing allows denial of service
### Summary
The `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).
### Details
When the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. Thi
Bugzilla
CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [epel-10]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [epel-10]
CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [epel-10]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
FEDORA-2026-ca43aa006f (nextcloud-33.0.1-1.fc42) has been submitted as an update to Fedora 42.
https://bodhi.fedoraproject.org/updates/FEDORA-2026-ca43aa006f
---
FEDORA-EPEL-2026-35986c0192 (nextcloud-33.0.1-1.el10_1) has been submitted as an update to Fedora EPEL 10.1.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2026-35986c0192
---
FEDORA-2026-1dcec03247 (nextcloud-33.0.1-1.fc44) has been submitted as an update to Fedora 44.
https://bodhi.fedor
Bugzilla
CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
FEDORA-2026-ca43aa006f (nextcloud-33.0.1-1.fc42) has been submitted as an update to Fedora 42.
https://bodhi.fedoraproject.org/updates/FEDORA-2026-ca43aa006f
---
FEDORA-EPEL-2026-35986c0192 (nextcloud-33.0.1-1.el10_1) has been submitted as an update to Fedora EPEL 10.1.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2026-35986c0192
---
FEDORA-2026-0dc1d7ff6d has been pushed to the Fedora 43 testing repository.
Soon you'll be able to install the u
Bugzilla
CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-43]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-43]
CVE-2026-2391 nextcloud: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-43]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
FEDORA-2026-ca43aa006f (nextcloud-33.0.1-1.fc42) has been submitted as an update to Fedora 42.
https://bodhi.fedoraproject.org/updates/FEDORA-2026-ca43aa006f
---
FEDORA-EPEL-2026-35986c0192 (nextcloud-33.0.1-1.el10_1) has been submitted as an update to Fedora EPEL 10.1.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2026-35986c0192
---
FEDORA-2026-0dc1d7ff6d has been pushed to the Fedora 43 testing repository.
Soon you'll be able to install the u
Bugzilla
CVE-2026-2391 mozjs115: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 mozjs115: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 mozjs115: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained versi
Bugzilla
CVE-2026-2391 magicmirror: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
bugzilla·2026-02-12·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 magicmirror: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
CVE-2026-2391 magicmirror: qs's arrayLimit bypass in comma parsing allows denial of service [fedora-42]
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.
Discussion:
This message is a reminder that Fedora Linux 42 is nearing its end of life.
Fedora will stop maintaining and issuing updates for Fedora Linux 42 on 2026-05-13.
It is Fedora's policy to close all bug reports from releases that are no longer
maintained. At that time this bug will be closed as EOL if it remains open with a
'version' of '42'.
Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained ve
Wiz
CVE-2026-2391 Impact, Exploitability, and Mitigation Steps | Wiz
blogs_wiz·CVSS 6.3
CVE-2026-2391 [MEDIUM] CVE-2026-2391 Impact, Exploitability, and Mitigation Steps | Wiz
## CVE-2026-2391 :
JavaScript vulnerability analysis and mitigation
## Summary
arrayLimit
comma: true
## Details
comma
true
?param=a,b,c
['a', 'b', 'c']
arrayLimit
parseArrayValue
Vulnerable code (lib/parse.js: lines ~40-50):
if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {
return val.split(',');
}
if (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {
throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');
}
return val;
split(',')
utils.combine
?param=,,,,,,,,...
arrayLimit
a[0]=
a[]=
## PoC
Test 1 - Basic bypass:
npm install qs
const qs = require('qs');
const payload = 'a=' + ','.repeat(25); // 26 elements
2026-02-12
Published