Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using xampp(www.apachefriends.org) for development. Recently I upgraded my installation of xampp from an old version to 1.7.3.

Now when I curl https enabled sites I get the following exception

Fatal error: Uncaught exception 'RequestCore_Exception' with message 'cURL resource: Resource id #55; cURL error: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (60)'

Everyone suggest using some specific curl options from php code to fix this problem. I think this shouldnt be the way. Because I didnt have any problem with my old version of xampp and happened only after installing the new version.

I need help to figure out what settings change in my php installation, apache etc can fix this problem.

share|improve this question

4 Answers

up vote 27 down vote accepted

curl used to include a list of accepted CAs, but no longer bundles ANY CA certs. So by default it'll reject all SSL certificates as unverifiable.

You'll have to get your CA's cert and point curl at it. More details here.

share|improve this answer
2  
The curl is happening in Amazon web services php library. I didn't understand how to fix it without editing the library code. – josnidhin Jun 19 '11 at 15:51
6  
Then turn off certificate verification (CURLOPT_SSL_VERIFYPEER -> false). Your either add the CA cert of the site you're trying to do SSL with, or you disable CA verfification. Those are the only two options available. – Marc B Jun 19 '11 at 16:29
1  
Just fyi — setting CURLOPT_SSL_VERIFYPEER to false defeats the purpose of using SSL. – Till May 7 at 12:21

Warning: this can introduce security issues that SSL is designed to protect against.

But a really simple fix that worked for me was to call:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

before calling:

curl_exec():

in the php file.

I believe that this disables all verification of SSL certificates.

share|improve this answer
9  
... and by disabling the verification of the certificates, you leave the door open to potential MITM attacks, which SSL/TLS otherwise aims to protect against. DON'T DO THIS! – Bruno May 14 '12 at 0:46
1  
Yup. I should have drawn more attention to this in the answer. Only do this if you aren't working on anything important. I use it on localhost to access websites that I personally programmed. – Chris Dutrow May 16 '12 at 21:11

Source: http://ademar.name/blog/2006/04/curl-ssl-certificate-problem-v.html

Curl: SSL certificate problem, verify that the CA cert is OK

07 April 2006

When opening a secure url with Curl you may get the following error:

SSL certificate problem, verify that the CA cert is OK

I will explain why the error and what you should do about it.

The easiest way of getting rid of the error would be adding the following two lines to your script . This solution poses a security risk tho.

//WARNING: this would prevent curl from detecting a 'man in the middle' attack
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0); 

Let see what this two parameters do. Quoting the manual.

CURLOPT_SSL_VERIFYHOST: 1 to check the existence of a common name in the SSL peer certificate. 2 to check the existence of a common name and also verify that it matches the hostname provided.

CURLOPT_SSL_VERIFYPEER: FALSE to stop CURL from verifying the peer's certificate. Alternate certificates to verify against can be specified with the CURLOPT_CAINFO option or a certificate directory can be specified with the CURLOPT_CAPATH option. CURLOPT_SSL_VERIFYHOST may also need to be TRUE or FALSE if CURLOPT_SSL_VERIFYPEER is disabled (it defaults to 2). Setting CURLOPT_SSL_VERIFYHOST to 2 (This is the default value) will garantee that the certificate being presented to you have a 'common name' matching the URN you are using to access the remote resource. This is a healthy check but it doesn't guarantee your program is not being decieved.

Enter the 'man in the middle'

Your program could be misleaded into talking to another server instead. This can be achieved through several mechanisms, like dns or arp poisoning ( This is a story for another day). The intruder can also self-sign a certificate with the same 'comon name' your program is expecting. The communication would still be encrypted but you would be giving away your secrets to an impostor. This kind of attack is called 'man in the middle'

Defeating the 'man in the middle'

Well, we need to to verify the certificate being presented to us is good for real. We do this by comparing it against a certificate we reasonable* trust.

If the remote resource is protected by a certificate issued by one of the main CA's like Verisign, GeoTrust et al, you can safely compare against Mozilla's CA certificate bundle which you can get from http://curl.haxx.se/docs/caextract.html

Save the file cacert.pem somewhere in your server and set the following options in your script.

curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, TRUE); 
curl_setopt ($ch, CURLOPT_CAINFO, "pathto/cacert.pem");
share|improve this answer
2  
yes I found it there. I thought it would help :) – Deepak Oberoi Sep 20 '12 at 7:28
14  
It is generally considered polite to credit the source of your information and only quote certain parts relevant to the question, rather than simply copying and pasting it on here! – danherd Sep 20 '12 at 11:11

It's pretty common problem at Windows. You need just to set cacert.pem to curl.cainfo.

Since PHP 5.3.7 you could do: 1. download http://curl.haxx.se/ca/cacert.pem, save somewhere. 2. update php.ini add curl.cainfo = "PATH_TO/cacert.pem"

Otherwise you will need for every new curl resource do: curl_setopt ($ch, CURLOPT_CAINFO, "PATH_TO/cacert.pem");

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.