Skip to content

Instantly share code, notes, and snippets.

@gierschv
Created July 25, 2012 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gierschv/83f2df9c255dc0972dbe to your computer and use it in GitHub Desktop.
Save gierschv/83f2df9c255dc0972dbe to your computer and use it in GitHub Desktop.
OVH - libssl
Wheezy / libssl 1.0.0
$ ldd /usr/bin/curl | grep ssl
libssl.so.1.0.0 => /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 (0x00007f6c3105b000)
$ curl -v -I https://www.ovh.com/soapi/soapi-re-1.44.wsdl
* About to connect() to www.ovh.com port 443 (#0)
* Trying 213.186.33.34...
* connected
* Connected to www.ovh.com (213.186.33.34) port 443 (#0)
* successfully set certificate verify locations:
* CAfile: none
CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* Unknown SSL protocol error in connection to www.ovh.com:443
* Closing connection #0
curl: (35) Unknown SSL protocol error in connection to www.ovh.com:443
En forcant en SSLv3 :
$ curl -3 -I https://www.ovh.com/soapi/soapi-re-1.44.wsdl
HTTP/1.1 200 OK
[...]
Alors qu'en 0.9.8 sur squeeze :
$ ldd /usr/bin/curl | grep ssl
libssl.so.0.9.8 => /usr/lib/libssl.so.0.9.8 (0x00007fca0e529000)
$ curl -I https://www.ovh.com/soapi/soapi-re-1.44.wsdl
HTTP/1.1 200 OK
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment