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-2025-15284

3.7 · LOW
Published Dec 29, 2025 qs_project CWE-20 EPSS 0.46% (38th pctl)

Overview

CVE-2025-15284 is a low-severity vulnerability affecting qs_project qs. It was published on December 29, 2025 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

Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.This issue affects qs: < 6.14.1.

Summary

The arrayLimit option in qs did not enforce limits for bracket notation (a[]=1&a[]=2), only for indexed notation (a[0]=1). This is a consistency bug; arrayLimit should apply uniformly across all array notations.

Note: The default parameterLimit of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than parameterLimit regardless of arrayLimit, because each a[]=valueconsumes one parameter slot. The severity has been reduced accordingly.

Details

The arrayLimit option only checked limits for indexed notation (a[0]=1&a[1]=2) but did not enforce it for bracket notation (a[]=1&a[]=2).

Vulnerable code (lib/parse.js:159-162):

if (root === '[]' && options.parseArrays) {

obj = utils.combine([], leaf); // No arrayLimit check

}

Working code (lib/parse.js:175):

else if (index <= opt

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 >= 0, < 6.14.1 Affected

Frequently Asked Questions

What is CVE-2025-15284?

CVE-2025-15284 is a low-severity vulnerability affecting qs_project qs. It was published on December 29, 2025 and has a CVSS 3.1 base score of 3.7 (LOW).

How severe is CVE-2025-15284?

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-2025-15284?

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-2025-15284?

CyberStrike's AI-powered security agents can automatically detect CVE-2025-15284 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.