CVE-2023-45803
urllib3 HTTP redirect vulnerability (301, 302, 303) with request body
- CVSS 4.2
- CWE-200 Exposure of Sensitive Information to an Unauthorized Actor
- Configuration Issues
- Remote
urllib3 is a user-friendly HTTP client library for Python. urllib3 previously wouldn't remove the HTTP request body when an HTTP redirect response using status 301, 302, or 303 after the request had its method changed from one that could accept a request body (like `POST`) to `GET` as is required by HTTP RFCs. Although this behavior is not specified in the section for redirects, it can be inferred by piecing together information from different sections and we have observed the behavior in other major HTTP client implementations like curl and web browsers. Because the vulnerability requires a previously trusted service to become compromised in order to have an impact on confidentiality we believe the exploitability of this vulnerability is low. Additionally, many users aren't putting sensitive data in HTTP request bodies, if this is the case then this vulnerability isn't exploitable. Both of the following conditions must be true to be affected by this vulnerability: 1. Using urllib3 and submitting sensitive information in the HTTP request body (such as form data or JSON) and 2. The origin service is compromised and starts redirecting using 301, 302, or 303 to a malicious peer or the redirected-to service becomes compromised. This issue has been addressed in versions 1.26.18 and 2.0.7 and users are advised to update to resolve this issue. Users unable to update should disable redirects for services that aren't expecting to respond with redirects with `redirects=False` and disable automatic redirects with `redirects=False` and handle 301, 302, and 303 redirects manually by stripping the HTTP request body.
- CVSS base score
- 4.2
- Published
- 2023-10-17
- OWASP
- A06 Vulnerable and Outdated Components
- Orthogonal defect classification
- Function
- Code defect classification
- Incorrect Functionality
- Category
- Configuration Issues
- Subcategory
- Open Redirects
- Accessibility scope
- Remote
- Impact
- Information Disclosure
- Fixed by upgrading
- Yes
Solution
Update urllib3 to version 1.26.18 or 2.0.7 or higher.
Vulnerable code sample
import urllib3
http = urllib3.PoolManager()
url = 'http://example.com/some_endpoint'
body = 'sensitive_data=secret_value'
response = http.request('POST', url, body=body)
print(response.data)Patched code sample
import urllib3
from urllib3.exceptions import InsecureRequestWarning
urllib3.disable_warnings(InsecureRequestWarning)
http = urllib3.PoolManager()
def make_request_with_redirect_handling(url, method='POST', body=None):
response = http.request(method, url, body=body, redirect=False)
if response.status in (301, 302, 303):
redirect_url = response.get_redirect_location()
if method == 'POST':
print(f"Redirecting to {redirect_url} without body")
response = http.request('GET', redirect_url)
else:
print(f"Redirecting to {redirect_url}")
response = http.request(method, redirect_url)
return response
url = 'http://example.com/some_endpoint'
body = 'sensitive_data=secret_value'
response = make_request_with_redirect_handling(url, method='POST', body=body)
print(response.data)Cite this entry
@misc{vaitp:cve202345803,
title = {{urllib3 HTTP redirect vulnerability (301, 302, 303) with request body}},
author = {Bogaerts, Fr\'ed\'eric and Ivaki, Naghmeh and Fonseca, Jos\'e},
year = {2023},
note = {VAITP Python Vulnerability Dataset, entry CVE-2023-45803},
howpublished = {\url{https://netpack.pt/vaitp/vulnerability/CVE-2023-45803/}}
}
Introducing the "VAITP dataset": a specialized repository of Python vulnerabilities and patches, meticulously compiled for the use of the security research community. As Python's prominence grows, understanding and addressing potential security vulnerabilities become crucial. Crafted by and for the cybersecurity community, this dataset offers a valuable resource for researchers, analysts, and developers to analyze and mitigate the security risks associated with Python. Through the comprehensive exploration of vulnerabilities and corresponding patches, the VAITP dataset fosters a safer and more resilient Python ecosystem, encouraging collaborative advancements in programming security.
The supreme art of war is to subdue the enemy without fighting.
Sun Tzu – “The Art of War”
:: Shaping the future through research and ingenuity ::
