OSV 1.4.0 · github-reviewed · 修改于 2026-07-03 03:18
发布时间
2026-07-03 03:18
GitHub 审查时间
2026-07-03 03:18
NVD 发布时间
—
源文件
advisories/github-reviewed/2026/07/GHSA-525m-7f82-2mf7/GHSA-525m-7f82-2mf7.json
A CPU exhaustion vulnerability exists in Conform's parseSubmission future API when parsing FormData or URLSearchParams submissions with many unique field names. The parser previously looked up values by field name, which could require repeated scans of the submitted entries and cause excessive synchronous CPU work if an attacker supplies a crafted submission.
[!NOTE] The patched version fixes this by iterating submitted entries directly instead of repeatedly looking up values by field name. Applications that accept untrusted form submissions should still enforce request parsing limits before passing data to Conform. For multipart requests, @remix-run/form-data-parser provides
maxParts,maxTotalSize,maxFileSize,maxFiles, andmaxHeaderSizeoptions.