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
4 views

what is Data Encipherment in a ssl certificate

Can someone please point me to good articles on understanding the 'key usage' property of a ssl certificate? what are the pros and cons of getting a certificate issued with 'Data Encipherment' as one ...
0
votes
0answers
4 views

RestClient failing to GET resource using SSL client certificate

I'm trying to use RestClient to retrieve a page that's secured using an SSL client certificate. My code is as follows: require 'restclient' p12 = OpenSSL::PKCS12.new(File.read('client.p12'), ...
2
votes
0answers
10 views

Is RabbitMQ Authentification secure without SSL?

We are using RabbitMQ, we'll expose the server over the internet. We'll have multiple clients from multiple computers accessing the server. Our first instinct would be to enable SSL but this seems ...
0
votes
1answer
14 views

Python openSLL Server Crash on connection - odd error on SSL

I am trying to get a SSL server running, so it can accept JSON object and reply with other JSON objects. However, before doing JSON objects, I decided to do a simplified version and I came across this ...
0
votes
0answers
5 views

Issue regarding Chinese(GB2312) encoding type not support in apache server

Issue regarding Chinese(GB2312) encoding type not support in apache server. We are configure Chinese site in our application . Its support “gb2312” encoding type. When we are open it thought our ...
1
vote
0answers
15 views

SSH: How could I know the concurrent limit?

In order to test SSH server, I created a test program (in python) on the client side. The test program will generate 100 processes, each process will make a SSH connection with the server. Any failed ...
0
votes
0answers
9 views

NOT sharing HTTPSURLConnection between two webapps on tomcat

i have two webapps on my tomcat server. each webapp needs to initialize its own instance of keystore and truststore. i init them like so: sslContext.init(keyManagers, trustManagers, null) ...
0
votes
2answers
32 views

WCF with SSL doesn't use any certifacte and fails

I have created a WCF with several calls and I want to protect it with Transport security so it'll go over SSL. So I configured SSL in webmatrix since I'm using VS2012 + IIS Express like you can see ...
0
votes
0answers
7 views

Issue with setting JVM run time properties for truststore in WASCE environment

My Axis2 1.4.1, ADB binded webservice hosted in Websphere Application server community edition(WASCE)2.1.1.5. I have implemented SSL by generated self signed certificate and imported into keystore and ...
1
vote
1answer
13 views

ipv6 representation in SSL client subjectAltName

I have implemented a server which requires the client to present a TLS/SSL certificate, which will have IP addresses specified in its subjectAltName. Users presenting this certificate from a ...
0
votes
0answers
11 views

Enabling SSL for WCF web service hosted in windows Azure- Issue

I am getting the following exception when accessing a WCF Web Service hosted in the Azure staging. This problem happens when i enable SSL for our WCF Service. The provided URI scheme 'https' is ...
0
votes
0answers
21 views

Security For android/javaI

I am about to start a contract with a company and they need their data which I will be sending via sockets to be securely transferred from their Android device to a Java server. To do so I am going to ...
0
votes
0answers
6 views

troubleshooting SSL in Mozilla applications

Bug https://bugzilla.mozilla.org/show_bug.cgi?id=858394, SSL: disconnect, reconnect gives connection reset; all reconnect attempts fail The bug has attached log of NSPR and the issue is easy to ...
0
votes
0answers
6 views

Is enable secure admin option available in glassfish 2.1

My glassfish2.1 has two domains and i want to make it secured without changing the port. Is that possible without reinstalling glassfish? Thanks in advance
0
votes
0answers
6 views

create keystore for tomcat using .key ,.ca and .cert file

I have three file sample.cert, sample.CA,sample.key provided by verisign. I need to create keystore for tomcat.As I searched I cannot use .key file directly to create keystore. command used by me as ...
0
votes
0answers
9 views

Nodejs - Expressjs SSL (HTTPS) BEAST Attack — Node not honoring order

I have an SSL Cert with EV and I am following Eric Martindale's instructions for mitigating the BEAST Attack, but I am still showing a vulnerability to the attack. According to SSL Labs it only lists ...
0
votes
0answers
7 views

setting ssl keystore at runtime in Jetty

Is it possible to change keystore in runtime? Currently I am setting up SSL before I do a server.start() - sslContextFactory.setTrustStore(ks); ...
0
votes
0answers
10 views

SoapUI cannot open keystore

When trying to connect to my secure web services, I wasn't able to setup SoapUI properly with SSL certificates. Here's what I did: 1- Added the client certificate in a JKS keystore (keystore.jks) and ...
0
votes
0answers
10 views

SSL/TLS error using Cefsharp embedded in .Net Winforms app.

I have a javascript application running in a Cefsharp browser embedded in a .Net winforms app. When making an AJAX request to a node.js REST service there is an error. Log: ...
-1
votes
1answer
20 views

Self signed SAN certificate failed to be verifed [closed]

I followed this instruction to create a self-signed certificate http://apetec.com/support/GenerateSAN-CSR.htm. However, the certificate is always failed to be verified and my tls connection program ...
0
votes
2answers
22 views

Apache HttpClient use own SSL-certificates

I am trying to connect to a https secured restwebservice using httpclient 4.0.3 with Java7. My code looks like this: public static void main(String[] args) throws Exception { ClientRequest ...
1
vote
0answers
22 views

Sending SSL Certificates with ActiveXObject WinHttpRequest

I need to send a SOAP envelope to a URL but the connection requires certification. Trying to submit without returns: WinHttp.WinHttpRequest error '80072f0c' A certificate is required to complete ...
0
votes
0answers
16 views

SSL Pinning on iOS

To improve my app's security and protect the user from MITM attacks I'm trying to do SSL pinning with my self-signed certificate following the content of this post. So I'm using the following code to ...
0
votes
0answers
7 views

user ssl cert and 3rd party ssl validation?

I have a need to place a https link on a http site. The link will use someones ssl -cert to verify if someone can access the data on the link. The ssl - cert will be verified by a 3rd party ...
0
votes
0answers
4 views

Wordpress SSL, wp-admin forcing unwanted SSL on LIVE server

So we've been banging our heads against the walls with this one. We have two servers. A development, and a live. The live is essentially an exact copy of the dev as far as the wp-admin is concerned. ...
0
votes
1answer
27 views

SSL accepting self signed certificate in ActionScript 3

i am trying to use SecureSocket connection to server. i am using FlashBuilder 4.6 that has SecureSocket class implemented. the problem is that after creating SecureSocket object and calling connect ...
0
votes
0answers
12 views

Configuring WebSphere 8 SSL (HTTPS Between Apps)

I have two web apps that I am installing in WAS 8, and they need to communicate with one another using HTTPS (This may not be the best way to handle communication in WAS, but these apps are provided ...
0
votes
0answers
21 views

SSL error introduced by upgrading to Java 1.7 from 1.6

Hello good people on stackoverflow, this is my first time asking a question. Anyway. I am having problem with some fairly basic SSL code. The code works using java 1.4, java 1.5 and java 1.6 but not ...
0
votes
0answers
13 views

OSB - BEA-000409 - Cannot get fd for sock=Socket[addr=our.proxy.server/xx.xxx.xxx.xxx,port=8080,localport=59719]]

we have a problem in our development environment. We are on WLS 10.3 , windows server 2008 R2 enterprise, jdk1.6.0_45 64bit. We use OSB paltform and we try to invoke an external web service which is ...
0
votes
0answers
12 views

WCF Rest Service with optional client certificate

Is it possible to have an WCF Rest Webservice which excepts SSL Client Certificates and have the IIS SSL Setting to not set to "require SSL" and to anly "accept" client certificates and not "require" ...
1
vote
1answer
23 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 ...
-1
votes
0answers
11 views

Apache (httpd) server how to force redirect to a non-www domain under while under https [closed]

On a default installation of CentOS (on AWS), I have the following configuration in my conf.d directory. So, besides for this configuration, I just have the default conf/httpd.conf file. What I am ...
1
vote
1answer
17 views

Spring JavaMailSenderImpl is not working with SSL [closed]

Simple Java Mail client is working fine with an email server running on SSL. But the same server is not working when used from Spring JavaMailSenderImpl class. Also thunderbird works fine the mail ...
0
votes
1answer
24 views

Using CFContent on IE with SSL

CFContent does not work with IE on a SSL site. I have been looking for a fix but have not found one. As an alternative I was to have the CFContent download the excel sheet to a directory and then use ...
1
vote
1answer
14 views

keytool error: java.lang.ClassNotFoundException: org.bouncycastle.jce.provider.BouncyCastleProvider

I want to create a BKS keystore type and for that I'm using this command: keytool -genkey -keystore ./test.keystore -alias test -storepass testtest -keypass testtest -dname "CN='', OU='', O='', ...
1
vote
1answer
29 views

how to validate 2-way SSL certificates?

I need to validate client as well as server's certificate.How can I do it at TCP level and at HTTP level? for Http I use cURL client library.OpenSSL is the SSL library.This has to be done through self ...
0
votes
0answers
8 views

Secure File Transfers Technology Comparison [closed]

I'm looking into the capabilities, limitations and theoretical performance differences between SFTP, FTPS and SCP technologies. Does anyone know of a good source which may have a lot of the ...
-1
votes
1answer
23 views

Is there any web server out there to validate Client SSL certificate?

Does any website(web server) out in the WWW which validates client SSL certificate? I need to get my client SSL certificate validated.Please don't suggest me to setup an apache2 server on my PC! I've ...
0
votes
1answer
17 views

WCF service and Thinktecture Identity server

im using the thinktecture identityserver Security Token Service im trying to set up a scenario where I have a client using a WCF service. I'm stuck at a point where I get next error: ...
0
votes
1answer
13 views

Using pip with 'insecure' mercurial

Is it possible to use pip with a requirements file to install from a Mercurial repository which needs to be accessed using --insecure in order to work. The repository is accessed via SSL, and due to ...
0
votes
0answers
9 views

run YATE on windows with sip/rtp ssl encription

I want to run YATE on localhost with ssl encription. Without ssl, if i use udp or tls type of listener- etherithing is OK - i check by yate-client on same machine. But with ssl enabled - i cant to ...
-1
votes
1answer
25 views

Azure Website Certificate Signing Request (CSR) [closed]

I am running my website on Windows Azure. It's a Website in shared mode. I want add a SSL certificate that I have purchased from GoDaddy and for me to get the certificate I need to give GoDaddy my ...
0
votes
1answer
16 views

Custom 404 error redirect not working for https requests in htaccess file

I have a simple 404 redirect in a .htaccess file which works fine for Http requests:- ErrorDocument 404 /apps/handle_error.php The handle_error.php returns an appropriate PNG image depending on the ...
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
20 views

Java SSL Safety

I have a client-server model that uses SSL on every connection. I have used Java and the common libraries to program this. I have two questions regarding the SSL safety: 1) Is it considered safe to ...
0
votes
0answers
17 views

Connect HTTPS using SSL Android

I need to login using SSL from android to HTTPS server. I am using below code. I am getting error code 400. Any example will help or let me know where I am doing mistake. I am very new to SSL ...
0
votes
0answers
20 views

Securing Paypal _cart with ssl

So I'm working on an online shopping web page and am currently trying to secure with SSL the cart submit button into Paypal. That is, I'm using a button following the 143rd railscast (link here), ...
1
vote
1answer
11 views

Makecert still what to use to self sign?

I don't have makecert anywhere on my system despite having 3 Vstudio editions and several SDK's. Can someone please tell me where I can find a copy or how else I should generate a certificate to test ...
1
vote
1answer
16 views

Reg: SSL Certificate Changes

We have recently changed out SSL certificates on our application and there are some external tools that connect to our application like excels, my question: Do we need to make any changes to excel ...
0
votes
0answers
15 views

Tomcat trial Thawte certificate

I purchased a trial Thawte certificate. They gave me 3 certs: root certificate intemediate certificate trial certificate I did the follows: Created keystore and local key pair (keytool -genkey ...

1 2 3 4 5 177