Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarre - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:39:30Z http://stackoverflow.com/feeds/question/678319 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/678319/mac-safari-randomly-recreating-cookie-when-i-refresh-my-login-screen-very-bizarr 0 Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarre mcintyre321 2009-03-24T17:05:05Z 2009-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>&lt;dict&gt; &lt;key&gt;Created&lt;/key&gt; &lt;real&gt;259603523.26834899&lt;/real&gt; &lt;key&gt;Domain&lt;/key&gt; &lt;string&gt;.mysite.dev&lt;/string&gt; &lt;key&gt;Expires&lt;/key&gt; &lt;date&gt;2010-03-24T16:05:22Z&lt;/date&gt; &lt;key&gt;HttpOnly&lt;/key&gt; &lt;string&gt;TRUE&lt;/string&gt; &lt;key&gt;Name&lt;/key&gt; &lt;string&gt;.Hv3&lt;/string&gt; &lt;key&gt;Path&lt;/key&gt; &lt;string&gt;/&lt;/string&gt; &lt;/dict&gt; </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#714036 0 Answer by Niels Heidenreich for Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarre Niels Heidenreich 2009-04-03T14:02:59Z 2009-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#714087 1 Answer by Chris Lively for Mac Safari randomly recreating cookie when I refresh my login screen. Very bizarre Chris Lively 2009-04-03T14:12:55Z 2009-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>