Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:pypi/urllib3@1.18
purl pkg:pypi/urllib3@1.18
Next non-vulnerable version 2.6.3
Latest non-vulnerable version 2.6.3
Risk 4.5
Vulnerabilities affecting this package (14)
Vulnerability Summary Fixed by
VCID-4evk-srqq-fuef
Aliases:
CVE-2023-45803
GHSA-g4mx-q9vg-27p4
PYSEC-2023-212
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.
1.26.18
Affected by 5 other vulnerabilities.
2.0.0a1
Affected by 4 other vulnerabilities.
2.0.7
Affected by 5 other vulnerabilities.
VCID-5tkp-pxz9-h7c2
Aliases:
CVE-2024-37891
GHSA-34jh-p97f-mpxf
urllib3's Proxy-Authorization request header isn't stripped during cross-origin redirects When using urllib3's proxy support with `ProxyManager`, the `Proxy-Authorization` header is only sent to the configured proxy, as expected. However, when sending HTTP requests *without* using urllib3's proxy support, it's possible to accidentally configure the `Proxy-Authorization` header even though it won't have any effect as the request is not using a forwarding proxy or a tunneling proxy. In those cases, urllib3 doesn't treat the `Proxy-Authorization` HTTP header as one carrying authentication material and thus doesn't strip the header on cross-origin redirects. Because this is a highly unlikely scenario, we believe the severity of this vulnerability is low for almost all users. Out of an abundance of caution urllib3 will automatically strip the `Proxy-Authorization` header during cross-origin redirects to avoid the small chance that users are doing this on accident. Users should use urllib3's proxy support or disable automatic redirects to achieve safe processing of the `Proxy-Authorization` header, but we still decided to strip the header by default in order to further protect users who aren't using the correct approach. ## Affected usages We believe the number of usages affected by this advisory is low. It requires all of the following to be true to be exploited: * Setting the `Proxy-Authorization` header without using urllib3's built-in proxy support. * Not disabling HTTP redirects. * Either not using an HTTPS origin server or for the proxy or target origin to redirect to a malicious origin. ## Remediation * Using the `Proxy-Authorization` header with urllib3's `ProxyManager`. * Disabling HTTP redirects using `redirects=False` when sending requests. * Not using the `Proxy-Authorization` header.
1.26.19
Affected by 4 other vulnerabilities.
2.0.0a1
Affected by 4 other vulnerabilities.
2.2.2
Affected by 5 other vulnerabilities.
VCID-692s-9j5p-gbf1
Aliases:
PYSEC-2019-62
In the urllib3 library through 1.24.1 for Python, CRLF injection is possible if the attacker controls the request parameter.
1.24.3
Affected by 9 other vulnerabilities.
VCID-6kxp-qa5x-q3bq
Aliases:
CVE-2019-11324
GHSA-mh33-7rrq-662w
PYSEC-2019-133
The urllib3 library before 1.24.2 for Python mishandles certain cases where the desired set of CA certificates is different from the OS store of CA certificates, which results in SSL connections succeeding in situations where a verification failure is the correct outcome. This is related to use of the ssl_context, ca_certs, or ca_certs_dir argument.
1.24.2
Affected by 11 other vulnerabilities.
VCID-7wcj-zvjq-xud3
Aliases:
CVE-2025-50181
GHSA-pq67-6m6q-mj2v
urllib3 redirects are not disabled when retries are disabled on PoolManager instantiation urllib3 handles redirects and retries using the same mechanism, which is controlled by the `Retry` object. The most common way to disable redirects is at the request level, as follows: ```python resp = urllib3.request("GET", "https://httpbin.org/redirect/1", redirect=False) print(resp.status) # 302 ``` However, it is also possible to disable redirects, for all requests, by instantiating a `PoolManager` and specifying `retries` in a way that disable redirects: ```python import urllib3 http = urllib3.PoolManager(retries=0) # should raise MaxRetryError on redirect http = urllib3.PoolManager(retries=urllib3.Retry(redirect=0)) # equivalent to the above http = urllib3.PoolManager(retries=False) # should return the first response resp = http.request("GET", "https://httpbin.org/redirect/1") ``` However, the `retries` parameter is currently ignored, which means all the above examples don't disable redirects. ## Affected usages Passing `retries` on `PoolManager` instantiation to disable redirects or restrict their number. By default, requests and botocore users are not affected. ## Impact Redirects are often used to exploit SSRF vulnerabilities. An application attempting to mitigate SSRF or open redirect vulnerabilities by disabling redirects at the PoolManager level will remain vulnerable. ## Remediation You can remediate this vulnerability with the following steps: * Upgrade to a patched version of urllib3. If your organization would benefit from the continued support of urllib3 1.x, please contact [sethmichaellarson@gmail.com](mailto:sethmichaellarson@gmail.com) to discuss sponsorship or contribution opportunities. * Disable redirects at the `request()` level instead of the `PoolManager()` level.
2.5.0
Affected by 3 other vulnerabilities.
VCID-8par-whwz-6kft
Aliases:
CVE-2021-33503
GHSA-q2q7-5pp4-w6pg
PYSEC-2021-108
An issue was discovered in urllib3 before 1.26.5. When provided with a URL containing many @ characters in the authority component, the authority regular expression exhibits catastrophic backtracking, causing a denial of service if a URL were passed as a parameter or redirected to via an HTTP redirect.
1.26.5
Affected by 7 other vulnerabilities.
VCID-969r-9mvk-uyh4
Aliases:
CVE-2023-43804
GHSA-v845-jxx5-vc9f
PYSEC-2023-192
urllib3 is a user-friendly HTTP client library for Python. urllib3 doesn't treat the `Cookie` HTTP header special or provide any helpers for managing cookies over HTTP, that is the responsibility of the user. However, it is possible for a user to specify a `Cookie` header and unknowingly leak information via HTTP redirects to a different origin if that user doesn't disable redirects explicitly. This issue has been patched in urllib3 version 1.26.17 or 2.0.5.
1.26.17
Affected by 6 other vulnerabilities.
2.0.0a1
Affected by 4 other vulnerabilities.
2.0.6
Affected by 6 other vulnerabilities.
VCID-b3e6-k53t-bkgk
Aliases:
CVE-2019-11236
GHSA-r64q-w8jr-g9qp
PYSEC-2019-132
In the urllib3 library through 1.24.1 for Python, CRLF injection is possible if the attacker controls the request parameter.
1.24.3
Affected by 9 other vulnerabilities.
VCID-gxkt-bvtg-gbaj
Aliases:
CVE-2020-26137
GHSA-wqvq-5m8c-6g24
PYSEC-2020-148
urllib3 before 1.25.9 allows CRLF injection if the attacker controls the HTTP request method, as demonstrated by inserting CR and LF control characters in the first argument of putrequest(). NOTE: this is similar to CVE-2020-26116.
1.25.9
Affected by 8 other vulnerabilities.
VCID-squd-j9t3-9khh
Aliases:
CVE-2018-25091
GHSA-gwvm-45gx-3cf8
PYSEC-2023-207
urllib3 before 1.24.2 does not remove the authorization HTTP header when following a cross-origin redirect (i.e., a redirect that differs in host, port, or scheme). This can allow for credentials in the authorization header to be exposed to unintended hosts or transmitted in cleartext. NOTE: this issue exists because of an incomplete fix for CVE-2018-20060 (which was case-sensitive).
1.24.2
Affected by 11 other vulnerabilities.
VCID-swgb-7b34-h3a9
Aliases:
CVE-2018-20060
GHSA-www2-v7xj-xrc6
PYSEC-2018-32
urllib3 before version 1.23 does not remove the Authorization HTTP header when following a cross-origin redirect (i.e., a redirect that differs in host, port, or scheme). This can allow for credentials in the Authorization header to be exposed to unintended hosts or transmitted in cleartext.
1.23
Affected by 13 other vulnerabilities.
VCID-x61z-9ntw-x3dh
Aliases:
PYSEC-2019-63
The urllib3 library before 1.24.2 for Python mishandles certain cases where the desired set of CA certificates is different from the OS store of CA certificates, which results in SSL connections succeeding in situations where a verification failure is the correct outcome. This is related to use of the ssl_context, ca_certs, or ca_certs_dir argument.
1.24.2
Affected by 11 other vulnerabilities.
VCID-z965-xgv5-fqet
Aliases:
CVE-2016-9015
GHSA-v4w5-p2hg-8fh6
PYSEC-2017-98
Versions 1.17 and 1.18 of the Python urllib3 library suffer from a vulnerability that can cause them, in certain configurations, to not correctly validate TLS certificates. This places users of the library with those configurations at risk of man-in-the-middle and information leakage attacks. This vulnerability affects users using versions 1.17 and 1.18 of the urllib3 library, who are using the optional PyOpenSSL support for TLS instead of the regular standard library TLS backend, and who are using OpenSSL 1.1.0 via PyOpenSSL. This is an extremely uncommon configuration, so the security impact of this vulnerability is low.
1.18.1
Affected by 13 other vulnerabilities.
VCID-zevs-1ge5-y7g7
Aliases:
CVE-2025-66471
GHSA-2xpw-w6gg-jr37
urllib3 streaming API improperly handles highly compressed data urllib3's [streaming API](https://urllib3.readthedocs.io/en/2.5.0/advanced-usage.html#streaming-and-i-o) is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.
2.6.0
Affected by 1 other vulnerability.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-17T00:01:49.032425+00:00 GitLab Importer Affected by VCID-zevs-1ge5-y7g7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2025-66471.yml 38.4.0
2026-04-16T23:31:17.778323+00:00 GitLab Importer Affected by VCID-7wcj-zvjq-xud3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2025-50181.yml 38.4.0
2026-04-16T23:02:37.478916+00:00 GitLab Importer Affected by VCID-5tkp-pxz9-h7c2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2024-37891.yml 38.4.0
2026-04-16T22:41:03.314976+00:00 GitLab Importer Affected by VCID-4evk-srqq-fuef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2023-45803.yml 38.4.0
2026-04-16T22:40:51.032290+00:00 GitLab Importer Affected by VCID-squd-j9t3-9khh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-25091.yml 38.4.0
2026-04-16T22:39:52.662016+00:00 GitLab Importer Affected by VCID-969r-9mvk-uyh4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2023-43804.yml 38.4.0
2026-04-16T21:53:53.596138+00:00 GitLab Importer Affected by VCID-z965-xgv5-fqet https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2016-9015.yml 38.4.0
2026-04-16T21:49:10.159823+00:00 GitLab Importer Affected by VCID-b3e6-k53t-bkgk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11236.yml 38.4.0
2026-04-16T21:26:28.640159+00:00 GitLab Importer Affected by VCID-gxkt-bvtg-gbaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2020-26137.yml 38.4.0
2026-04-16T20:53:50.659704+00:00 GitLab Importer Affected by VCID-6kxp-qa5x-q3bq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11324.yml 38.4.0
2026-04-16T20:50:35.248093+00:00 GitLab Importer Affected by VCID-swgb-7b34-h3a9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-20060.yml 38.4.0
2026-04-16T02:07:10.828983+00:00 GHSA Importer Affected by VCID-b3e6-k53t-bkgk https://github.com/advisories/GHSA-r64q-w8jr-g9qp 38.4.0
2026-04-16T01:50:54.701701+00:00 GHSA Importer Affected by VCID-gxkt-bvtg-gbaj https://github.com/advisories/GHSA-wqvq-5m8c-6g24 38.4.0
2026-04-16T01:28:35.082205+00:00 GHSA Importer Affected by VCID-6kxp-qa5x-q3bq https://github.com/advisories/GHSA-mh33-7rrq-662w 38.4.0
2026-04-16T01:26:12.672578+00:00 GHSA Importer Affected by VCID-swgb-7b34-h3a9 https://github.com/advisories/GHSA-www2-v7xj-xrc6 38.4.0
2026-04-12T01:24:47.750722+00:00 GitLab Importer Affected by VCID-zevs-1ge5-y7g7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2025-66471.yml 38.3.0
2026-04-12T00:51:06.160730+00:00 GitLab Importer Affected by VCID-7wcj-zvjq-xud3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2025-50181.yml 38.3.0
2026-04-12T00:20:25.015365+00:00 GitLab Importer Affected by VCID-5tkp-pxz9-h7c2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2024-37891.yml 38.3.0
2026-04-12T00:00:32.433995+00:00 GitLab Importer Affected by VCID-4evk-srqq-fuef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2023-45803.yml 38.3.0
2026-04-12T00:00:20.631084+00:00 GitLab Importer Affected by VCID-squd-j9t3-9khh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-25091.yml 38.3.0
2026-04-11T23:59:19.158898+00:00 GitLab Importer Affected by VCID-969r-9mvk-uyh4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2023-43804.yml 38.3.0
2026-04-11T23:09:16.557581+00:00 GitLab Importer Affected by VCID-z965-xgv5-fqet https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2016-9015.yml 38.3.0
2026-04-11T23:05:09.927761+00:00 GitLab Importer Affected by VCID-b3e6-k53t-bkgk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11236.yml 38.3.0
2026-04-11T22:39:21.892266+00:00 GitLab Importer Affected by VCID-gxkt-bvtg-gbaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2020-26137.yml 38.3.0
2026-04-11T22:04:43.968309+00:00 GitLab Importer Affected by VCID-6kxp-qa5x-q3bq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11324.yml 38.3.0
2026-04-11T22:01:13.811105+00:00 GitLab Importer Affected by VCID-swgb-7b34-h3a9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-20060.yml 38.3.0
2026-04-11T13:34:24.831077+00:00 GHSA Importer Affected by VCID-b3e6-k53t-bkgk https://github.com/advisories/GHSA-r64q-w8jr-g9qp 38.3.0
2026-04-11T13:18:00.262526+00:00 GHSA Importer Affected by VCID-gxkt-bvtg-gbaj https://github.com/advisories/GHSA-wqvq-5m8c-6g24 38.3.0
2026-04-11T12:57:53.674475+00:00 GHSA Importer Affected by VCID-6kxp-qa5x-q3bq https://github.com/advisories/GHSA-mh33-7rrq-662w 38.3.0
2026-04-11T12:55:31.001334+00:00 GHSA Importer Affected by VCID-swgb-7b34-h3a9 https://github.com/advisories/GHSA-www2-v7xj-xrc6 38.3.0
2026-04-04T14:31:25.407049+00:00 GHSA Importer Affected by VCID-z965-xgv5-fqet https://github.com/advisories/GHSA-v4w5-p2hg-8fh6 38.1.0
2026-04-03T01:33:25.529529+00:00 GitLab Importer Affected by VCID-zevs-1ge5-y7g7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2025-66471.yml 38.1.0
2026-04-03T00:59:09.604346+00:00 GitLab Importer Affected by VCID-7wcj-zvjq-xud3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2025-50181.yml 38.1.0
2026-04-03T00:27:59.648977+00:00 GitLab Importer Affected by VCID-5tkp-pxz9-h7c2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2024-37891.yml 38.1.0
2026-04-03T00:03:33.827777+00:00 GitLab Importer Affected by VCID-4evk-srqq-fuef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2023-45803.yml 38.1.0
2026-04-03T00:03:21.068330+00:00 GitLab Importer Affected by VCID-squd-j9t3-9khh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-25091.yml 38.1.0
2026-04-03T00:02:23.795179+00:00 GitLab Importer Affected by VCID-969r-9mvk-uyh4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2023-43804.yml 38.1.0
2026-04-02T23:18:00.833866+00:00 GitLab Importer Affected by VCID-z965-xgv5-fqet https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2016-9015.yml 38.1.0
2026-04-02T23:13:26.070188+00:00 GitLab Importer Affected by VCID-b3e6-k53t-bkgk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11236.yml 38.1.0
2026-04-02T22:49:57.560923+00:00 GitLab Importer Affected by VCID-gxkt-bvtg-gbaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2020-26137.yml 38.1.0
2026-04-02T22:17:40.095446+00:00 GitLab Importer Affected by VCID-6kxp-qa5x-q3bq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11324.yml 38.1.0
2026-04-02T22:14:16.560620+00:00 GitLab Importer Affected by VCID-swgb-7b34-h3a9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-20060.yml 38.1.0
2026-04-02T14:23:55.794300+00:00 GHSA Importer Affected by VCID-b3e6-k53t-bkgk https://github.com/advisories/GHSA-r64q-w8jr-g9qp 38.1.0
2026-04-02T14:08:58.271886+00:00 GHSA Importer Affected by VCID-gxkt-bvtg-gbaj https://github.com/advisories/GHSA-wqvq-5m8c-6g24 38.1.0
2026-04-02T13:50:11.692227+00:00 GHSA Importer Affected by VCID-6kxp-qa5x-q3bq https://github.com/advisories/GHSA-mh33-7rrq-662w 38.1.0
2026-04-02T13:48:01.908341+00:00 GHSA Importer Affected by VCID-swgb-7b34-h3a9 https://github.com/advisories/GHSA-www2-v7xj-xrc6 38.1.0
2026-04-01T17:38:16.426806+00:00 GitLab Importer Affected by VCID-z965-xgv5-fqet https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2016-9015.yml 38.0.0
2026-04-01T17:33:24.740851+00:00 GitLab Importer Affected by VCID-b3e6-k53t-bkgk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11236.yml 38.0.0
2026-04-01T17:07:54.011929+00:00 GitLab Importer Affected by VCID-gxkt-bvtg-gbaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2020-26137.yml 38.0.0
2026-04-01T16:35:18.233614+00:00 GitLab Importer Affected by VCID-6kxp-qa5x-q3bq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2019-11324.yml 38.0.0
2026-04-01T16:31:45.891885+00:00 GitLab Importer Affected by VCID-swgb-7b34-h3a9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/urllib3/CVE-2018-20060.yml 38.0.0
2026-04-01T15:15:03.212385+00:00 PyPI Importer Affected by VCID-4evk-srqq-fuef https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:15:02.258966+00:00 PyPI Importer Affected by VCID-squd-j9t3-9khh https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:14:54.709752+00:00 PyPI Importer Affected by VCID-969r-9mvk-uyh4 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:09:48.747140+00:00 PyPI Importer Affected by VCID-8par-whwz-6kft https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:02:40.773143+00:00 PyPI Importer Affected by VCID-gxkt-bvtg-gbaj https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:00:49.545058+00:00 PyPI Importer Affected by VCID-6kxp-qa5x-q3bq https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:00:49.315462+00:00 PyPI Importer Affected by VCID-x61z-9ntw-x3dh https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:00:49.013642+00:00 PyPI Importer Affected by VCID-b3e6-k53t-bkgk https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:00:48.803593+00:00 PyPI Importer Affected by VCID-692s-9j5p-gbf1 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:00:34.820653+00:00 PyPI Importer Affected by VCID-swgb-7b34-h3a9 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T14:59:41.231508+00:00 PyPI Importer Affected by VCID-z965-xgv5-fqet https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T12:48:49.652413+00:00 Pypa Importer Affected by VCID-4evk-srqq-fuef https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2023-212.yaml 38.0.0
2026-04-01T12:48:49.113346+00:00 Pypa Importer Affected by VCID-squd-j9t3-9khh https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2023-207.yaml 38.0.0
2026-04-01T12:48:44.953645+00:00 Pypa Importer Affected by VCID-969r-9mvk-uyh4 https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2023-192.yaml 38.0.0
2026-04-01T12:46:06.865749+00:00 Pypa Importer Affected by VCID-8par-whwz-6kft https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2021-108.yaml 38.0.0
2026-04-01T12:42:54.274358+00:00 Pypa Importer Affected by VCID-gxkt-bvtg-gbaj https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2020-148.yaml 38.0.0
2026-04-01T12:41:59.358494+00:00 Pypa Importer Affected by VCID-6kxp-qa5x-q3bq https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2019-133.yaml 38.0.0
2026-04-01T12:41:59.187668+00:00 Pypa Importer Affected by VCID-b3e6-k53t-bkgk https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2019-132.yaml 38.0.0
2026-04-01T12:41:54.183127+00:00 Pypa Importer Affected by VCID-swgb-7b34-h3a9 https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2018-32.yaml 38.0.0
2026-04-01T12:41:24.865325+00:00 Pypa Importer Affected by VCID-z965-xgv5-fqet https://github.com/pypa/advisory-database/blob/main/vulns/urllib3/PYSEC-2017-98.yaml 38.0.0