Closed Zenulous closed 5 years ago
When submitting a request to a website with an expired certificate, a --insecure flag is passed in the request, This flag is not properly parsed, as is evident in this example:
--insecure
uncurl.parse(curl "http://" --insecure)
This returns the following:
requests.get("http://", headers={}, cookies={}, {}verify=False )
It should instead return:
requests.get("http://", headers={}, cookies={}, verify=False )
When submitting a request to a website with an expired certificate, a
--insecure
flag is passed in the request, This flag is not properly parsed, as is evident in this example:uncurl.parse(curl "http://" --insecure)
This returns the following:
It should instead return: