Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-2391

3.7 · LOW
Published Feb 12, 2026 qs_project CWE-20

Overview

CVE-2026-2391 is a low-severity vulnerability affecting qs_project qs. It was published on February 12, 2026 and has a CVSS 3.1 base score of 3.7 (LOW).

This vulnerability has a CVSS 3.1 base score of 3.7, rated LOW. It can be exploited remotely over the network. No authentication or special privileges are required for exploitation.

Technical Description

### 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 (o

Remediation

Check the references section for vendor advisories and patches from qs_project. Update qs to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Affected Products

Vendor Product Versions Status
qs_project qs >= 6.7.0, < 6.14.2 Affected

Frequently Asked Questions

What is CVE-2026-2391?

CVE-2026-2391 is a low-severity vulnerability affecting qs_project qs. It was published on February 12, 2026 and has a CVSS 3.1 base score of 3.7 (LOW).

How severe is CVE-2026-2391?

This vulnerability has a CVSS 3.1 base score of 3.7, rated LOW. It can be exploited remotely over the network. No authentication or special privileges are required for exploitation.

How do I fix or remediate CVE-2026-2391?

Check the references section for vendor advisories and patches from qs_project. Update qs to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-2391?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-2391 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.

Browse by year 2026