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.

learn more… | top users | synonyms (1)

0
votes
0answers
9 views

How to turn off/disable TLS on chrome

Is there anyway to disable using TLS encryption/compression on Google Chrome on OS X 10.8.4 as you can disable it on firefox preferences in Advanced -> Encryption by unchecking it?
-1
votes
0answers
4 views

MAMP Pro Symlinked httpsdocs httpdocs

I'm doing some work for a local company that uses Oscommerce for their online store, which currently isn't working and I think needs to be installed. The company uses and SSL certificate and has both ...
0
votes
1answer
8 views

SSL-enabled support for LDAP Fault-Tolerence

SSL-enabled support for LDAP Fault-Tolerence: As we know, we must provide one keystore for ssl-enabled LDAP URL. But for LDAP Fault-Tolerence, we provides LDAP URLs with space-seperated. e.g ...
0
votes
1answer
9 views

Proxy able to see request data in plain text on SSL connection

For testing web application vulnerability we are burp suite. Burp suite has an option of intercepting requests by creating a proxy server which a browser connects to. Our application is running on ...
0
votes
0answers
7 views

HEAD requests throw System.InvalidOperationException after upgrade to MVC4

I recently upgraded my MVC3 site to MVC4. Before the upgrade, HEAD requests would come in and no exception was thrown. After the upgrade, every time a HEAD request is made, an exception appears in ...
0
votes
0answers
12 views

.NET 4.5 HttpClient PUT or POST over SSL always fails

I am having a terrible time troubleshooting this issue. I'm also having a terrible time reproducing it consistently from one application to another. Under certain circumstances, which I cannot seem ...
1
vote
0answers
10 views

Why do Web Services use WS-Security instead of using Transport Layer Security?

The only reason I can think of is that an extra layer of security is needed because Web Services run on top of an application layer protocol. Does this imply the need for an extra layer of security?
0
votes
1answer
10 views

how to Manipulate Handshake message in TLS/SSL in JAVA JSSE?

I want to know is if we can handle messages handshake SSL / TLS in Java code, in other words in the query ClientKeyExchange is if we can manipulate or select the key that will be sent to the server?
0
votes
0answers
5 views

installig ushahidi iis plesk windows

Hello I'm trying to install ushahidi web application in a windows environment using plesk. I have copied the files and run the installer and everything seems to work just perfect. The problem is when ...
0
votes
0answers
24 views

SSLSocket exception handshake error when trying to send to SSLServerSocket

it's my first times to deal with SSLSockets , i created SSLServerSocket and SSLSocket , the ServerSocket run ok , but when trying to run the SSLSocket (Client) , it's don't run , and this error ...
0
votes
0answers
12 views

Mutual Auth on Glassfish, Connection Interrupted

I have a Glassfish instance, 3.1.2.2, with 4 HTTP listeners. Here are the relevant data points: admin-listener : default admin 4848 Works fine http-listener-1 : default http 8080 Works fine ...
0
votes
0answers
4 views

SSL handshake failed - certificate not found in trustore

I was trying to establish a secure socket connection in flex(client) with apache mina ssl filter (server in java). I did below- 1. I have generated keystore.jks, trustore.jks and selfsigned.cer ...
1
vote
0answers
12 views

How can I create a PSK connection between the Eclipse PAHO Java MQTT client and the Mosquitto broker?

I am trying to configure a Pre Shared Key encrypted connection between a mosquitto mqtt broker and an application written in Java which uses the Eclipse Paho client library. I have successfully made ...
1
vote
0answers
12 views

Android SSL usage: key input stream from UI thread to background thread

I have a design question on android SSL socket usage. To be able to initialize a secure socket, I need to be able to access the key input stream from a background thread to initialize the session ...
0
votes
0answers
5 views

SSL offloading redirect to https

How do you tell the load balancer to redirect from a http request to a https request? I have a .net app which will redirect visitors to SSL if they visit certain pages.
0
votes
0answers
8 views

SSL Client Authentication Issue between WebSphere and GlassFish servers

I have an issue connecting to a GlassFish server (external party) from WebSphere (our server) when using SSL Mutual Authentication. It looks like the SSL negotiation has succeeded but then one side ...
1
vote
0answers
16 views

SSL 256 bit encryption - on Azure website

With reference to the recent custom SSL provision for Azure website on the reserved instance - how can I enforce 256-bit encryption? All I see is the 128 bit using RC4_128. I want to ensure users ...
1
vote
1answer
12 views

Heroku SSL Endpoint - “No Such App”

Any ideas why I might be getting the "No Such App" error when I go to my herokussl.com URL (after adding a cert and Heroku SSL endpoint)? I followed the instructions here ...
-1
votes
0answers
15 views

