---
id: CVE-2024-47874
aliases:
  - GHSA-f96h-pmfr-66vw
  - PYSEC-2026-1943
title: Starlette Denial of service (DoS) via multipart/form-data
summary: Starlette Denial of service (DoS) via multipart/form-data
severity: none
cvss: 0
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N'
vendor: starlette
product: starlette
ecosystem: pip
affected:
  - starlette < 0.40.0
patched:
  - starlette 0.40.0
published: '2024-10-15'
updated: '2026-09-10'
sourceUpdated: '2026-09-10T03:50:19.756287586Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-f96h-pmfr-66vw'
references:
  - url: >-
      https://github.com/encode/starlette/security/advisories/GHSA-f96h-pmfr-66vw
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2024-47874'
  - url: >-
      https://github.com/encode/starlette/commit/fd038f3070c302bff17ef7d173dbb0b007617733
  - url: 'https://github.com/encode/starlette'
tags:
  - osv
  - pip
epss: 0.00653
epssPercentile: 0.49514
ingestedAt: '2026-07-08T18:25:48.852Z'
---

## Overview

### Summary
Starlette treats `multipart/form-data` parts without a `filename` as text form fields and buffers those in byte strings with no size limit. This allows an attacker to upload arbitrary large form fields and cause Starlette to both slow down significantly due to excessive memory allocations and copy operations, and also consume more and more memory until the server starts swapping and grinds to a halt, or the OS terminates the server process with an OOM error. Uploading multiple such requests in parallel may be enough to render a service practically unusable, even if reasonable request size limits are enforced by a reverse proxy in front of Starlette.

### PoC

```python
from starlette.applications import Starlette
from starlette.routing import Route

async def poc(request):
    async with request.form():
        pass

app = Starlette(routes=[
    Route('/', poc, methods=["POST"]),
])
```

```sh
curl http://localhost:8000 -F 'big=</dev/urandom'
```

### Impact
This Denial of service (DoS) vulnerability affects all applications built with Starlette (or FastAPI) accepting form requests.


## Affected packages

- `starlette < 0.40.0`

## Remediation

Upgrade to a patched release:

- `starlette 0.40.0`
