|
|
|
|
|
by ccollins
5450 days ago
|
|
From the article, to find out what your website is doing: openssl s_client -host HOSTNAME -port 443 I ran this for my own website and a few bigger websites openssl s_client -host www.gusta.com -port 443 (My site, hosted on Heroku)
Cipher : DHE-RSA-AES256-SHA
openssl s_client -host www.google.com -port 443
Cipher : RC4-SHA
openssl s_client -host www.airbnb.com -port 443
Cipher : AES256-SHA
openssl s_client -host www.facebook.com -port 443
Cipher : RC4-MD5
openssl s_client -host www.paypal.com -port 443
Cipher : AES256-SHA
openssl s_client -host www.amazon.com -port 443
Cipher : RC4-MD5
|
|