No se puede verificar el certificado SSL de Google con openssl

2

Al verificar el certificado de Google con OpenSSL obtengo

$ echo 'Q' | /usr/bin/openssl s_client -connect www.google.com:443 -servername www.google.com -verify 6 > /dev/null 
verify depth is 6
depth=2 /C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=2 /C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
verify error:num=27:certificate not trusted
verify return:1
depth=1 /C=US/O=Google Inc/CN=Google Internet Authority G2
verify return:1
depth=0 /C=US/ST=California/L=Mountain View/O=Google Inc/CN=www.google.com
verify return:1
DONE

Luego extraje los certificados raíz de Keychain

$ security find-certificate -a -p /Library/Keychains/System.keychain > cabundle.pem
$ security find-certificate -a \
  -p /System/Library/Keychains/SystemRootCertificates.keychain >> cabundle.pem 

y se los suministró a OpenSSL con el mismo resultado

$ echo 'Q' | /usr/bin/openssl s_client -connect www.google.com:443 \
  -servername www.google.com -verify 6 -CAfile  ./cabundle.pem > /dev/null 
verify depth is 6
depth=2 /C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=2 /C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
verify error:num=27:certificate not trusted
verify return:1
depth=1 /C=US/O=Google Inc/CN=Google Internet Authority G2
verify return:1
depth=0 /C=US/ST=California/L=Mountain View/O=Google Inc/CN=www.google.com
verify return:1
DONE

Con MacPorts openssl o con el mismo en una máquina Linux, todo funciona como se esperaba.

¿Me faltan algunos certificados raíz?

Estoy utilizando OpenSSL 0.9.8zh 14 de enero de 2016 en OS X El Capitan (10.11.5)

    
pregunta Matteo 29.06.2016 - 18:05

0 respuestas

Lea otras preguntas en las etiquetas