Tagged Questions
TLS: Transport layer Security: See IETF RFC 5246 http://tools.ietf.org/html/rfc5246
47
votes
3answers
2k views
Why is there a handshake failure when trying to run TLS over TLS with this code?
I tried to implement a protocol that can run TLS over TLS using twisted.protocols.tls, an interface to OpenSSL using a memory BIO.
I implemented this as a protocol wrapper that mostly looks like a ...
10
votes
3answers
487 views
Are there .NET implementation of TLS 1.2?
Since I just discovered that RFC 5425 requires TLS 1.2 to be used, and that .NET doesn't yet support it, I wonder if there are any implementation, possibly open source, of TLS 1.2 protocol, as defined ...
10
votes
2answers
1k views
How can I make cookies secure (https-only) by default in rails?
In a Rails controller, I can set a cookie like this:
cookies[:foo] = "bar"
And specify that the "secure" (https-only) flag be on like this:
cookies[:foo, :secure => true] = "bar"
:secure is ...
7
votes
2answers
209 views
How to get to the SSL/TLS internals from Python?
I am implementing the XMPP protocol in Python (2.7 and 3.2) and I found one important thing stopping me from making the implementation fully compliant.
The current specification (RFC 6120) requires ...
7
votes
2answers
256 views
Define cipher suite for TLS in JCA
I want the support of the following cipher suites in TLS using JCA:
TLS_PSK_WITH_3DES_EDE_CBC_SHA
TLS_PSK_WITH_AES_128_CBC_SHA
TLS_PSK_WITH_NULL_SHA
TLS_PSK_WITH_AES_128_CBC_SHA256
...
6
votes
2answers
640 views
Difference between SSL & TLS
According to wikipedia: http://en.wikipedia.org/wiki/Transport_Layer_Security
Seems like TLS is a replacement to SSL, but most websites are still using SSL?
6
votes
4answers
330 views
Is performing login with https but then everything in http all a bit pointless?
So you've performed the login using https to prevent man in the middle attacks and make sure your password isn't sent in the clear. Good call. But many sites then switch back to http for the rest of ...
5
votes
0answers
63 views
TLSv1 handshake failure
(Disclaimer: I am by no stretch of the imagination a security expert nor a windows expert for that matter)
Setup:
server on our end: java 1.6 (already added bouncycastle to the security file) on ...
5
votes
4answers
3k views
iOS 5 : https ( ASIHTTPRequest) stop working
I got an app which use ASIHTTPRequest.
I recompiled my app with iOS 5 (sdk : 5.0 / xcode: 4.2 Build 4D199 ) and the https connections fail with error message (the same call with https disabled works ...
5
votes
4answers
2k views
TLS connection using SSLSocket is slow in Android OS
I'm developing an Android app which uses SSLSocket to connect to a server. This is the code I'm using:
// Connect
if (socket == null || socket.isClosed() || ...
5
votes
2answers
3k views
Confirmation email from devise on rails3 using gmail not arriving
I've set the following up.
----------------------
config/environments/development.rb
----------------------
29 ActionMailer::Base.delivery_method = :smtp
30 ...
5
votes
3answers
9k views
Java SSL/TLS ignore expired cert? (java.security.cert.CertPathValidatorException: timestamp check failed)
I am having an issue with a api that I communicate to via SSL. I am thinking the exception is coming due to the fact that the SSL cert has expired. The problem is that I do not administer the API box. ...
5
votes
4answers
870 views
SSL handshake problem? (was: Web page hangs, only clearing browser cache helps)
Please see at the end, as I constantly update with latest investigation data. Currently, I need help with server-side WireShark log.
I experience strange issues with ASP.NET MVC web application. Few ...
5
votes
3answers
2k views
Good list of weak cipher suites for JAVA
I'm running a server that requires a blacklist of weak cipher suites.
So which of the following are weak?
http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html#SunJSSEProvider
...
4
votes
2answers
629 views
Using Gmails Outgoing SMTP from DELPHI(Indy) using TLS
I am using INDY to send Email using the SMTP client on port 25 with no problem.
Now I need to send an Email using a Gmail account and for that I need to use TLS.
Can anyone provide a simple sample ...
4
votes
3answers
628 views
Properly closing SSLSocket
I want to implement an SSL proxy in Java. I basically open two sockets browser-proxy,proxy-server, and run two threads which would write to proxy-server what they read from browser-proxy, and vice ...
4
votes
3answers
202 views
Cryptography and Authentication via TLS with Web of Trust in Java
For a program I am writing, I would like to use TLS (or something similar) to encapsulate my application's protocol. This will minimize both the amount of work I have to do as well as the number of ...
4
votes
2answers
150 views
How to link non thread-safe library so each thread will have its own global variables from it?
I have a program that I link with many libraries. I run my application on profiler and found out that most of the time is spent in "waiting" state after some network requests.
Those requests are ...
4
votes
5answers
356 views
Example sites with broken security certs
I'm wondering if there are any demo sites which show different cases where HTTPS is misconfigured or broken. Or does anyone know of websites in the wild that display various broken / misconfigured ...
4
votes
4answers
1k views
Sun's Java SSL Implementation is Leaking Memory?
I have a server component that I'm trying to load-test. All connections to the server use TLS 1.0. I have a simple test program that essentially does this on as many threads as I want:
Full TLS ...
4
votes
2answers
1k views
Is there a Perl IMAP module with TLS support?
I'm writing a Perl script to connect to an IMAP server that requires TLS over port 143. The server does not support connecting over SSL. Thus far, the Perl IMAP modules I have found support only SSL, ...
4
votes
1answer
386 views
Workaround for SSL bug
There seems to be a bug in the SSL implementation of an https server I'm connecting to; the problem initially arose in my application, but I've since been debugging / reproducing it with the openssl ...
4
votes
3answers
10k views
Using JavaMail with TLS
I found several other questions on SO regarding the JavaMail API and sending mail through an SMTP server, but none of them discussed using TLS security. I'm trying to use JavaMail to send status ...
4
votes
5answers
2k views
How can I setup different SSL-Certificates for vhosts on Apache?
I have a web-server, that serves different domain-names, but has only one IP-address assigned. That works fine with virtual hosts in Apache. Now I want SSL-encrypted connections for the websites. How ...
3
votes
1answer
99 views
.Net SqlConnection, Server Authentication, and Certificate Pinning
How does one pin a certificate when using s SqlConnection? From SqlConnection Connection String Parameter Keywords & Values, I know I can set Encrypted to true to force (encourage?) use of ...
3
votes
1answer
55 views
How do I securely add a random padding to all ASP.NET AJAX HTTPS responses?
Apparently, it is possible to leak data in an SSL connection based on the size of the HTTPS request and response.
Considering the complexity of the ASP.NET pipeline, how do I securely add a random ...
3
votes
1answer
519 views
CakePHP SwiftMailer SMTP TLS OpenSSL Error SSL3_GET_RECORD:wrong version number
I'm attempting to send an email using the CakePHP SwiftMailer component I found here:
...
3
votes
2answers
303 views
How to secure a RESTful php web service with SSL/TLS and/or Message level security
I have a RESTful web service written in php that uses JSON for communication. Some of the data transmitted is really sensitive (passwords) and I am looking for a way to achieve a reasonable security ...
3
votes
2answers
242 views
Lightweight encryption key exchange protocol
I have an embedded system posting data to a JSON REST service via HTTP. I'm currently using HMAC-SHA1 for authentication, the same way that Amazon AWS does it.
I'm now exploring options for ...
3
votes
2answers
541 views
How to check that TLS handshake was finalize in Twisted
This is a follow up of this question: SSL handshake failures when no data was sent over Twisted TLSConnection
I have implemented a simple SSL server that closes the connection as soon as the client ...
3
votes
2answers
266 views
TLS with php server socket
Hi
My proplem is that I have a open socket in my server side code (written php) and I need to trasform this socket to use TLS, with negotiation and decription of the stream before passing it to the ...
3
votes
2answers
610 views
.NET SslStream is not working
I am trying inialise a tls tunnel with the .net SslStream but after opening the stream I always get the following error:
"Unable to read data from the transport connection: An established connection ...
3
votes
3answers
408 views
HTTPS, URL path, and query string
This is a follow up post of my previous question (it was about username/password)
Are the path to the resource and query string passed securely to the server if I use HTTPS?
i.e.
URI: ...
3
votes
4answers
316 views
Securing Cassandra communication with TLS/SSL
We would like to protect the Cassandra against man-in-the-middle attacks. Is there any way to configure Cassandra in a way that the client-server and server-server (replication) communications are SSL ...
3
votes
1answer
316 views
Inspecting SSL cert returned via LWP request
I'm requesting a web page using LWP in perl, and I'd like to be able to access the SSL certificate that the web server presents (I'm looking for an expiration date in the cert, among other things). ...
3
votes
4answers
445 views
How to specify a cipher for an SSL connection in .NET?
How can I specify a cipher suite to use in an SSL Connections?
I know that Mentalis Seclib got this feature however they don't maintain the project (and there are issues in that library with x64 ...
3
votes
2answers
774 views
Node.js and wss://
I'm looking to start using javascript on the server, most likely with node.js, as well as use websockets to communicate with clients. However, there doesn't seem to be a lot of information about ...
3
votes
2answers
564 views
SSL_CTX_set_cert_verify_callback vs. SSL_CTX_set_verify
Can anyone tell me what is the difference between SSL_CTX_set_cert_verify_callback and SSL_CTX_set_verify?
From OpenSSL docs:
SSL_CTX_set_cert_verify_callback() sets the verification callback ...
3
votes
3answers
2k views
SMTP on C: STARTTLS via OpenSSL
I am using openssl to build secure smtp connections to gmail.com:25. So I can successfully connect to the server and sends a command STARTTLS (I receive 220 2.0.0 Ready to start TLS). Then execute the ...
3
votes
1answer
910 views
NSStream SSL on used socket
I am writing an application that uses NSStream's SSL functions on the iphone. I know that SSL is working because I can directly connect servers using SSL.
I have encountered a problem where protocols ...
3
votes
2answers
3k views
C# ASP.NET Send Email via TLS
In order to comply with HIPAA regulations, we need to send email from an external site (outside the firewall) to an internal Exchange server (inside the firewall). Our Exchange admins tell us we need ...
3
votes
2answers
4k views
How can I have multiple SSL certificates for a Java server
I have an in-house HTTP server written in Java; full source code at my disposal. The HTTP server can configure any number of web sites, each of which will have a separate listen socket created with:
...
3
votes
2answers
949 views
How do I use TLS with asyncore?
An asyncore-based XMPP client opens a normal TCP connection to an XMPP server. The server indicates it requires an encrypted connection. The client is now expected to start a TLS handshake so that ...
3
votes
2answers
578 views
TLS handshake event in Tomcat, is there something like that?
Hi
I'm running an application (web service) in tomcat with TLS enabled (with certificates both for the client and the server).
I want that my application will be able to send audit message (logging) ...
2
votes
2answers
39 views
How can you drop an HttpRequest connection in Django when TLS/SSL is not being used?
I'm writing a Django 1.3 view method which requires TLS/SSL to be used. I want to entirely drop the connection if an HttpRequest is received without using TLS/SSL and NOT return any kind of response. ...
2
votes
0answers
102 views
Netty https ( TLS ) Session duration: why is renegotiation needed?
I have a 100% https web server that does TLS renegotiation. This is very useful so that users can come to the site and get some nice pages before clicking the login button and being asked for their ...
2
votes
2answers
91 views
SSL/TLS without certificates
I'm working on a pet project that will (eventually, when it's done) allow for secure file transfers (there's more to it than just that, but the rest isn't particularly relevant). I'd like to use the ...
2
votes
1answer
112 views
Are Heroku dynos vulnerable to BEAST? (TLS 1.0 CBC exploit)
Was reading an article in The Register about BEAST which lead me to the SO post about SslStream, BEAST and TLS 1.1
It seems the best way to mitigate the vulnerability is to prefer a non-CBC cipher ...
2
votes
2answers
91 views
Android and Windows dont have same TLS Algorithms
I am using TLS between a Windows 7 acting as the server and an Android 2.2 acting as the client. The certificate was created using makecert.exe. The SSL socket creation works on both ends, but the ...
2
votes
2answers
155 views
CURLE_RECV_ERROR with PayPal API
I've developed an application that connects to the PayPal API with libcurl, which I use through the OCurl bindings for OCaml from a process running on a Debian server. The code always works when ...