Иногда бывает нужно проверить какие протоколы поддерживает веб-сайт. Сохраню тут, ибо использую не часто и бывает забываю.
Для Linux
openssl s_client -connect mysite.com:443 -ssl3
openssl s_client -connect mysite.com:443 -tls1
openssl s_client -connect mysite.com:443 -tls1_1
openssl s_client -connect mysite.com:443 -tls1_2
Для Windows (Powershell)
[Net.ServicePointManager]::SecurityProtocol
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Ssl3
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls11
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest https://mysite.com
Комментарии