---
id: CVE-2024-42367
aliases:
  - GHSA-jwhx-xcg6-8xhj
  - PYSEC-2026-1108
title: 'In aiohttp, compressed files as symlinks are not protected from path traversal'
summary: 'In aiohttp, compressed files as symlinks are not protected from path traversal'
severity: medium
cvss: 4.8
cvssVector: 'CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N'
vendor: aiohttp
product: aiohttp
ecosystem: pip
affected:
  - 'aiohttp >= 3.10.0b1, < 3.10.2'
patched:
  - aiohttp 3.10.2
published: '2024-08-09'
updated: '2026-09-10'
sourceUpdated: '2026-09-10T03:50:18.259191283Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-jwhx-xcg6-8xhj'
references:
  - url: >-
      https://github.com/aio-libs/aiohttp/security/advisories/GHSA-jwhx-xcg6-8xhj
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2024-42367'
  - url: 'https://github.com/aio-libs/aiohttp/pull/8653'
  - url: >-
      https://github.com/aio-libs/aiohttp/commit/ce2e9758814527589b10759a20783fb03b98339f
  - url: 'https://github.com/aio-libs/aiohttp'
  - url: >-
      https://github.com/aio-libs/aiohttp/blob/e0ff5246e1d29b7710ab1a2bbc972b48169f1c05/aiohttp/web_fileresponse.py#L177
  - url: >-
      https://github.com/aio-libs/aiohttp/blob/e0ff5246e1d29b7710ab1a2bbc972b48169f1c05/aiohttp/web_urldispatcher.py#L674
tags:
  - osv
  - pip
epss: 0.0065
epssPercentile: 0.48923
ingestedAt: '2026-07-08T18:25:50.892Z'
---

## Overview

### Summary
Static routes which contain files with compressed variants (`.gz` or `.br` extension) were vulnerable to path traversal outside the root directory if those variants are symbolic links.

### Details
The server protects static routes from path traversal outside the root directory when `follow_symlinks=False` (default).  It does this by resolving the requested URL to an absolute path and then checking that path relative to the root.  However, these checks are not performed when looking for compressed variants in the `FileResponse` class, and symbolic links are then automatically followed when performing `Path.stat()` and `Path.open()` to send the file.

### Impact
Servers with static routes that contain compressed variants as symbolic links, pointing outside the root directory, or that permit users to upload or create such links, are impacted.

----

Patch: https://github.com/aio-libs/aiohttp/pull/8653/files

## Affected packages

- `aiohttp >= 3.10.0b1, < 3.10.2`

## Remediation

Upgrade to a patched release:

- `aiohttp 3.10.2`
