Report: CVE-2026-8723 - qs.stringify crashes on null/undefined entries in comma-format arrays under encod

Report: CVE-2026-8723 - qs.stringify crashes on null/undefined entries in comma-format arrays under encod

CVE ID :CVE-2026-8723 Published : May 16, 2026, 11:21 p.m. | 44 minutes ago Description :### Summary `qs.stringify` throws `TypeError` when called with `arrayFormat: 'comma'` and `encodeValuesOnly: true` on an array containing `null` or `undefined`. The throw is synchronous and not handled by any of qs's null-related options (`skipNulls`, `strictNullHandling`).

Details In the comma + `encodeValuesOnly` branch, `lib/stringify.js:145` mapped the array through the raw encoder before joining: ```js obj = utils.maybeMap(obj, encoder); ``` `utils.encode` (`lib/utils.js:195`) reads `str.length` with no null guard, so a `null` or `undefined` element throws `TypeError`. `skipNulls` and `strictNullHandling` are both checked in the per-element loop below this line and never get a chance to run. Same class of bug as the filter-array path fixed in 0c180a4. The vulnerable shape of the comma + `encodeValuesOnly` branch was introduced in 4c4b23d (

CVE Details

Published
May 16, 2026