- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不确定这里发生了什么,但我在我的 cookie 中看到 2 个不同的标记。一个是“XSRF-TOKEN”,另一个是“.AspNetCore.Antiforgery.OnvOIX6Mzn8”,它们具有不同的值。
我使用的是 ASP.Net Core 2.1,带有 SPA 设置(前端有 Angular),并且 Startup.cs 中有以下内容。
我不知道是什么创建了后一个 token ,因为它似乎不是来 self 添加的任何代码。
public void Configure(IApplicationBuilder app, IHostingEnvironment env, IAntiforgery antiforgery)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler(
builder =>
{
builder.Run(
async context =>
{
context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
context.Response.Headers.Add("Access-Control-Allow-Origin", "*");
var error = context.Features.Get<IExceptionHandlerFeature>();
if (error != null)
{
context.Response.AddApplicationError(error.Error.Message);
await context.Response.WriteAsync(error.Error.Message).ConfigureAwait(false);
}
});
});
}
app.UseAuthentication();
app.UseHttpsRedirection();
app.UseDefaultFiles();
app.UseStaticFiles();
app.UseJwtTokenMiddleware();
app.UseSpaStaticFiles();
app.UseCookiePolicy();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{action=Index}/{id?}");
});
app.UseSpa(spa =>
{
spa.Options.SourcePath = "ClientApp";
spa.UseSpaPrerendering(options =>
{
options.BootModulePath = $"{spa.Options.SourcePath}/dist/server/main.js";
options.BootModuleBuilder = env.IsDevelopment()
? new AngularCliBuilder(npmScript: "build:ssr")
: null;
options.ExcludeUrls = new[] { "/sockjs-node" };
});
if (env.IsDevelopment())
{
spa.UseAngularCliServer(npmScript: "start");
}
});
app.UseMiddleware<AntiForgeryMiddleware>("XSRF-TOKEN");
}
}
public static class ApplicationBuilderExtensions
{
public static IApplicationBuilder UseAntiforgeryTokenMiddleware(this IApplicationBuilder builder, string requestTokenCookieName)
{
return builder.UseMiddleware<AntiForgeryMiddleware>(requestTokenCookieName);
}
}
public class AntiForgeryMiddleware
{
private readonly RequestDelegate next;
private readonly string requestTokenCookieName;
private readonly string[] httpVerbs = new string[] { "GET", "HEAD", "OPTIONS", "TRACE" };
public AntiForgeryMiddleware(RequestDelegate next, string requestTokenCookieName)
{
this.next = next;
this.requestTokenCookieName = requestTokenCookieName;
}
public async Task Invoke(HttpContext context, IAntiforgery antiforgery)
{
if (httpVerbs.Contains(context.Request.Method, StringComparer.OrdinalIgnoreCase))
{
var tokens = antiforgery.GetAndStoreTokens(context);
context.Response.Cookies.Append(requestTokenCookieName, tokens.RequestToken, new CookieOptions()
{
HttpOnly = false
});
}
await next.Invoke(context);
}
}
最佳答案
示例中的 .AspNetCore.Antiforgery.OnvOIX6Mzn8
cookie 是通过调用 GetAndStoreTokens
生成的。此调用生成两个 token :
.AspNetCore.Antiforgery.OnvOIX6Mzn8
的内容。XSRF-TOKEN
),如代码中所示。如果您检查生成的值 token
的值,您可以在示例中看到这一点。它有两个令人感兴趣的属性:RequestToken
和 CookieToken
。 GetAndStoreTokens
调用正在写出 CookieToken
值,而您的代码正在写出 RequestToken
值,这解释了为什么您会在两个不同的 cookie。
您为此获得的代码似乎直接来自 docs ,这解释了:
...uses middleware from the app's home page to generate an antiforgery token and send it in the response as a cookie (using the default Angular naming convention described later in this topic)...
当向服务器发送需要根据防伪规则进行验证的请求时,需要 cookie 和相应的 header 。 ASP.NET Core 防伪系统在验证过程中将“请求 token ”和“Cookie token ”匹配在一起。
在文档的下面,您将看到:
...using local storage to store the antiforgery token on the client and sending the token as a request header is a recommended approach.
下面的 JavaScript 示例展示了如何使用自定义请求 header (即 RequestVerificationToken
)将 RequestToken
值添加到 XHR 请求。文档还显示,在 ASP.NET Core DI 系统中注册防伪服务时可以更改此 header :
services.AddAntiforgery(options => options.HeaderName = "X-CSRF-TOKEN");
您需要读取 Angular 应用程序中的 XSRF-TOKEN
cookie 的值,并将其与 API 请求一起发送回服务器。您可以使用默认的 header 名称(如上所述)或自定义它(也在上面提到)。 @Sal 在他的回答中指出,只要 cookie 名称为 XSRF-TOKEN
( this is also the same for Angular ),AngularJs 就有一个内置机制。
希望这能解释这两个 token 和一般的防伪过程。然而,由于您正在为 Angular 的默认 HttpClient
XSRF 保护编写一个正确命名的 cookie,因此我希望所有这方面的配置都正确。
就你的问题可能出在哪里而言,我怀疑这一行的位置:
app.UseMiddleware<AntiForgeryMiddleware>("XSRF-TOKEN");
鉴于这是管道设置代码中的最后一个调用,它只会在 MVC 管道之后运行,并且仅在 MVC 管道不处理请求的情况下运行。要解决此问题,请将调用移至上方 UseMvc
- 这可能有点激进,因为它会生成超出必要数量的新“请求 token ”,但它会确认这是否是您的问题。
关于asp.net-mvc - 防伪验证异常 : The provided anti forgery token was meant for a different claims-based user than the current user,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51312665/
我有一个网站,人们可以像这样进行投票: http://mysite.com/vote/25 这将对第 25 项进行投票。我只想将其提供给注册用户,并且仅当他们想要这样做时。现在我知道有人在网站上忙的时
我有一个网站,人们可以像这样进行投票: http://mysite.com/vote/25 这将对第 25 项进行投票。我只想将其提供给注册用户,并且仅当他们想要这样做时。现在我知道有人在网站上忙的时
我正在尝试为我的液体主题语言构建一个表单 block 。我的方法基于 this answer 。然而答案似乎不完整。 问题在于防伪和其他一些方法不可用。导致错误: Liquid error: unde
我正在尝试使用 HttpWebRequest 从没有已发布 API 的网站请求 JSON 数据 var cookieJar = new CookieContainer();
我复制了一些在 compojure 1.1.18 和其他旧库中工作的旧代码,但使用最新版本我无法让它工作。 这是我的 minimal example code复制自 the minimal examp
我正在试用 WSO2 身份服务器。 我下载了 5.4.0 版本,并用 wso2server.bat --run 在我的 Windows 机器上启动了服务器。 . 如果我尝试使用默认凭据 (admin/
使用 Spring RestTemplate 时,Fortify 报告中出现“服务器端请求伪造”问题。 我正在使用restTemplate 调用其他一些REST 服务,并从我的 Controller
我有一个 MVC2 应用程序。我正在尝试实现 AntiForgeryToken 帮助程序来防止 CSRF 攻击。 我正在使用 Steve Sanderson 的博客实现这一点:http://blog.
如何使用防伪 token 将数组发布到 Controller 上的操作。 这是我的 Jquery postdata: var postData = { '__RequestVerificationTo
我在正常使用过程中偶尔会遇到此错误,而且我还没有找到一种方法来阻止它而不删除需要 token 的属性,我宁愿不这样做。 我在自己的测试中遇到了这个错误(但似乎是随机的),我从我的日志中知道实际登录的用
在我的部分 View 中,我使用了一些 jquery 代码来提交表单。但是我收到了此错误。所需的防伪表单字段“__RequestVerificationToken”不存在。 如您所见我在我的部分 Vi
在 Mono 上运行的 MVC4 应用程序中出现错误: The anti-forgery cookie token and form field token do not match 在“登录和注册”
我们在 Azure 中托管的网站的错误日志中随机出现“防伪 cookie token 和表单字段 token 不匹配”错误。在意识到我们需要一个静态机器 key 后,我们将其添加到带有validati
我最近升级到最新版本的 facebook SDK,但在登录用户时遇到了问题。我生成的登录链接很好,但是当 facebook 将用户用 token 发送回我的网站时,我收到此错误: fb sdk 错误:
我收到这个错误: The provided anti-forgery token was meant for a different claims-based user than the curren
我想通过 AntiforgeryToken 属性来保护我们的登录操作-我知道为什么会发生该主题的异常,但是我似乎找不到任何好的解决方案。 假设我们有以下情况: 现在是8:00 AM,应用程序用户开始工
我不确定这里发生了什么,但我在我的 cookie 中看到 2 个不同的标记。一个是“XSRF-TOKEN”,另一个是“.AspNetCore.Antiforgery.OnvOIX6Mzn8”,它们具有
我正在尝试像这样使用 php sdk 获取 Facebook 用户 ID $fb = new Facebook\Facebook([ 'app_id' => '11111111111',
我问了这个question不久前,发现 IE 会阻止 iframe 中的跨域 cookie,除非您设置 p3p policy 。到目前为止,p3p 修复在 ie 中运行良好。然而,现在我们在 safa
我是一名优秀的程序员,十分优秀!