// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNetCore.Mvc.Filters; using Microsoft.AspNetCore.Mvc.ViewFeatures.Internal; using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.Mvc { /// /// Specifies that the class or method that this attribute is applied validates the anti-forgery token. /// If the anti-forgery token is not available, or if the token is invalid, the validation will fail /// and the action method will not execute. /// /// /// This attribute helps defend against cross-site request forgery. It won't prevent other forgery or tampering /// attacks. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)] public class ValidateAntiForgeryTokenAttribute : Attribute, IFilterFactory, IOrderedFilter { /// /// Gets the order value for determining the order of execution of filters. Filters execute in /// ascending numeric value of the property. /// /// /// /// Filters are executed in an ordering determined by an ascending sort of the property. /// /// /// The default Order for this attribute is 1000 because it must run after any filter which does authentication /// or login in order to allow them to behave as expected (ie Unauthenticated or Redirect instead of 400). /// /// /// Look at for more detailed info. /// /// public int Order { get; set; } = 1000; /// public bool IsReusable => true; /// public IFilterMetadata CreateInstance(IServiceProvider serviceProvider) { return serviceProvider.GetRequiredService(); } } }