CVE Vulnerabilities

CVE-2026-34993

Deserialization of Untrusted Data

Published: Jun 02, 2026 | Modified: Jun 05, 2026
CVSS 3.x
7.3
HIGH
Source:
NVD
CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
7.2 IMPORTANT
CVSS:3.1/AV:L/AC:H/PR:H/UI:R/S:C/C:H/I:H/A:H
Ubuntu
MEDIUM
root.io logo minimus.io logo echo.ai logo

AIOHTTP is an asynchronous HTTP client/server framework for asyncio and Python. Prior to version 3.14.0, using CookieJar.load() with untrusted input may allow arbitrary code execution. Most applications using this function will be doing so with the users own data, so this is unlikely to affect many applications. Version 3.14.0 patches the issue. If an application does allow attacker controlled files to be loaded, a workaround on older releases would be to sanitize the files before loading.

Weakness

The product deserializes untrusted data without sufficiently ensuring that the resulting data will be valid.

Affected Software

NameVendorStart VersionEnd Version
AiohttpAiohttp*3.14.0 (excluding)
Red Hat OpenShift AI 2.25RedHatrhoai/odh-training-cuda121-torch24-py311-rhel9:1780078807*
Red Hat OpenShift AI 2.25RedHatrhoai/odh-training-cuda124-torch25-py311-rhel9:1780078840*
Red Hat OpenShift AI 2.25RedHatrhoai/odh-training-rocm62-torch24-py311-rhel9:1780069179*
Red Hat OpenShift AI 2.25RedHatrhoai/odh-training-rocm62-torch25-py311-rhel9:1780069181*

Potential Mitigations

  • Make fields transient to protect them from deserialization.
  • An attempt to serialize and then deserialize a class containing transient fields will result in NULLs where the transient data should be. This is an excellent way to prevent time, environment-based, or sensitive variables from being carried over and used improperly.

References