You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support curl's --tls-max option in [Options], and provide a way to check that the request failed. Here's how to do it with curl: curl -o /dev/null -sw %{http_code} --tls-max 1.0 https://example.com (outputs 000 if TLS 1.0 is disabled).
Problem to solve
Assert that insecure versions of TLS are disabled
Proposal
Support curl's
--tls-max
option in[Options]
, and provide a way to check that the request failed. Here's how to do it with curl:curl -o /dev/null -sw %{http_code} --tls-max 1.0 https://example.com
(outputs000
if TLS 1.0 is disabled).Additional context and resources
Seems similar to #166
The text was updated successfully, but these errors were encountered: