The Fix
pip install requests==2.27.0
Based on closed psf/requests issue #5850 · PR/commit linked
@@ -245,6 +245,10 @@ def extract_zipped_paths(path):
while archive and not os.path.exists(archive):
archive, prefix = os.path.split(archive)
+ if not prefix:
+ # If we don't check for an empty prefix after the split (in other words, archive remains unchanged after the split),
+ # we _can_ end up in an infinite loop on a rare corner case affecting a small number of users
{
"chardet": {
"version": "4.0.0"
},
"cryptography": {
"version": "3.4.7"
},
"idna": {
"version": "2.10"
},
"implementation": {
"name": "CPython",
"version": "3.8.10"
},
"platform": {
"release": "10",
"system": "Windows"
},
"pyOpenSSL": {
"openssl_version": "101010bf",
"version": "20.0.1"
},
"requests": {
"version": "2.25.1"
},
"system_ssl": {
"version": "101010bf"
},
"urllib3": {
"version": "1.26.4"
},
"using_pyopenssl": true
}
Re-run the minimal reproduction on your broken version, then apply the fix and re-run.
Option A — Upgrade to fixed release\npip install requests==2.27.0\nWhen NOT to use: Do not use this fix if the application relies on valid UNC paths for functionality.\n\n
Why This Fix Works in Production
- Trigger: For `extract_zipped_paths` to return the path and an Exception to be thrown when the cert path is checked prior to verification being attempted.
- Mechanism: An invalid UNC path leads to an infinite loop in extract_zipped_paths due to improper handling of path prefixes
- Why the fix works: Fixes an infinite loop in extract_zipped_paths when an invalid UNC path is provided. (first fixed release: 2.27.0).
Why This Breaks in Prod
- An invalid UNC path leads to an infinite loop in extract_zipped_paths due to improper handling of path prefixes
- Production symptom (often without a traceback): For `extract_zipped_paths` to return the path and an Exception to be thrown when the cert path is checked prior to verification being attempted.
Proof / Evidence
- GitHub issue: #5850
- Fix PR: https://github.com/psf/requests/pull/5851
- First fixed release: 2.27.0
- Reproduced locally: No (not executed)
- Last verified: 2026-02-09
- Confidence: 0.85
- Did this fix it?: Yes (upstream fix exists)
- Own content ratio: 0.52
Discussion
High-signal excerpts from the issue thread (symptoms, repros, edge-cases).
“This code path is only hit when using a patched certifi package that has certifi.where() return a UNC path”
Failure Signature (Search String)
- For `extract_zipped_paths` to return the path and an Exception to be thrown when the cert path is checked prior to verification being attempted.
- "pyOpenSSL": {
Copy-friendly signature
Failure Signature
-----------------
For `extract_zipped_paths` to return the path and an Exception to be thrown when the cert path is checked prior to verification being attempted.
"pyOpenSSL": {
Error Message
Signature-only (no traceback captured)
Error Message
-------------
For `extract_zipped_paths` to return the path and an Exception to be thrown when the cert path is checked prior to verification being attempted.
"pyOpenSSL": {
Minimal Reproduction
{
"chardet": {
"version": "4.0.0"
},
"cryptography": {
"version": "3.4.7"
},
"idna": {
"version": "2.10"
},
"implementation": {
"name": "CPython",
"version": "3.8.10"
},
"platform": {
"release": "10",
"system": "Windows"
},
"pyOpenSSL": {
"openssl_version": "101010bf",
"version": "20.0.1"
},
"requests": {
"version": "2.25.1"
},
"system_ssl": {
"version": "101010bf"
},
"urllib3": {
"version": "1.26.4"
},
"using_pyopenssl": true
}
What Broke
The application hangs indefinitely when an invalid UNC path is provided, causing service unavailability.
Why It Broke
An invalid UNC path leads to an infinite loop in extract_zipped_paths due to improper handling of path prefixes
Fix Options (Details)
Option A — Upgrade to fixed release Safe default (recommended)
pip install requests==2.27.0
Use when you can deploy the upstream fix. It is usually lower-risk than long-lived workarounds.
Fix reference: https://github.com/psf/requests/pull/5851
First fixed release: 2.27.0
Last verified: 2026-02-09. Validate in your environment.
When NOT to Use This Fix
- Do not use this fix if the application relies on valid UNC paths for functionality.
Verify Fix
Re-run the minimal reproduction on your broken version, then apply the fix and re-run.
Did This Fix Work in Your Case?
Quick signal helps us prioritize which fixes to verify and improve.
Prevention
- Add a TLS smoke test that performs a real handshake in CI (include CA bundle validation and hostname checks).
- Alert on handshake failures by error string and endpoint to catch cert/CA changes quickly.
Version Compatibility Table
| Version | Status |
|---|---|
| 2.27.0 | Fixed |
Related Issues
No related fixes found.
Sources
We don’t republish the full GitHub discussion text. Use the links above for context.