vote up 5 vote down star
1

(See question below for more context):

Are there any situations in which

<machineKey
      validationKey="AutoGenerate,IsolateApps"
      decryptionKey="AutoGenerate,IsolateApps"/>

in web.config would fail to AutoGenerate a new machineKey on App Pool recycle? This is the behavior I'm seeing...


I'm using standard ASP.NET FormsAuthentication in an MVC app. If I log a user in using FormsAuthentication.GetAuthCookie and don't use a persistent cookie (relying on the browser's session to remember my authorized state), I would expect recycling the IIS App Pool to invalidate the session's knowledge of this cookie...and thus logout all users who don't have persistent cookies.

This DOES happen on one of my IIS installs (XP), but on a different IIS configuration (Server 2K3) the FormsAuthentication cookie (under the standard name ".ASPXAUTH") remains valid and continues to authorize the user.

Does anyone know why this is happening or what configuration controls this behavior?

Obviously recycling the app pool has no control over whether or not the browser still sends the .ASPXAUTH cookie (as long as I haven't closed my browser and the cookie hasn't expired).

In the case of the IIS install that properly denies authentication after a recycle, I can see the incoming cookie in Request.Cookies during the Application_BeginRequest event...but once control moves to the next event available in Global.asax.cs (Application_AuthenticateRequest), the cookie has been removed from the Request.Cookies collection.

Why does this not happen for both IIS/ASP.NET configurations?


In case this isn't clear, a simpler way of forming the question is:

Why does HttpContext.Current.Request.Cookies[".ASPXAUTH"] change from {System.Web.HttpCookie} to null when I step, in a single request, from Application_BeginRequest to Application_AuthenticateRequest?


More debugging information:

If I attach the following code to Global.asax.cs's FormsAuthentication_OnAuthenticate event...

var cookie = Request.Cookies[FormsAuthentication.FormsCookieName];
if (cookie != null)
{
    var val = cookie.Value;
    try
    {
        FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(val);
    }
    catch (Exception)
    {
    }
}

...then during a request before I recycle the IIS App Pool, no exception will be caught. After recycling the IIS App Pool, when the exact same .ASPXAUTH cookie is sent from the browser, a Cryptographic exception is caught ("Padding is invalid and cannot be removed.")

Why is this?

flag

1  
Is one configured to use the ASP.NET State Service to store the session instead of inproc? – devstuff Jul 10 at 14:25
Good thought -- no, they're both using InProc, unfortunately. – kamens Jul 10 at 14:34

1 Answer

vote up -1 vote down check

Forms Authentication cookies have nothing to do with Session state.

link|flag
1) Recycling your app pool does recycle your session (if you're using InProc session management), and this apparently does sometimes manipulate the ASPXAUTH cookie (as seen when it is removed after the BeginRequest event). 2) I'll make my question more clear by indicating "browser session." From MS documentation: createPersistentCookie Type: System.Boolean true to create a durable cookie (one that is saved across browser sessions); otherwise, false. – kamens Jul 10 at 14:21
Nonsense. Cookies reside on clients. Nothing you can do to the server will remove the cookies stored on the clients. – John Saunders Jul 10 at 14:33
1  
Ok, I see now that you've cleared it up. Are you sure the cookies are available so early in the pipeline?Maybe check before Authenticate event to see if cookies are present at that time. – John Saunders Jul 10 at 14:54
1  
You also got an exception after the recycle, so it's not unexpected for it to be removed. More importantly, your exception is no doubt due to the cookie being signed with a per-AppDomain value. If that changes (as it will on a recycle), then it will be impossible for the new AppDomain to decipher the old AppDomain's encrypted cookie. – John Saunders Jul 10 at 14:59
1  
I don't know. Maybe this depends on the timing. Check the machine.config for the setting of machineKey. – John Saunders Jul 10 at 15:24
show 9 more comments

Your Answer

Get an OpenID
or

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