Vulnerability Description
stream-json is a micro-library of stream components for processing JSON and JSONC with a minimal memory footprint. Prior to 3.5.0, the path filters pick, ignore, filter, and replace in src/core/filters/filter-base.js recompute the full path string from the nesting stack for every checkable token. Because the stack length equals the current nesting depth and a checkable token is emitted at every level, a depth D document costs O(D²) rather than O(D) to process. The issue is triggered by nesting depth rather than byte volume, including the documented pick({filter: 'data'}) traversal-until-match path, so an application that sends untrusted JSON through a string or RegExp filter can block the Node.js event loop and cause denial of service with a small deeply nested document. The streamArray, streamObject, and streamValues streamers are not affected because they use the constant-time asm.depth getter. This issue is fixed in version 3.5.0.
CVSS Score
MEDIUM
Related Weaknesses (CWE)
References
- https://github.com/uhop/stream-json/commit/a869fb98aaef9225556f49901a8f55954ff85
- https://github.com/uhop/stream-json/security/advisories/GHSA-528h-pc64-c93x
- https://github.com/uhop/stream-json/security/advisories/GHSA-528h-pc64-c93x
FAQ
What is CVE-2026-71429?
CVE-2026-71429 is a vulnerability with a CVSS score of 6.2 (MEDIUM). stream-json is a micro-library of stream components for processing JSON and JSONC with a minimal memory footprint. Prior to 3.5.0, the path filters pick, ignore, filter, and replace in src/core/filter...
How severe is CVE-2026-71429?
CVE-2026-71429 has been rated MEDIUM with a CVSS base score of 6.2/10. Review the CVSS metrics above for detailed severity breakdown.
Is there a patch for CVE-2026-71429?
Check the references section above for vendor advisories and patch information. Review vendor security bulletins for remediation guidance.