ghsa-9wx4-h78v-vm56
Vulnerability from github
Published
2024-05-20 20:15
Modified
2024-06-10 18:31
Severity ?
Summary
Requests `Session` object does not verify requests after making first request with verify=False
Details
When making requests through a Requests Session
, if the first request is made with verify=False
to disable cert verification, all subsequent requests to the same origin will continue to ignore cert verification regardless of changes to the value of verify
. This behavior will continue for the lifecycle of the connection in the connection pool.
Remediation
Any of these options can be used to remediate the current issue, we highly recommend upgrading as the preferred mitigation.
- Upgrade to
requests>=2.32.0
. - For
requests<2.32.0
, avoid settingverify=False
for the first request to a host while using a Requests Session. - For
requests<2.32.0
, callclose()
onSession
objects to clear existing connections ifverify=False
is used.
Related Links
- https://github.com/psf/requests/pull/6655
{ "affected": [ { "package": { "ecosystem": "PyPI", "name": "requests" }, "ranges": [ { "events": [ { "introduced": "0" }, { "fixed": "2.32.0" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2024-35195" ], "database_specific": { "cwe_ids": [ "CWE-670" ], "github_reviewed": true, "github_reviewed_at": "2024-05-20T20:15:00Z", "nvd_published_at": "2024-05-20T21:15:09Z", "severity": "MODERATE" }, "details": "When making requests through a Requests `Session`, if the first request is made with `verify=False` to disable cert verification, all subsequent requests to the same origin will continue to ignore cert verification regardless of changes to the value of `verify`. This behavior will continue for the lifecycle of the connection in the connection pool.\n\n### Remediation\nAny of these options can be used to remediate the current issue, we highly recommend upgrading as the preferred mitigation.\n\n* Upgrade to `requests\u003e=2.32.0`.\n* For `requests\u003c2.32.0`, avoid setting `verify=False` for the first request to a host while using a Requests Session.\n* For `requests\u003c2.32.0`, call `close()` on `Session` objects to clear existing connections if `verify=False` is used.\n\n### Related Links\n* https://github.com/psf/requests/pull/6655", "id": "GHSA-9wx4-h78v-vm56", "modified": "2024-06-10T18:31:03Z", "published": "2024-05-20T20:15:00Z", "references": [ { "type": "WEB", "url": "https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35195" }, { "type": "WEB", "url": "https://github.com/psf/requests/pull/6655" }, { "type": "WEB", "url": "https://github.com/psf/requests/commit/a58d7f2ffb4d00b46dca2d70a3932a0b37e22fac" }, { "type": "PACKAGE", "url": "https://github.com/psf/requests" }, { "type": "WEB", "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/IYLSNK5TL46Q6XPRVMHVWS63MVJQOK4Q" }, { "type": "WEB", "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/N7WP6EYDSUOCOJYHDK5NX43PYZ4SNHGZ" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:R/S:U/C:H/I:H/A:N", "type": "CVSS_V3" } ], "summary": "Requests `Session` object does not verify requests after making first request with verify=False" }
Loading…
Loading…
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.