Secure Sockets Layer (SSL) is a cryptographic protocol that provides communications security over the Internet. The more modern version of this protocol is Transport Layer Security (TLS), specified by the IETF in RFC 2246.
0
votes
0answers
5 views
SSL3 POST with Python
I have a pile of tasks to automate within cPanel. There is a cPanel API described at http://videos.cpanel.net/cpanel-api-automation/ but I tried what I thought was easier for me...
Based on an answer ...
0
votes
0answers
9 views
How i can create a self-signed certificate using phpseclib
How i can create a self-signed certificate using phpseclib from a existing .csr file, only i can use a .csr file.
I've read the manual and the method use a private key, but in my assignment i only ...
1
vote
0answers
13 views
https based url not working in fcokopen with proxy
I cant load https based urls in fsockopen with proxy but i can load https without proxy .
$fp = fsockopen($proxyHost ? $scheme.$proxyHost : $scheme.$host, $proxyPort ? $proxyPort : $port, $errno, ...
0
votes
0answers
4 views
SSL: Combining multi-domain and wildcard certificate for securing websites
We need to combine a multi-domain and a wildcard-certificate on the same server, that is we need to secure *.myfirstdomain.com and www.myseconddomain.com. Note that simply listing all subdomains of ...
0
votes
0answers
10 views
How do i create and SSLSocket by inserting the IP address and NOT the host name?
SSLSocket socket = (SSLSocket) factory.createSocket("IP Address", 443);
When i put the IP address instead of the host name it stays inside the function. How can i create the socket using the IP ...
0
votes
0answers
11 views
SSL Error SSL3_GET_SERVER_CERTIFICATION
I am playing with the twython and requests packages and found something strange which is blocking my code to retrive the tweets.
Code:
from twython import Twython
t = ...
0
votes
0answers
6 views
javax.net.ssl.SSLHandshakeException: Received fatal alert: certificate_unknown
I want to establish a secure channel between a client and server using Java SSL session.
I followed the following link http://www.herongyang.com/JDK/ssl_https.html to establish the connection
after I ...
0
votes
0answers
7 views
Does phonegap's webview on android uses self signed certificate or validates successfully verisign key?
I am developing a mobile application on phonegap android that connects to a server via https. The server is using verisign as CA. How to know if phonegap's webview validates successfully the key, or ...
0
votes
0answers
15 views
WCF Client Certificate Authentication, The SSL settings for the service 'SslRequireCert' does not match those of the IIS 'Ssl, SslNegotiateCert'
I have a website that is going to be called from some clients which will be authenticating with client certificates and others which will not be, because of this i have to have iis settings for client ...
0
votes
0answers
9 views
Tomcat ssl mutual authentication fails with socket closed
I am working on web application to achieve certificate based login.
I am using tomcat 7 and i have configured http connector as below and also auth-method configured as CLIENT-CERT on my project ...
0
votes
2answers
23 views
How to build a PHP/Node proxy to render external http images on https website?
I have a website running on https.
I have to load images from external server (external domain) which doesn't have https, but single http protocol.
Is there's any way to handle proxy for http images ...
0
votes
1answer
14 views
SSL error : routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
I am working in a company..I have a large number of file downlaod links in a txt file. Currently I am writing a code in pythonto download all the files at once.. But i end up with the following error
...
0
votes
0answers
15 views
ssl handshake failure TLSv1
When connecting to our host via wget or openssl, by default we get the following error:
# openssl s_client -connect hostname.com:443
CONNECTED(00000003)
write:errno=104
The same error exactly ...
0
votes
0answers
7 views
How to save TLS session key by editing OpenSSL?
I want to save session key by editing OpenSSL source code.
When I create TLS connection with other website, I want to save the session key on text file.
I want to ensure packet with TLS session key ...
0
votes
0answers
5 views
Stop tomcat7 from redirecting to https
I just installed tomcat7. I have configured a connector on port 8080. But any http request to port 8080 seems to get redirected to https: //localhost/. This fails since there is nothing listening on ...