gpt4 book ai didi

c# - 为什么 httpRuntime targetFramework ="4.5"禁用抓取 .ASPXAUTH cookie?

转载 作者:太空狗 更新时间:2023-10-30 01:33:49 25 4
gpt4 key购买 nike

当我的 web.config 具有以下 httpRuntime 时,我的 Controller 无法获取 cookie .ASPXAUTH。它似乎能够获取任何其他 cookie,无论是否带有句号前缀。如果我删除下面的行,它工作正常。

<httpRuntime targetFramework="4.5"/>

我正在使用以下内容来获取 cookie。

HttpCookie authCookie = Request.Cookies[".ASPXAUTH"];

为什么我无法获取表单例份验证 cookie?

最佳答案

我有类似的问题 - 我的运行时 4.5 的应用程序无法读取由另一个运行在 4.0 下的/login/应用程序创建的 .ASPXAUTH cookie,导致重定向循环。原来 4.5 引入了一些密码学改进,可以通过在 web.config 中设置以下内容来启用:

原因:

<machineKey compatibilityMode="Framework45" />

or

<httpRuntime targetFramework="4.5" />

https://blogs.msdn.microsoft.com/webdev/2012/10/23/cryptographic-improvements-in-asp-net-4-5-pt-2/1

解决方案:在我的例子中(许多其他 4.0 应用程序依赖于 cookie)解决方案是切换我的新应用程序以使用:

<machineKey compatibilityMode="Framework20SP1" validationKey="..shared with login app, along with decryptionKey etc...">

or

remove the <httpRuntime /> element

当然,这只是一种解决方法,我将尽快将我的所有应用更新为更安全的 4.5 身份验证。

关于c# - 为什么 httpRuntime targetFramework ="4.5"禁用抓取 .ASPXAUTH cookie?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32595234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com