sherlockpipe.no_verify_request
- sherlockpipe.no_verify_request(self, *args, **kwargs)
Monkey-patched replacement for
requests.Session.requestthat disables SSL certificate verification by default.Sets
verify=Falseon every request unless the caller explicitly passes a different value. This patches the globalrequestssession to allow connections to servers with self-signed or invalid certificates.Parameters
- selfrequests.Session
The session instance making the request. *args : tuple
Positional arguments forwarded to the original request method.
**kwargs : dict Keyword arguments forwarded to the original request method.
Returns
- requests.Response
The HTTP response returned by the original request method.