tinyhttp / tinyhttp/milliparsec
multipart: fileSizeLimit is validated after full buffering, so it does not bound memory (DoS)
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 208
- Forks
- 9
- PR merge metrics
- No merged PRs in 30d
Description
Summary
fileSizeLimit does not bound memory for multipart bodies, because it is validated after the entire request body has already been buffered and concatenated. A single in-flight multipart/form-data request under the default limits can pin hundreds of MB of server memory.
Detail (at HEAD, v5.1.1)
The shared accumulator in p() pushes every chunk into an in-memory array and only guards against payloadLimit (src/index.ts):
req.on('data', (chunk) => {
totalSize += chunk.byteLength
if (totalSize > payloadLimit) { … } // multipart passes payloadLimit = Number.POSITIVE_INFINITY
else body.push(chunk) // unbounded
})
req.on('end', () => resolve(fn(Buffer.concat(body), req))) // full concat, then td.decode → whole body as a string
multipart() explicitly sets payloadLimit = Number.POSITIVE_INFINITY, so that guard never fires. The only multipart cap, fileSizeLimit (default 200 MiB), is checked inside parseMultipart, after Buffer.concat + td.decode (src/index.ts ~line 159: if (data.length > fileSizeLimit) throw …). So it validates after the memory is already consumed — it is a post-hoc size check, not a memory guard.
Measured with a plain app.use(multipart()) server (Node 24): a 150 MiB body — under both default limits — returns 200 while server RSS grows ~+460 MiB and stays there; N concurrent such requests OOM the process. (400/600 MiB bodies do hit fileSizeLimit/V8 string-length, but only after buffering.)
Note: #22 added request limits to the other parsers but multipart kept Infinity, so this looks like an oversight rather than a deliberate choice.
Suggested fix
Enforce a finite cap during accumulation so it triggers before Buffer.concat. Minimal: default multipart's payloadLimit to a finite value (e.g. aligned with fileSizeLimit) so the existing totalSize > payloadLimit guard fires mid-stream. Happy to open a PR if that direction is acceptable.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start in src/index.ts by tracing p(), multipart(), and parseMultipart(), focusing on the existing payloadLimit guard and when Buffer.concat occurs. Ensure multipart requests are capped during accumulation rather than after full buffering, then verify that an oversized request is rejected before concatenation while requests within the limit still succeed.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- node.js, typescript
- Domain
- api, backend, security
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Active
- Clarity
- Clearly specified
- Newbie friendliness
- 72/100