Boost ASIO + SSL + strands [closed]

Your semi-recent question was really helpful for me and my secure WebSocket implementation. I had the same architecture for my server -- a mutex which was acquired in all handlers as well as in ...
0
votes
0answers
3 views

SSL handshake on .Net client

I am new to SSL Client Server Handshake. My requirement is to connect to a third party webservice which is written in java. I am writing a .Net Client to connect to the webservice. The client is ...
0
votes
0answers
8 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
1answer
17 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
19 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, ...
-1
votes
0answers
7 views

SSL: Combining multi-domain and wildcard certificate for securing websites [closed]

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
11 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
29 views

SSL Error in Twython GET

I am playing with the twython and requests packages and found something strange which is blocking my code to retrive the tweets. I am working behind the firewall if it helps. Code: from twython ...
0
votes
0answers
26 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
14 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
20 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
14 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
3answers
33 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
16 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
18 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
9 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 ...
-1
votes
0answers
19 views

Overcoming gmail's country lock in imap client

I have created an online imap library and a very basic web client for logging into gmail account. Now according to Google, my location that i use gmail from is Pakistan but my code is hosted on ...
0
votes
0answers
18 views

Silverlight 404 on service with SSL enabled

I've tried a lot of tips on this one but I cannot get it working. On the client I have: <configuration> <system.serviceModel> <bindings> <basicHttpBinding> ...
0
votes
2answers
50 views

How to return an image to an https request with PHP

After many hours, I nailed down my problem concerning downloading an image with an https request. When I access an image with the hard path (https://mysite/tmp/file.jpg), apache returns it with ...
0
votes
0answers
15 views

ssl external content php codeigniter

I'm developing a site that is all behind SSL. Members can post profiles containing text, youtube vids, soundcloud sounds and external images. I have a filter in place to remove all iframes, js etc and ...
0
votes
0answers
32 views

looking for “X.pem” file containing certificate or private keys

I just started to learn SSL socket programming with Boost::Asio. I want to make a secure connection and I am working on the SSL example provided by the Boost::asio. For the server code we have: ...
0
votes
0answers
14 views

signed certificat SSL on a server without a domain name

I got some issue with Self-signed certificate on my server for an iOS App, I want now to use now a real Certified Certificate. First of all, I saw that all certificate provider want a domain name ...
-1
votes
2answers
21 views

What does it mean to accept all SSL certificates?

I have a general understanding of SSL and how it works but I have seen multiple applications that have checkboxes that say something like "Accept all SSL Certificates" and I am having trouble ...
0
votes
0answers
14 views

KeyStore integrity check failed

I am trying to integrate Facebook Chat in android , so far i have successfully import asmack library and i am trying to login using Facebook JabberID. i have mentioned the following configuration to ...
0
votes
0answers
19 views

Recaptcha for .NET MVC having more trouble with SSL

I'm attempting to get Recaptcha for .NET working with ASP.NET MVC 4.0 on an https site that is using SSL. I've been reading up on it and the problem seems prolific, but I'm having a hard time finding ...
1
vote
0answers
40 views

Play Framework: How can I use a given certifcate for an HTTP WS.url call?

I have a certificate from a REST services provider, and I need to tell an given HTTP get call to use it when contacting a given provider. The codebase I'm working on used to use a third party library ...
0
votes
0answers
30 views

QNetworkAccessManager doesn't work

I try to get twitter search page from my Qt app. I use QOAuth to generate signed request, and QNetworkAccessManager to send it. But i always get 401 error with "{"errors":[{"message":"Could not ...
0
votes
1answer
11 views

From Classic ASP consume a ssl .net web service

I've researched the web extensively before posting this questions here, couldn't find anything usefull for me, so here it goes. Sorry in advance for the wall of text. I have a classic ASP website ...
0
votes
1answer
13 views

Need to provide complete chain of certificate for open ssl

I had installed SSL certs one one of my cloud server by following this: http://www.rackspace.com/knowledge_center/article/installing-an-ssl-certificate-on-apache I am running jetpack plugin on my ...
0
votes
1answer
11 views

Sonatype Nexus: Where in the GUI can I add a SSL certificate?

I'm using Sonatype Nexus 2.5.0-04. I'm trying to add a SSL certificates in the user interface, as described in the documentation here: ...
1
vote
1answer
25 views

Azure Websites SSL Intermediate certificate

Azure Websites now supports SSL and allows you to upload a certificate. I have a GoDaddy certificate that i have uploaded and although this works fine for 80% of users it seems that Windows XP users ...

1 2 3 4 5 182
15 30 50 per page