Curl: desativa a verificação de certificado

33

Estou desenvolvendo e preciso acessar https://localhost . Eu sei que o certificado não irá corresponder. Eu só quero enrolar para ignorar isso. Atualmente, ele me fornece a seguinte mensagem de erro:

curl: (51) SSL peer certificate or SSH remote key was not OK

É possível informar o curl para realizar o acesso mesmo assim?

    
por dangonfast 17.01.2013 / 00:09

2 respostas

43

Sim, você pode fazer isso, pois curl --help ou man curl teriam dito você:

-k, --insecure

(SSL) This option explicitly allows curl to perform "insecure" SSL connections and transfers. All SSL connections are attempted to be made secure by using the CA certificate bundle installed by default. This makes all connections considered "insecure" fail unless -k, --insecure is used.

See this online resource for further details: http://curl.haxx.se/docs/sslcerts.html

    
por 17.01.2013 / 00:11
15

Curl -k ou curl --insecure NÃO corrige esta condição de erro específica: "curl: (51) certificado SSL par

    
por 28.06.2014 / 23:04