Secure cookies and mixed https/http site usage. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:26:04Zhttp://stackoverflow.com/feeds/question/709085http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/709085/secure-cookies-and-mixed-https-http-site-usage2Secure cookies and mixed https/http site usage.Legooolas2009-04-02T09:56:58Z2009-04-02T10:37:21Z
<p>Lots of sites appear to support https but don't use secure cookies. I want to make my site use secure cookies but to allow for some content to be accessed using http instead.</p>
<p>A sensible way to do this appears to be to have a secure cookie for the real session, and a non-secure cookie which is just a flag to say if the user is logged in or not (to display different things in the header, like a logout link instead of a login link). This cookie wouldn't contain any "real" session information and is just so that the site can show pages slightly differently for logged-in users compared to logged-out ones on http portions of the site.</p>
<p>Having the whole site as https is another option but this appears to be quite a bit slower than plain http and so is not really ideal.</p>
<p>Why don't sites use this kind of set-up and have secure cookies? The possibility of cookie theft seems to make secure cookies a necessity nowadays. Is there a better way to achieve the same thing?</p>
http://stackoverflow.com/questions/709085/secure-cookies-and-mixed-https-http-site-usage/709200#7092000Answer by tylerl for Secure cookies and mixed https/http site usage.tylerl2009-04-02T10:35:39Z2009-04-02T10:35:39Z<p>From a security standpoint, you should never trust any content sent over a non-secured connection. So with that in mind, then it is safe to use a cookie sent over an unencrypted connection only if the cost of theft or misuse of that cookie is approximately zero. </p>
<p>With that in mind, most sites are designed such that the data isn't allowed to "leak" between the channels. After all, data coming from the <strong>encrypted</strong> side is usually privileged, and therefore shouldn't be allowed in the normal channel, while data coming from the <strong>unencrypted</strong> channel is potentially spoofed, and shouldn't be trusted.</p>
<p>If you have data that doesn't fit those generalizations, then feel free to do with it as you please.</p>
http://stackoverflow.com/questions/709085/secure-cookies-and-mixed-https-http-site-usage/709209#7092092Answer by thomasrutter for Secure cookies and mixed https/http site usage.thomasrutter2009-04-02T10:37:21Z2009-04-02T10:37:21Z<p>The solution you propose seems like a good one, as long as you don't mind non-authorized people being able to view the non-secure (http) part of the site 'as if they are logged in' - ie as long as the http part of the site does not contain any sensitive information, and the only difference between logged in and not-logged-in users is something harmless in the header.</p>
<p>The reason it is not used very often may be one of:</p>
<ul>
<li>This scenario may just not be very common. Usually if you care enough to make part of your site secure, you'd restrict the login session just to that secure part, or you'd make the entire site always use HTTPS (like Paypal).</li>
<li>Pre-existing solutions exist which are secure and which are capable of more than this, for example logging in someone at an HTTPS login form and maintaining that session while transferring them back to HTTP. OpenID's an example. Also think flickr or gmail: their sign in page is always HTTPS, but once the session's started you migrate back to HTTP while maintaining the session securely.</li>
</ul>