CRLF injection vulnerability in the HTTPConnection.putheader function in urllib2 and urllib in CPython (aka Python) before 2.7.10 and 3.x before 3.4.4 allows remote attackers to inject arbitrary HTTP headers via CRLF sequences in a URL.
The product receives data from an HTTP agent/component (e.g., web server, proxy, browser, etc.), but it does not neutralize or incorrectly neutralizes CR and LF characters before the data is included in outgoing HTTP headers.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Python | Python | * | 2.7.9 (including) |
Python2.7 | Ubuntu | precise | * |
Python2.7 | Ubuntu | trusty | * |
Python2.7 | Ubuntu | upstream | * |
Python3.2 | Ubuntu | precise | * |
Python3.4 | Ubuntu | trusty | * |
Python3.4 | Ubuntu | vivid/stable-phone-overlay | * |
Python3.4 | Ubuntu | vivid/ubuntu-core | * |
Python3.4 | Ubuntu | wily | * |
Python3.5 | Ubuntu | trusty | * |
Python3.5 | Ubuntu | upstream | * |
Red Hat Enterprise Linux 6 | RedHat | python-0:2.6.6-66.el6_8 | * |
Red Hat Enterprise Linux 7 | RedHat | python-0:2.7.5-38.el7_2 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6 | RedHat | python27-python-0:2.7.8-18.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6 | RedHat | python33-python-0:3.3.2-18.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6 | RedHat | rh-python34-python-0:3.4.2-14.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.6 EUS | RedHat | python27-python-0:2.7.8-18.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.6 EUS | RedHat | python33-python-0:3.3.2-18.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.6 EUS | RedHat | rh-python34-python-0:3.4.2-14.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.7 EUS | RedHat | python27-python-0:2.7.8-18.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.7 EUS | RedHat | python33-python-0:3.3.2-18.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.7 EUS | RedHat | rh-python34-python-0:3.4.2-14.el6 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7 | RedHat | rh-python35-python-0:3.5.1-9.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7 | RedHat | python27-python-0:2.7.8-16.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7 | RedHat | python33-python-0:3.3.2-16.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7 | RedHat | rh-python34-python-0:3.4.2-13.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.1 EUS | RedHat | rh-python35-python-0:3.5.1-9.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.1 EUS | RedHat | python27-python-0:2.7.8-16.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.1 EUS | RedHat | python33-python-0:3.3.2-16.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.1 EUS | RedHat | rh-python34-python-0:3.4.2-13.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.2 EUS | RedHat | rh-python35-python-0:3.5.1-9.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.2 EUS | RedHat | python27-python-0:2.7.8-16.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.2 EUS | RedHat | python33-python-0:3.3.2-16.el7 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.2 EUS | RedHat | rh-python34-python-0:3.4.2-13.el7 | * |
HTTP agents or components may include a web server, load balancer, reverse proxy, web caching proxy, application firewall, web browser, etc. Regardless of the role, they are expected to maintain coherent, consistent HTTP communication state across all components. However, including unexpected data in an HTTP header allows an attacker to specify the entirety of the HTTP message that is rendered by the client HTTP agent (e.g., web browser) or back-end HTTP agent (e.g., web server), whether the message is part of a request or a response.
When an HTTP request contains unexpected CR and LF characters, the server may respond with an output stream that is interpreted as “splitting” the stream into two different HTTP messages instead of one. CR is carriage return, also given by %0d or \r, and LF is line feed, also given by %0a or \n. In addition to CR and LF characters, other valid/RFC compliant special characters and unique character encodings can be utilized, such as HT (horizontal tab, also given by %09 or \t) and SP (space, also given as + sign or %20). These types of unvalidated and unexpected data in HTTP message headers allow an attacker to control the second “split” message to mount attacks such as server-side request forgery, cross-site scripting, and cache poisoning attacks. HTTP response splitting weaknesses may be present when: