Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarre - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T16:39:30Zhttp://stackoverflow.com/feeds/question/678319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/678319/mac-safari-randomly-recreating-cookie-when-i-refresh-my-login-screen-very-bizarr0Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarremcintyre3212009-03-24T17:05:05Z2009-04-03T14:12:55Z
<p>We have found an issue in our app where Safari on the Mac randomly recreates a login cookie from a logged off session. </p>
<p>I have a fiddler archive with this behaviour <a href="http://mcintyre321.googlepages.com/SafariCookieProblem.zip" rel="nofollow">here</a>. Note that some stuff has been removed from this to make it easier to get, but nothing which sets a cookie or anything has been taken out - only repetitions of requests 3-8.</p>
<p>I'll talk you through the running order </p>
<ul>
<li>Request 1: user logs out via call to /logout.aspx - Set-Cookie returned setting cookie expiry date to 1999</li>
<li>Requests 2-8: user refreshes login page sending calls to root or /res/en-US/s.js - no cookie is sent to server or received back, and access is denied. I have cut out a lot of requests of this nature from the log as they are boring</li>
<li>Request 9: request for /res/en-US/s.js - Hv3 authentication cookie has mysteriously reappeared! Wat. There was NO set-cookie! WTFF!</li>
<li>Request 10+ : now the cookie has reappeared, the site logs the user in AGAIN</li>
</ul>
<p>The cookie, when examined in Safari looks like</p>
<pre><code><dict>
<key>Created</key>
<real>259603523.26834899</real>
<key>Domain</key>
<string>.mysite.dev</string>
<key>Expires</key>
<date>2010-03-24T16:05:22Z</date>
<key>HttpOnly</key>
<string>TRUE</string>
<key>Name</key>
<string>.Hv3</string>
<key>Path</key>
<string>/</string>
</dict>
</code></pre>
<p>One thing to note is that in Safari, the cookie domain is .mysite.dev not mysite.dev (which is the cookie domain specified in web.config) - however, given that access is denied in requests 2-8, it looks like the cookie has expired OK. If you look in the list of cookies in the browser during 2-8, the .Hv3 cookie is not there.</p>
<p>Is this our bug or Safari's?
What can I do to stop it happening?</p>
http://stackoverflow.com/questions/678319/mac-safari-randomly-recreating-cookie-when-i-refresh-my-login-screen-very-bizarr/714036#7140360Answer by Niels Heidenreich for Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarreNiels Heidenreich2009-04-03T14:02:59Z2009-04-03T14:02:59Z<p>Very interesting. I'm having the same behaviour here. I only noted your question after I had posted mine:</p>
<p><a href="http://stackoverflow.com/questions/714024/whats-the-reason-for-cookies-mysteriously-reappearing">http://stackoverflow.com/questions/714024/whats-the-reason-for-cookies-mysteriously-reappearing</a></p>
<p>Have you found a solution/explanation yet?</p>
http://stackoverflow.com/questions/678319/mac-safari-randomly-recreating-cookie-when-i-refresh-my-login-screen-very-bizarr/714087#7140871Answer by Chris Lively for Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarreChris Lively2009-04-03T14:12:55Z2009-04-03T14:12:55Z<p>There are known problems with certain browsers cookie handling.</p>
<p>See the following paper:
<a href="http://www.isecpartners.com/files/iSEC%5FCleaning%5FUp%5FAfter%5FCookies.pdf" rel="nofollow">iSEC Cleaning Up After Cookies</a></p>
<p>Also see <a href="http://discussions.apple.com/thread.jspa?messageID=9262463" rel="nofollow">this discussion</a> on Apple.com regarding the case of the reappearing cookie.</p>