Tagged Questions
1
vote
1answer
26 views
curl NSS -12286 error in TLS handshake
I am getting NSS -12286 error while trying to load the https page using the ca certificate using cacertinpem.c curl c code.
i am using cacert.pem file in the code alog with path. but same thing is ...
0
votes
1answer
33 views
Why does PayPal intermittently give SSL errors?
I'm using PayPal to take payments on my website.
30% of IPNs bail out with the following cURL error. It works fine the other 70% of the time.
Unknown SSL protocol error in connection to ...
0
votes
1answer
11 views
How can i specify SSL version in curb
I am interacting with an API that requires SSL3.
From the command line I form the request like:
curl -ssl3 -H 'Authorization: Bearer XXXX' https://capi-eval.signnow.com/api/user/documentsv2
With ...
0
votes
1answer
24 views
cURL SSL Certificate with Sessions
I'm trying to access SSL website (using cURL with sessions) but I have problem with SSL certificates.
Here's my cURL SSL settings:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, ...
0
votes
0answers
25 views
cURL SSL version 2 vs version 3
I have written a PHP script to transfer large files (100MB+) to another server using cURL. The process wasn't working until I set the CURLOPT_SSLVERSION to 3. Without setting that option, the process ...
0
votes
0answers
110 views
Uncaught CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443
I keep getting this error, and it seems like it has appeared out of nowhere. I've been working at my project for some weeks, and this didn't show up until now.
When I try to run my app on localhost, ...
0
votes
2answers
29 views
Code does not work without disabling SSL
Please take a look at this code:
<?php
$url = "the_source_url";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, ...
1
vote
1answer
29 views
What is the difference between CURLOPT_SSLKEY and CURLOPT_SSH_PRIVATE_KEYFILE?
I was looking at this question and, to try to find the mistake, went to the PHP manual where I seen those 2 options :
CURLOPT_SSH_PRIVATE_KEYFILE The file name for your private key. If
not ...
2
votes
1answer
31 views
cURL for Windows can't make a secure connection to the Stack API
I am using cURL for Windows.
I'm following separate advice and have just about no idea what I'm doing, but I know what I've done:
C:\...> curl http://api.stackexchange.com/2.1/sites
<garbage, ...
1
vote
1answer
27 views
php curl: SSL_VERIFYPEER option doesn't have effect
I've got this piece of code to launch queries with curl:
function curl_query($full_url, $username, $password, $payload) {
$additionalHeaders = "";
$process = curl_init($full_url);
...
2
votes
1answer
51 views
SSL connection with CURL (PHP) working on Linux, same code fails on Windows
I wrote a script that uses our banks WSDL service, using Nusoap. Requests are signed with certificate. This script works fine on Ubuntu, Apache 2.2, PHP 5.4.
When trying to achieve same thing on ...
1
vote
2answers
82 views
PHP/cURL file transfer limit over SSL?
I have written a couple of PHP scripts using cURL to transfer files from ServerA to ServerB via an SSL connection. Both are Windows servers running IIS. The code works fine with smaller files (under ...
0
votes
1answer
445 views
iOS cURL: unable to get local issuer certificate
I'm trying to setup secure connection to HTTPS server with curl on iOS (app is written in C++)
I figured out that I need to set cacert.pam (http://curl.haxx.se/ca/cacert.pem) file path for ...
0
votes
0answers
56 views
Adding Cipher to SSL Curl Call
I need to add the following cipher when making an SSL call:
$curl->setopt(CURLOPT_SSL_CIPHER_LIST, 'rsa_rc4_128_sha');
Now, this is done in Perl, but at the end of the day, this is going down the ...
3
votes
1answer
172 views
GIT HTTPS connection issue
I searched around on stackoverflow and I haven't found anything that exactly answers this question so I wanted to ask it here and provide as much detail as possible about my problem.
I just installed ...
0
votes
1answer
525 views
How to enable CURLOPT_SSL_VERIFYHOST = 2 support on my OS/PHP
I have been developing a site locally that authenticates against a centrailzed signon. One of the steps is requiring me to make a curl request to an https resource to get an access token.
Part of ...
1
vote
0answers
66 views
Building libcurl yields “Unsupported Protocol” at runtime for HTTPS
I am working on rebuilding libcurl for our application but am encountering the following problem at runtime (libcurl builds fine):
[20:03:24] WARNING: API call failed: cURL Error in putStatus(): ...
0
votes
0answers
71 views
HTTP+SSL via curl and Visual C++ 2010
I have a self-signed sertificate, and web-site based on apache 2.x, with this certificate.
Just want to access this site from my software using via SSL.
doing following:
int _tmain(int argc, _TCHAR* ...
0
votes
1answer
213 views
PHP: Send XML data with cURL PUT [duplicate]
I want to update my inventory in Sears marketplace with API.
"Inventory Management:
This API call uses the PUT method to manage the inventory level of your items. To avoid errors, inventory updates ...
0
votes
1answer
77 views
I had a errors with Curl and SSL certificate
I had a problem. When you send a POST request with the CURL library to HTTPS get the error: SSL certificate problem, verify that the CA cert is OK. Details: error: 14090086: SSL routines: ...
3
votes
1answer
509 views
PHP CURL CURLOPT_SSL_VERIFYPEER ignored
For some reason I am unable to use CURL with HTTPS. Everything was working fine untill I ran upgrade of curl libraries. Now I am experiencing this response when trying to perform CURL requests: ...
0
votes
1answer
191 views
CURLOPT_CAINFO required?
Is the CURLOPT_CAINFO in the curl_setopt_array for PayPal in order for 'live' mode to work?
So basically what im asking is do we have to have SSL in order for PayPal live mode to work, because my ...
0
votes
1answer
313 views
Alternative for using CURLOPT_SSL_VERIFYHOST, 2
I am using the auth.net XML class written by John Conde, http://www.johnconde.net/blog/tutorial-integrate-authorize-net-xml-api-universal-php-class/,. In it it has two lines.
...
0
votes
1answer
173 views
What exactly is cacert.pem for?
In my PayPal Pro payment page I use the cURL function curl_setopt_array() with the following option : cUIn CURLOPT_CAINFO => dirname(FILE) . '/cacert.pem'.
Works fine, however even after some ...
0
votes
0answers
54 views
Force cURL to use NULL encryption for SSL?
I am using cURL in PHP to establish an SSL session with another server. I have it mostly working but am getting a TLS Encrypted Alert error with error code indicating that something is not right. I ...
0
votes
0answers
869 views
Curl error 35 SSL Connect error in php
Am using CURL to get the XML response in PHP. The problem is when I run the PHP cron job file, It didn't get the response.
$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
...
5
votes
1answer
1k views
SSL certificate issue: unable to get local issuer certificate on payapl ipn verification
I am using curl to verify the paypal IPN but it throws error:S*SL certificate problem: unable to get local issuer certificate*. The same code is working on development server and when I moved to ...
1
vote
1answer
269 views
SSL error with PHP curl
Hello fellow programmers,
I'm making an API with a https connection. I want to secure the API call with a certificate check. Now i've downloaded the cacert.pem from curl and placed this in my folder, ...
1
vote
1answer
196 views
Security consequences of disabling CURLOPT_SSL_VERIFYPEER (libcurl/openssl)
I know from this thread what attacks are possible when CURLOPT_SSL_VERIFYHOST is disabled. I'd like to know what attacks are possible when VERIFYPEER, not _VERIFYHOST, is disabled. Is it an acceptable ...
1
vote
1answer
58 views
SSL Issue, Logging in to website
I have this code to login to a server called Pinger TextFree for a bot I'm working on:
<?php
function sendRequest($url, $postorget, $fields = array(), $proxy)
{
$cookie_file = "cookies.txt";
...
0
votes
0answers
74 views
Submitting an SSL request with cURL
I'm trying to use an API which is over SSL. I'm requesting it with cURL and filling out the POST parameters myself, like so:
<?php
$ch = curl_init();
$postFields = array(
'param1' => ...
0
votes
0answers
71 views
Updated version of PHP/Curl and now program is not working anymore (SSL)
I have written a little program in PHP with Curl and it was working fine with version of curl 7.21. I have updated my PHP and now using curl 7.26. Unfortunately, now the server I am trying to access ...
0
votes
1answer
822 views
cURL Error (58): unable to set private key file: '/var/www/work/xml/keys/client.pem' type PEM
I am getting this error, while connecting to a server using private and public keys.
cURL Error (58): unable to set private key file: '/var/www/work/xml/keys/client.pem' type PEM
My private keys ...
0
votes
1answer
601 views
Getting error in Curl - Peer certificate cannot be authenticated with known CA certificates
I am getting the below error while making ssl connection with self signed certificate.
"Peer certificate cannot be authenticated with known CA certificates"
It is working fine with CA signed ...
0
votes
0answers
135 views
PHP cURL user agent is breaking script when accessing google on https
I've been at this all day. I'm using a relatively popular script on github to perform multi curl with PHP called EpiCurl
However, for some reason it is breaking when I try to pass a user agent into ...
1
vote
0answers
1k views
SSL peer certificate or SSH remote key was not OK
I'm testing an API that uses curl_exec php function and a CA certificate but something is going wrong and I'm a little lost.
I have configured SSL on my apache VirtualHost and looks ok ( opening ...
1
vote
3answers
96 views
php curl abrupt behavior
I am using php curl to fetch data from youtube. There are two curls. First curl executes successfully and retrieves the access token from youtube. 2nd curl uses this oauth token and retrieves the user ...
1
vote
0answers
236 views
SSL Login issues using CURL
I am working on a local machine (win7X64) and downloaded SSL certificate from actual website and stored it locally in the same folder. It was working fine for couple of days but then started returning ...
0
votes
1answer
49 views
can't login with sll using curl anymore
Curl login with SSL was working fine before it broke down and driving me nuts.
Got following info with print_r(curl_getinfo($ch)):
My suspicion is "ssl_verify_result" because what i have read in the ...
0
votes
1answer
368 views
How to Enable SSL on Tomcat 7 on Linux & Test using curl?
Am using JDK 1.6, tomcat 7.0.32, and Red Hat Linux.
I need help setting up SSL on my local tomcat instance.
After looking at the instructions on the official tomcat 7 website:
...
2
votes
1answer
546 views
Security consequences of disabling CURLOPT_SSL_VERIFYHOST (libcurl/openssl)
What are the security consequences of Enabling CURLOPT_SSL_VERIFYPEER and Disabling CURLOPT_SSL_VERIFYHOST?
0
votes
2answers
196 views
SSL Error in payment process using CURL
I'm trying to do the payment gateway integration in php. When i'm doing test mode payment from local payment process is working fine. i have successfully redirected to my payment page.i have used CURL ...
0
votes
1answer
162 views
Secure SSL / HTTPS API call with PHP
In reference to this previous question:
Connect through HTTPS instead of HTTP
Would this be the good way to make a secure API call with HTTPS?
public function demo(){
$Username = 'username';
...
1
vote
1answer
513 views
PHP Curl connection to Amazon MWS Seller API
I am trying to send a request via PHP's Curl library to the Amazon seller API's ListOrders function. I am able to connect, but I am getting an AccessDenied error from their service. The documentation ...
0
votes
0answers
432 views
HTTPS request successful with PHP Curl fails when SoapClient is used
HTTPS request to a web service works fine using curl:
$username = "xxx";
$password = "xxx";
$timestamp = time();
$dateCreated = gmdate('Y-m-d\TH:i:s\Z', $timestamp);
$dateExpires = ...
3
votes
1answer
474 views
Configuring cURL for SSL
Our site recently shifted from http to https. It has REST API calls called by our customers which is now not working:
cURL before SSL (working):
$ch = curl_init();
...
0
votes
0answers
148 views
file_get_contents not work with authentication (IIS server)
When i try to get content of file on the IIS Server with authentication, it doesn't work, but when i use the same code to get content of file on ubuntu server with authentication, it works.
<?php
...
0
votes
1answer
133 views
PHP CURL and ssl authentication basic
I like to get content of file protected with authentication basic and ssl , using this code:
<?php
$ch=curl_init();
...
0
votes
1answer
192 views
Failed access to webservice ssl through php (curl) - ClientSoap
When i use this Php code to access to the wsdl file not secured with authentication basic, it works very well.
<?php
try{
ini_set('soap.wsdl_cache_enabled', false);
$url = ...
0
votes
1answer
354 views
curl doesn't verify a certificate with exported site's certificate in Firefox passed by --cacert
I am not much of an expert in SSL, please excuse me if I use some SSL related terms incorrectly. For some reason I can't download a file by https with curl supplying it with this site's certificate ...


