如何在注销后使http会话无效

时间:2015-06-29 06:19:28

标签: asp.net-mvc-4 session authentication cookies burp

我正在asp.net mvc中创建一个Web应用程序,它使用表单身份验证来验证用户。 我正在使用HTTP代理工具" burp"捕获经过身份验证的用户身份验证的Cookie。之后我从应用程序注销。现在我使用捕获的经过身份验证的cookie向我的服务器发送请求,服务器将请求视为经过身份验证的请求(即使从我的浏览器注销该用户)。 任何人都可以让我知道我在退出代码中出错的地方吗?

以下是我的应用程序注销代码

  public virtual ActionResult LogOff()
    {
        FormsAuthentication.SignOut();
        Session.Abandon();

        // clear authentication cookie
        HttpCookie cookie1 = new HttpCookie(FormsAuthentication.FormsCookieName, "");
        cookie1.Expires = DateTime.Now.AddYears(-1);
        Response.Cookies.Add(cookie1);

        // clear session cookie 
        HttpCookie cookie2 = new HttpCookie("ASP.NET_SessionId", "");
        cookie2.Expires = DateTime.Now.AddYears(-1);
        Response.Cookies.Add(cookie2);

        HttpCookie cookie3 = new HttpCookie("__RequestVerificationToken", "");
        cookie3.Expires = DateTime.Now.AddYears(-1);
        Response.Cookies.Add(cookie3);

        HttpCookie cookie4 = new HttpCookie(".ASPXAUTH", "");
        cookie4.Expires = DateTime.Now.AddYears(-1);
        Response.Cookies.Add(cookie4);


        return RedirectToAction(MVC.Account.Login());
    }

以下是发送经过身份验证的请求的burp工具的屏幕截图,该请求提供成功响应

Below is the screen shot of burp tool to send authenticated request which gives success response

1 个答案:

答案 0 :(得分:5)

经过大量搜索后,我得出了结果,没有一种正确的方法可以使经过身份验证的cookie无效。经过身份验证的Cookie" .ASPXAUTH"(身份验证Cookie的默认名称)基本上只包含userName,生成时和过期详细信息。它并没有真正告诉用户是否真的经过身份验证。

如果用户注销,此cookie将从浏览器中删除,但如果此cookie保留在某处,则仍将用作经过身份验证的请求。

我找到的唯一解决方案是使用此cookie添加一些额外的唯一数据,并将该数据存储在服务器(可能是数据库)的某个位置,并比较来自数据库的每个身份验证请求中的唯一数据。当用户从数据库中注销清除该唯一数据时,这将确保如果在用户注销后通过某种方式捕获的经过身份验证的请求未在服务器上进行身份验证。