Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is a cookie secure in a HTTPS connection?

share|improve this question

3 Answers

up vote 16 down vote accepted

It is transmitted to and from the server encrypted, so it's as secure as TLS is.

You can also flag a cookie as being intended only for client->server communication, and block access from client-side Javascript, by adding the "HttpOnly" flag in the "Set-cookie" response header.

edit — and as @Bruno suggests, you can also use the "secure" flag (in the same header) to tell the browser that the cookie should only be sent back to the server in https requests. As @D.W. points out in a newer comment, that can be quite important, as you almost certainly don't want your important secured cookies probably to be transmitted on unsecured interactions (say, prior to login from a non-secure public portion of a site). If all the interactions with a particular cookie domain are HTTPS, then that might not be necessary, but it's such a simple thing that there's no reason not to do it.

edit — update, a long time later: use the secure flag :)

share|improve this answer
3  
It's also worth using the secure cookie flag. – Bruno Oct 25 '10 at 14:54
@Bruno oh yes of course - I'll extend the answer – Pointy Oct 25 '10 at 14:55
2  
This answer is erroneous. The cookie is only "as secure as TLS" if the secure flag is set. Otherwise, a man-in-the-middle or potentially a passive eavesdropper can learn the cookie value (because it will be sent in the clear over unencrypted sessions if the secure flag is not set). – D.W. Sep 18 '11 at 3:35
@D.W. That's a good point - I'll add that to the answer. Note that I had already mentioned the "secure" flag and its role. – Pointy Sep 18 '11 at 9:20
Pointy, thanks for the update! That's a partial improvement. However, the first sentence is still incorrect. If you don't set the secure cookie, then it is not correct that the cookie is as secure as TLS. A network attacker (e.g., a MITM) can cause your browser to visit a non-https site without your knowledge and thus disclose the cookie, without breaking TLS. Your last paragraph fails to recognize that an attacker can force you to visit a non-https site without your knowledge, so it is impossible to ensure that all interactions will be over HTTPS; therefore, you must set the secure flag. – D.W. Sep 18 '11 at 23:52
show 5 more comments

In the connection, yes. But It's still stored on the client's machine unencrypted.

share|improve this answer

Cookies are sent within the HTTP header. Thus they are as secure as the HTTPS connection which depends on a lot of SSL/TLS parameters like cipher strength or length of the public key.

Please keep in mind that unless you set the Secure flag for your Cookie, the Cookie can be transmitted over an unsecure HTTP connection. There are man-in-the-middle attacks that use such unsecure Cookies to steal session information. So, unless you have a good reason not to, always set the Secure flag for Cookies when you want them only transmitted over HTTPS.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.