Class CsrfFilter

java.lang.Object
org.springframework.web.filter.GenericFilterBean
org.springframework.web.filter.OncePerRequestFilter
org.springframework.security.web.csrf.CsrfFilter
All Implemented Interfaces:
jakarta.servlet.Filter, org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.InitializingBean, org.springframework.context.EnvironmentAware, org.springframework.core.env.EnvironmentCapable, org.springframework.web.context.ServletContextAware

public final class CsrfFilter extends org.springframework.web.filter.OncePerRequestFilter

Applies CSRF protection using a synchronizer token pattern. Developers are required to ensure that CsrfFilter is invoked for any request that allows state to change. Typically this just means that they should ensure their web application follows proper REST semantics (i.e. do not change state with the HTTP methods GET, HEAD, TRACE, OPTIONS).

Typically the CsrfTokenRepository implementation chooses to store the CsrfToken in HttpSession with HttpSessionCsrfTokenRepository wrapped by a LazyCsrfTokenRepository. This is preferred to storing the token in a cookie which can be modified by a client application.

Since:
3.2
  • Field Details

    • DEFAULT_CSRF_MATCHER

      public static final RequestMatcher DEFAULT_CSRF_MATCHER
      The default RequestMatcher that indicates if CSRF protection is required or not. The default is to ignore GET, HEAD, TRACE, OPTIONS and process all other requests.
  • Constructor Details

  • Method Details

    • shouldNotFilter

      protected boolean shouldNotFilter(jakarta.servlet.http.HttpServletRequest request) throws jakarta.servlet.ServletException
      Overrides:
      shouldNotFilter in class org.springframework.web.filter.OncePerRequestFilter
      Throws:
      jakarta.servlet.ServletException
    • doFilterInternal

      protected void doFilterInternal(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.FilterChain filterChain) throws jakarta.servlet.ServletException, IOException
      Specified by:
      doFilterInternal in class org.springframework.web.filter.OncePerRequestFilter
      Throws:
      jakarta.servlet.ServletException
      IOException
    • skipRequest

      public static void skipRequest(jakarta.servlet.http.HttpServletRequest request)
    • setRequireCsrfProtectionMatcher

      public void setRequireCsrfProtectionMatcher(RequestMatcher requireCsrfProtectionMatcher)
      Specifies a RequestMatcher that is used to determine if CSRF protection should be applied. If the RequestMatcher returns true for a given request, then CSRF protection is applied.

      The default is to apply CSRF protection for any HTTP method other than GET, HEAD, TRACE, OPTIONS.

      Parameters:
      requireCsrfProtectionMatcher - the RequestMatcher used to determine if CSRF protection should be applied.
    • setAccessDeniedHandler

      public void setAccessDeniedHandler(AccessDeniedHandler accessDeniedHandler)
      Specifies a AccessDeniedHandler that should be used when CSRF protection fails.

      The default is to use AccessDeniedHandlerImpl with no arguments.

      Parameters:
      accessDeniedHandler - the AccessDeniedHandler to use
    • setRequestAttributeHandler

      public void setRequestAttributeHandler(CsrfTokenRequestAttributeHandler requestAttributeHandler)
      Specifies a CsrfTokenRequestAttributeHandler that is used to make the CsrfToken available as a request attribute.

      The default is CsrfTokenRequestProcessor.

      Parameters:
      requestAttributeHandler - the CsrfTokenRequestAttributeHandler to use
      Since:
      5.8
    • setRequestResolver

      public void setRequestResolver(CsrfTokenRequestResolver requestResolver)
      Specifies a CsrfTokenRequestResolver that is used to resolve the token value from the request.

      The default is CsrfTokenRequestProcessor.

      Parameters:
      requestResolver - the CsrfTokenRequestResolver to use
      Since:
      5.8