CVE-2026-54280
Undergoing Analysis Undergoing Analysis - In Progress
Resource Exhaustion in AIOHTTP Due to Unclosed Payloads

Publication date: 2026-06-22

Last updated on: 2026-06-22

Assigner: GitHub, Inc.

Description
AIOHTTP is an asynchronous HTTP client/server framework for asyncio and Python. Prior to 3.14.1, payload resources are not closed correctly when a client disconnects in the middle of a write. If a payload is using an open file or similar limited resource, then an attacker may be able to cause resource starvation temporarily until garbage collection or similar closes the file. This vulnerability is fixed in 3.14.1.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-22
Last Modified
2026-06-22
Generated
2026-06-23
AI Q&A
2026-06-23
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 2 associated CPEs
Vendor Product Version / Range
aiohttp aiohttp to 3.14.1 (exc)
aiohttp aiohttp 3.14.1
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-404 The product does not release or incorrectly releases a resource before it is made available for re-use.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Detection Guidance

This vulnerability involves payload resources not being closed properly when a client disconnects during a write operation in aiohttp versions prior to 3.14.1. Detection would focus on identifying resource leaks such as open files or sockets that remain after client disconnects.

Since the issue is related to resource starvation caused by unclosed payloads, monitoring system resource usage (e.g., open file descriptors) during client disconnects can help detect the problem.

Suggested commands to help detect this on a system running aiohttp include:

  • Use lsof to list open files by the aiohttp process: `lsof -p <aiohttp_process_pid>`
  • Monitor open file descriptors count over time: `ls /proc/<aiohttp_process_pid>/fd | wc -l`
  • Check for unusually high numbers of open files or sockets that do not close after client disconnects.

Additionally, reviewing aiohttp server logs for client disconnect events during payload writes may help correlate resource leaks.

Executive Summary

This vulnerability exists in the aiohttp library versions prior to 3.14.1. When a client disconnects in the middle of a payload write operation, the resources used by the payload, such as open files, are not properly closed. This improper handling can lead to resource leaks because the payload's close method is not always called if the connection is interrupted.

An attacker could exploit this behavior by causing multiple premature disconnections, which would temporarily exhaust system resources until garbage collection or other cleanup mechanisms close the files.

Impact Analysis

The main impact of this vulnerability is resource starvation. If an attacker forces clients to disconnect repeatedly during payload writes, the system may accumulate open file handles or similar limited resources that are not closed promptly.

This can degrade system performance or availability temporarily until the resources are freed by garbage collection or other cleanup processes.

Because the severity is low, it is unlikely to cause direct data loss or compromise, but it can affect the stability and reliability of applications using vulnerable versions of aiohttp.

Mitigation Strategies

To mitigate this vulnerability, you should upgrade the aiohttp library to version 3.14.1 or later, where the issue with payload resources not being closed after a client disconnect is fixed.

This update ensures that payloads are properly closed even if a client disconnects in the middle of a write operation, preventing resource starvation.

Compliance Impact

The provided information does not specify any direct impact of this vulnerability on compliance with common standards and regulations such as GDPR or HIPAA.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-54280. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart