aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. Prior to version 3.10.11, the Python parser parses newlines in chunk extensions incorrectly which can lead to request smuggling vulnerabilities under certain conditions. If a pure Python version of aiohttp is installed (i.e. without the usual C extensions) or AIOHTTP_NO_EXTENSIONS
is enabled, then an attacker may be able to execute a request smuggling attack to bypass certain firewalls or proxy protections. Version 3.10.11 fixes the issue.
The product acts as an intermediary HTTP agent (such as a proxy or firewall) in the data flow between two entities such as a client and server, but it does not interpret malformed HTTP requests or responses in ways that are consistent with how the messages will be processed by those entities that are at the ultimate destination.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Ansible Automation Platform Execution Environments | RedHat | ansible-automation-platform/ee-minimal-rhel8:2.16.14-3 | * |
Ansible Automation Platform Execution Environments | RedHat | ansible-automation-platform/ee-minimal-rhel9:2.18.1-4 | * |
Red Hat Ansible Automation Platform 2.4 for RHEL 8 | RedHat | ansible-automation-platform-24/lightspeed-rhel8-operator:2.4-33 | * |
Red Hat Ansible Automation Platform 2.5 for RHEL 8 | RedHat | automation-controller-0:4.6.3-1.el8ap | * |
Red Hat Ansible Automation Platform 2.5 for RHEL 8 | RedHat | python3.11-aiohttp-0:3.10.11-1.el8ap | * |
Red Hat Ansible Automation Platform 2.5 for RHEL 8 | RedHat | ansible-automation-platform-25/lightspeed-rhel8:2.5.250107-1 | * |
Red Hat Ansible Automation Platform 2.5 for RHEL 9 | RedHat | automation-controller-0:4.6.3-1.el9ap | * |
Red Hat Ansible Automation Platform 2.5 for RHEL 9 | RedHat | python3.11-aiohttp-0:3.10.11-1.el9ap | * |
Red Hat Satellite 6.16 for RHEL 8 | RedHat | python-aiohttp-0:3.10.11-1.el8pc | * |
Red Hat Satellite 6.16 for RHEL 8 | RedHat | python-aiohttp-0:3.10.11-1.el8pc | * |
Red Hat Satellite 6.16 for RHEL 9 | RedHat | python-aiohttp-0:3.10.11-1.el9pc | * |
Red Hat Satellite 6.16 for RHEL 9 | RedHat | python-aiohttp-0:3.10.11-1.el9pc | * |
HTTP requests or responses (“messages”) can be malformed or unexpected in ways that cause web servers or clients to interpret the messages in different ways than intermediary HTTP agents such as load balancers, reverse proxies, web caching proxies, application firewalls, etc. For example, an adversary may be able to add duplicate or different header fields that a client or server might interpret as one set of messages, whereas the intermediary might interpret the same sequence of bytes as a different set of messages. For example, discrepancies can arise in how to handle duplicate headers like two Transfer-encoding (TE) or two Content-length (CL), or the malicious HTTP message will have different headers for TE and CL. The inconsistent parsing and interpretation of messages can allow the adversary to “smuggle” a message to the client/server without the intermediary being aware of it. This weakness is usually the result of the usage of outdated or incompatible HTTP protocol versions in the HTTP agents.