Curl: não é possível obter o certificado do emissor local. Como depurar?

9

Eu tenho um problema estranho. Atualizei minha máquina dev LAMP (Debian) para o PHP 7. Depois, não consigo mais me conectar a uma API criptografada TLS específica via Curl.

O certificado SSL em questão é assinado por thawte.

curl https://example.com

me dá

curl: (60) SSL certificate problem: unable to get local issuer certificate

enquanto

curl https://thawte.com

que, é claro, também é assinado por Thawte.

Eu posso acessar o site da API via HTTPS em outras máquinas, por exemplo, meu desktop via curl e no navegador. Então o certificado é definitivamente válido. A classificação do SSL Labs é A.

Qualquer outra solicitação de Curl da minha máquina dev para outros sites criptografados por SSL funciona. Meus certificados de raiz estão atualizados. Para verificar, eu corri update-ca-certificates . Eu até baixei o link para / etc / ssl / certs e executei c_rehash .

Ainda o mesmo erro.

Existe alguma maneira de depurar o processo de verificação e ver qual certificado de emissor local (ou openssl) está procurando, mas não encontrando, ou seja, um nome de arquivo?

UPDATE

curl -vs https://example.com

diz-me (IP + Domínio anonimizado)

* Hostname was NOT found in DNS cache
*   Trying 192.0.2.1...
* Connected to example.com (192.0.2.1) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS alert, Server hello (2):
* SSL certificate problem: unable to get local issuer certificate
* Closing connection 0

e

echo | openssl s_client -connect example.com:443

CONNECTED(00000003)
depth=2 C = US, O = "thawte, Inc.", OU = Certification Services Division, OU = "(c) 2006 thawte, Inc. - For authorized use only", CN = thawte Primary Root CA
verify error:num=20:unable to get local issuer certificate
verify return:0
---
Certificate chain
 0 s:/C=DE/ST=XYZ/CN=*.example.com
   i:/C=US/O=thawte, Inc./CN=thawte SSL CA - G2
 1 s:/C=US/O=thawte, Inc./CN=thawte SSL CA - G2
   i:/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2006 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA
 2 s:/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2006 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA
   i:/C=ZA/ST=Western Cape/L=Cape Town/O=Thawte Consulting cc/OU=Certification Services Division/CN=Thawte Premium Server CA/[email protected]
---
Server certificate
-----BEGIN CERTIFICATE-----
[...]
-----END CERTIFICATE-----
subject=/C=DE/ST=XYZ/CN=*.example.com
issuer=/C=US/O=thawte, Inc./CN=thawte SSL CA - G2
---
No client certificate CA names sent
---
SSL handshake has read 4214 bytes and written 421 bytes
---
New, TLSv1/SSLv3, Cipher is ECDHE-RSA-AES256-GCM-SHA384
Server public key is 2048 bit
Secure Renegotiation IS supported
Compression: NONE
Expansion: NONE
SSL-Session:
    Protocol  : TLSv1.2
    Cipher    : ECDHE-RSA-AES256-GCM-SHA384
    Session-ID: [...]
    Session-ID-ctx:
    Master-Key: [...]
    Key-Arg   : None
    PSK identity: None
    PSK identity hint: None
    SRP username: None
    TLS session ticket lifetime hint: 300 (seconds)
    TLS session ticket:
    0000 - 5a 95 df 40 2c c9 6b d5-4a 50 75 c5 a3 80 0a 2d   Z..@,.k.JPu....-
    [...]
    00b0 - d5 b9 e8 25 00 c5 c7 da-ce 73 fb f2 c5 46 c4 24   ...%.....s...F.$

    Start Time: 1455111516
    Timeout   : 300 (sec)
    Verify return code: 20 (unable to get local issuer certificate)
---
DONE
    
por Rob 10.02.2016 / 13:06

1 resposta

3

Usando openssl s_client -connect thawte.com:443 mostra:

---
Certificate chain
 0 s:/1.3.6.1.4.1.311.60.2.1.3=US/1.3.6.1.4.1.311.60.2.1.2=Delaware/O=Thawte, Inc./C=US/ST=California/L=Mountain View/businessCategory=Private Organization/serialNumber=3898261/OU=Infrastructure Operations/CN=www.thawte.com
   i:/C=US/O=thawte, Inc./CN=thawte Extended Validation SHA256 SSL CA
 1 s:/C=US/O=thawte, Inc./CN=thawte Extended Validation SHA256 SSL CA
   i:/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2008 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA - G3
---

Esse último "i" mostra a CA raiz autoassinada emitida. Suponho que essa CA raiz do Thawte em particular, _i.e. o certificado da CA raiz primária - G3 não está no diretório /etc/ssl/certs (conforme declarado na curl output; openssl s_client não possui um caminho CA padrão e precisa receber um explicitamente, por exemplo -CApath /etc/ssl/certs ).

Adicionar esse certificado explicitamente ao seu diretório /etc/ssl/certs (e re-executar c_rehash ) certamente não faria mal. E se funcionar, por exemplo conforme verificado usando openssl s_client -connect example.com:443 -CApath /etc/ssl/certs , então você sabe que o comando update-ca-certificates pode precisar de algum exame / depuração, por que ele não pegou essa CA raiz

Agora, pode ser que a CA raiz acima já esteja no diretório /etc/ssl/certs e as etapas acima não tenham efeito. Nesse caso, há dois outros certificados de CA da emissão para verificar (pelo menos na cadeia cert oferecida por thawte.com:443 ): thawte Primary Root CA e thawte SSL CA - G2 . Repetir as etapas acima para instalar esses certificados no diretório /etc/ssl/certs (e executar novamente o c_rehash ) pode funcionar. Como essas duas são CAs intermediárias e não CAs raiz, a ausência de uma delas explicaria seus resultados, e pode ser esperada como certs ignorados por update-ca-certificates .

Espero que isso ajude!

    
por 13.02.2016 / 06:51