There is issue if same ASP.NET_SessionId persist before or after authentication. As soon as user is authenticate ASP.NET_SessionId should be change to avoid session trapping issue. So i tired two options. Method1 :

if (!Page.User.Identity.IsAuthenticated)
        {
            if (Page.Request.Cookies["ASP.NET_SessionId"] != null)
            {
                Response.Cookies["ASP.NET_SessionId"].Expires = DateTime.Now.AddYears(-30);
            }
            Session.Abandon();
        }

*Issue with Method1 is it is generating ViewStateMac issue.

Method 2:

System.Web.SessionState.SessionIDManager manager = new System.Web.SessionState.SessionIDManager();
           manager.RemoveSessionID(HttpContext.Current);
           string newID = manager.CreateSessionID(HttpContext.Current);
           string oldID = HttpContext.Current.Session.SessionID;
           bool redirected, isAdded;
           manager.SaveSessionID(HttpContext.Current, newID, out redirected, out isAdded);

*Issue with Method2 is that it in pageload there is check for session.IsNewSession where i see that it is set to true.

Help in overcoming the issue of session trapping/ session hijacking.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.