Curl

From DWIKI
Revision as of 16:53, 24 September 2024 by Tony (talk | contribs) (→‎Specify hostname for https request)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

HOWTO

Check supported TLS version

curl -I -v --tlsv1.2 --tls-max 1.2 https://www.example.com/


Specify hostname for https request

Try

curl -H "Host: some.name" https://example.com


vague stuff, ignore https://stackoverflow.com/questions/50279275/curl-how-to-specify-target-hostname-for-https-request

curl --resolve example.com:443:192.0.2.1 https://example.com