CVE-2026-82417
published 2026-08-30CVE-2026-82417: ### Summary `qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member…
PriorityP429medium5.3CVSS 3.1
AVNACLPRNUINSUCNINAL
EPSS
0.26%
17.8th percentile
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils.isBuffer` on every non-primitive value it serializes. `utils.isBuffer` (`lib/utils.js:332`) reads `obj.constructor.isBuffer` and invokes it without verifying that it is a function. `constructor` and `isBuffer` are ordinary property names, so any object carrying them as own properties reaches the unchecked call.
Such an object can be built from untrusted input. `qs.parse("x[constructor][isBuffer]=y", { plainObjects: true })` or `{ allowPrototypes: true }` keeps the `constructor` key as an own property (the default parse options drop it), and `JSON.parse("{\"a\":{\"constructor\":{\"isBuffer\":\"x\"}}}")` produces the same shape with no qs option involved. Express 4 with its default `query parser` setting and body-parser with `extended: true` both call `qs.parse` with `allowPrototypes: true`, so on those stacks `req.query` and `req.body` can carry the shape directly.
#### PoC
```js
var qs = require("qs");
qs.stringify(qs.parse("x[constructor][isBuffer]=y", { plainObjects: true }));
qs.stringify(JSON.parse("{\"a\":{\"constructor\":{\"isBuffer\":\"x\"}}}"));
// TypeError: obj.constructor.isBuffer is not a function
// at Object.isBuffer (lib/utils.js:332:78)
// at stringify (lib/stringify.js:127:45)
```
#### Fix
`lib/utils.js`, applied in e83d321 on `main` and released as v6.16.0:
```diff
- return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));
+ return !!(obj.constructor && typeof obj.constructor.isBuffer === "function" && obj.constructor.isBuffAffected
95 ranges· showing 25
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| 3scale-amp2 | system-rhel8 | — | — |
| advanced-cluster-security | rhacs-main-rhel8 | — | — |
| advanced-cluster-security | rhacs-main-rhel9 | — | — |
| ansible-automation-platform-24 | lightspeed-rhel8 | — | — |
| ansible-automation-platform-25 | lightspeed-rhel8 | — | — |
| ansible-automation-platform-26 | lightspeed-rhel9 | — | — |
| ansible-automation-platform-27 | mcp-server-rhel9 | — | — |
| ansible-automation-platform-tech-preview | mcp-server-rhel9 | — | — |
| ansible-automation-platform | automation-portal | — | — |
| ansible-automation-platform | bootc-automation-portal-rhel9 | — | — |
| clusterlabs | pcs | — | — |
| costmanagement | costmanagement-ui-rhel10 | — | — |
| cryostat | cryostat-openshift-console-plugin-rhel9 | — | — |
| debian | ceph | — | — |
| devspaces | code-rhel9 | — | — |
| devspaces | dashboard-rhel9 | — | — |
| devspaces | jetbrains-ide-rhel9 | — | — |
| devspaces | openvsx-rhel9 | — | — |
| devspaces | pluginregistry-rhel9 | — | — |
| discovery | discovery-ui-rhel9 | — | — |
| external-secrets-management | console-plugin-rhel9 | — | — |
| grafana | grafana | — | — |
| ljharb | qs | >= 2.2.5 < 6.16.0 | 6.16.0 |
| mta | mta-solution-server-rhel9 | — | — |
| mta | mta-ui-rhel9 | — | — |
CVSS provenance
nvdv3.15.3MEDIUMCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
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
vendor_redhat5.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.
GHSA
qs: Denial of Service via Attacker Controlled isBuffer
ghsa·2026-09-02
CVE-2026-82417 [MEDIUM] CWE-248 qs: Denial of Service via Attacker Controlled isBuffer
qs: Denial of Service via Attacker Controlled isBuffer
### Summary
`qs.stringify()` calls `utils.isBuffer()` on every value it serializes, and `utils.isBuffer()` invokes `obj.constructor.isBuffer(obj)` without checking that it is callable. A value whose own `constructor.isBuffer` is a non-function makes `qs` call a non-callable and throw `TypeError`. Such a value is produced **by `qs.parse` itself** from an untrusted query string when `plainObjects: true` or `allowPrototypes: true` is set, so a pure-`qs` `parse` → `stringify` round-trip — no `JSON.parse` — turns an unauthenticated query string into an uncaught throw.
An attacker-controlled `parse` input reaches the host application's availability asset — via `qs`'s own recommended `plainObjects` mitigation — and triggers an uncaught exc
VulDB
ljharb qs up to 6.15.x Buffer Detection lib/utils.js utils.isBuffer obj input validation
vuldb·2026-08-30·CVSS 5.3
CVE-2026-82417 [MEDIUM] ljharb qs up to 6.15.x Buffer Detection lib/utils.js utils.isBuffer obj input validation
A vulnerability was found in ljharb qs up to 6.15.x. It has been classified as problematic. The affected element is the function utils.isBuffer of the file lib/utils.js of the component Buffer Detection. The manipulation of the argument obj leads to improper input validation.
This vulnerability is listed as CVE-2026-82417. The attack may be initiated remotely. There is no available exploit.
Upgrading the affected component is recommended.
Red Hat
qs: qs: Denial of Service via improper validation in stringify function
vendor_redhat·2026-08-29·CVSS 5.3
CVE-2026-82417 [MEDIUM] CWE-1287 qs: qs: Denial of Service via improper validation in stringify function
qs: qs: Denial of Service via improper validation in stringify function
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils.isBuffer` on every non-primitive value it serializes. `utils.isBuffer` (`lib/utils.js:332`) reads `obj.constructor.isBuffer` and invokes it without verifying that it is a function. `constructor` and `isBuffer` are ordinary property names, so any object carrying
No detection rules found.
No public exploits indexed.
Bugzilla
CVE-2026-82417 trivy: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 trivy: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 trivy: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils.i
Bugzilla
CVE-2026-82417 magicmirror-module-onthisday: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 magicmirror-module-onthisday: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 magicmirror-module-onthisday: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringi
Bugzilla
CVE-2026-82417 qt6-qtwebengine: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 qt6-qtwebengine: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 qt6-qtwebengine: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` call
Bugzilla
CVE-2026-82417 yarnpkg: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 yarnpkg: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 yarnpkg: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `uti
Bugzilla
CVE-2026-82417 python-torch: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 python-torch: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 python-torch: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `
Bugzilla
CVE-2026-82417 fbthrift: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 fbthrift: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 fbthrift: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `ut
Bugzilla
CVE-2026-82417 cachelib: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 cachelib: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 cachelib: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `util
Bugzilla
CVE-2026-82417 firefox: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 firefox: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 firefox: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `uti
Bugzilla
CVE-2026-82417 openbao: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 openbao: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 openbao: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `uti
Bugzilla
CVE-2026-82417 qt5-qtwebengine: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 qt5-qtwebengine: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 qt5-qtwebengine: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` ca
Bugzilla
CVE-2026-82417 mozjs115: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 mozjs115: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 mozjs115: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `ut
Bugzilla
CVE-2026-82417 sgx-pccs: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 sgx-pccs: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 sgx-pccs: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `ut
Bugzilla
CVE-2026-82417 fcitx5: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 fcitx5: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 fcitx5: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `util
Bugzilla
CVE-2026-82417 magicmirror: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 magicmirror: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 magicmirror: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls
Bugzilla
CVE-2026-82417 yarnpkg: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 yarnpkg: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 yarnpkg: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils
Bugzilla
CVE-2026-82417 python-torch: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 python-torch: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 python-torch: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls
Bugzilla
CVE-2026-82417 cachelib: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 cachelib: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 cachelib: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `ut
Bugzilla
CVE-2026-82417 mozjs128: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 mozjs128: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 mozjs128: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `ut
Bugzilla
CVE-2026-82417 thunderbird: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 thunderbird: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 thunderbird: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls
Bugzilla
CVE-2026-82417 mozjs78: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 mozjs78: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 mozjs78: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils
Bugzilla
CVE-2026-82417 openbao: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 openbao: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 openbao: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils
Bugzilla
CVE-2026-82417 mozjs140: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 mozjs140: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 mozjs140: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `ut
Bugzilla
CVE-2026-82417 seamonkey: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 seamonkey: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 seamonkey: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `uti
Bugzilla
CVE-2026-82417 seamonkey: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 seamonkey: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 seamonkey: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `u
Bugzilla
CVE-2026-82417 fbthrift: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 fbthrift: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 fbthrift: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `util
Bugzilla
CVE-2026-82417 h3: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 h3: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 h3: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils.is
Bugzilla
CVE-2026-82417 nextcloud: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 nextcloud: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 nextcloud: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `u
Bugzilla
CVE-2026-82417 nextcloud: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 nextcloud: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 nextcloud: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `uti
Bugzilla
CVE-2026-82417 magicmirror: qs: Denial of Service via improper validation in stringify function [epel-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 magicmirror: qs: Denial of Service via improper validation in stringify function [epel-all]
CVE-2026-82417 magicmirror: qs: Denial of Service via improper validation in stringify function [epel-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `u
Bugzilla
CVE-2026-82417 icecat: qs: Denial of Service via improper validation in stringify function [fedora-all]
bugzilla·2026-09-03·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 icecat: qs: Denial of Service via improper validation in stringify function [fedora-all]
CVE-2026-82417 icecat: qs: Denial of Service via improper validation in stringify function [fedora-all]
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.
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `util
Bugzilla
CVE-2026-82417 qs: qs: Denial of Service via improper validation in stringify function
bugzilla·2026-08-30·CVSS 5.3
CVE-2026-82417 [MEDIUM] CVE-2026-82417 qs: qs: Denial of Service via improper validation in stringify function
CVE-2026-82417 qs: qs: Denial of Service via improper validation in stringify function
### Summary
`qs.stringify` throws a `TypeError` when it serializes an object whose own `constructor` property has a truthy, non-callable `isBuffer` member. `utils.isBuffer` duck-types buffers by calling `obj.constructor.isBuffer(obj)` after checking only that the property is truthy, so a value such as `{ constructor: { isBuffer: "x" } }` makes the call throw `TypeError: obj.constructor.isBuffer is not a function`.
### Details
`lib/stringify.js:127` calls `utils.isBuffer` on every non-primitive value it serializes. `utils.isBuffer` (`lib/utils.js:332`) reads `obj.constructor.isBuffer` and invokes it without verifying that it is a function. `constructor` and `isBuffer` are ordinary property names, s
2026-08-30
Published