HttpModule用于加密查询字符串

时间:2011-12-01 20:18:03

标签: c# httpmodule httpcontext

我发现这个很棒的小HttpModule可以加密和解密所有的查询字符串。可在此处找到:HttpModule for query string encryption

有一个主要的缺陷,我真的可以使用一些如何解决的输入。在页面的回发中,跳过HttpMethod POST并且QueryString被解密显示。显然这是一个重大的安全风险。

void context_BeginRequest(object sender, EventArgs e)
{
    try
    {
        HttpContext context = HttpContext.Current;
        if (context.Request.Url.OriginalString.Contains("aspx") && context.Request.RawUrl.Contains("?"))
        {
            string query = ExtractQuery(context.Request.RawUrl);
            string path = GetVirtualPath();

            if (query.StartsWith(PARAMETER_NAME, StringComparison.OrdinalIgnoreCase))
            {
                // Decrypts the query string and rewrites the path.
                string rawQuery = query.Replace(PARAMETER_NAME, string.Empty);
                string decryptedQuery = Decrypt(rawQuery);
                context.RewritePath(path, string.Empty, decryptedQuery);
            }
            else if (context.Request.HttpMethod == "GET")
            {
                // Encrypt the query string and redirects to the encrypted URL.
                // Remove if you don't want all query strings to be encrypted automatically.
                string encryptedQuery = Encrypt(query);
                context.Response.Redirect(path + encryptedQuery);
            }
        }
    }
    catch (ThreadAbortException)
    {
        //do nothing. let it pass
    }
    catch (Exception exc)
    {
        ReportError(exc);
    }
}

我尝试为POST方法添加if if:

            else if (context.Request.HttpMethod == "POST")
            {
                if (!query.StartsWith(PARAMETER_NAME, StringComparison.OrdinalIgnoreCase))
                {
                    string encryptedQuery = Encrypt(query);
                    context.Response.Redirect(path + encryptedQuery);
                }
            }

然而,这会重新加载页面因为Response.Redirect,所以PostBack没用。

有没有人有任何想法或知道是否有办法确定HttpContext是PostBack?

1 个答案:

答案 0 :(得分:6)

在查询字符串中发送敏感数据不是一个好主意。如果您必须在构建查询字符串之前更好地加密数据,而不是加密整个查询字符串。此外,用户更改查询字符串也不应损害您的网站。 URI将用户带到他想去的地方,因此通过更改查询字符串(URI)进行导航是Web的标准。网络应该是RestFul。