Changes between Initial Version and Version 1 of HowTo/GetAMSSLCert


Ignore:
Timestamp:
10/06/13 10:17:22 (11 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/GetAMSSLCert

    v1 v1  
     1= Download the SSL Certificate from a server ==
     2You can use {{{openssl}}} to find the signer of the SSL certificate. Use as the hostname the URL of the server:
     3{{{
     4openssl s_client -showcerts -connect <HOSTNAME>:12369
     5}}}
     6
     7''Note: if that command complains about a "self signed certificate in certificate chain", you can try with the debug and prexit flags'':
     8{{{
     9openssl s_client -debug -prexit -showcerts -connect <HOSTNAME>:12369
     10}}}
     11
     12That command will yield the SSL certificate chain. The first one, "Certificate 0" (zero), is the actual SSL certificate. The second one, "Certificate 1", is the signer. That's the one you want.