CSRF

org.http4s.server.middleware.CSRF
See theCSRF companion object
final class CSRF[F[_], G[_]]

Middleware to avoid Cross-site request forgery attacks. More info on CSRF at: https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)

This middleware is modeled after the double submit cookie pattern: https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)_Prevention_Cheat_Sheet#Double_Submit_Cookie

When a user authenticates, embedNew is used to send a random CSRF value as a cookie. (Alternatively, an authenticating service can be wrapped in withNewToken).

By default, for requests that are unsafe (PUT, POST, DELETE, PATCH), services protected by the validated method in the middleware will check that the csrf token is present in both the header headerName and the cookie cookieName. Due to the Same-Origin policy, an attacker will be unable to reproduce this value in a custom header, resulting in a 403 Forbidden response.

By default, requests with safe methods (such as GET, OPTIONS, HEAD) will have a new token embedded in them if there isn't one, or will receive a refreshed token based off of the previous token to mitigate the BREACH vulnerability. If a request contains an invalid token, regardless of whether it is a safe method, this middleware will fail it with 403 Forbidden. In this situation, your user(s) should clear their cookies for your page, to receive a new token.

The default can be overridden by modifying the predicate in validate. It will, by default, check if the method is safe. Thus, you can provide some whitelisting capability for certain kinds of requests.

We'd like to emphasize that you please follow proper design principles in creating endpoints, as to not mutate in what should otherwise be idempotent methods (i.e no dropping your DB in a GET method, or altering user data). Please do not use the CSRF protection from this middleware as a safety net for bad design.

Value parameters

cookieSettings

the CSRF cookie settings

headerName

your CSRF header name

key

the CSRF signing key

Attributes

Companion
object
Source
CSRF.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
CSRF[F, G]

Members list

Value members

Deprecated constructors

def this(headerName: CIString, cookieSettings: CookieSettings, clock: Clock, onFailure: Response[G], createIfNotFound: Boolean, key: SecretKey[HmacAlgorithm], headerCheck: (Request[G]) => Boolean, csrfCheck: (CSRF[F, G]) => F => G)(implicit F: Async[F])

Attributes

Deprecated
true
Source
CSRF.scala

Concrete methods

def checkCSRF(r: Request[G], http: F[Response[G]]): F[Response[G]]

Check for CSRF validity for an unsafe action.

Check for CSRF validity for an unsafe action.

Attributes

Source
CSRF.scala
def checkCSRFToken(r: Request[G], respAction: F[Response[G]], rawToken: String)(implicit F: Async[F]): F[Response[G]]

Check for CSRF validity for an unsafe action.

Check for CSRF validity for an unsafe action.

Exposed to users in case of manual plumbing of csrf token (i.e websocket or query param)

Attributes

Source
CSRF.scala

Attributes

Source
CSRF.scala

Create a Response cookie from a signed CSRF token

Create a Response cookie from a signed CSRF token

Value parameters

token

the signed csrf token

Attributes

Returns
Source
CSRF.scala

Attributes

Source
CSRF.scala

Attributes

Source
CSRF.scala
def embedNewInResponseCookie[M[_] : Async](res: Response[G]): M[Response[G]]

Embed a token into a response

Embed a token into a response

Attributes

Source
CSRF.scala
def extractRaw[M[_] : Async](rawToken: String): M[Either[CSRFCheckFailed, String]]

Decode our CSRF token, check the signature and extract the original token string to sign

Decode our CSRF token, check the signature and extract the original token string to sign

Attributes

Source
CSRF.scala
def generateToken[M[_]](implicit F: Async[M]): M[CSRFToken]

Generate a new token

Generate a new token

Attributes

Source
CSRF.scala

Attributes

Source
CSRF.scala
def onfailureF: F[Response[G]]

Attributes

Source
CSRF.scala
def refreshOrCreate[M[_]](r: Request[G])(implicit F: Async[M]): EitherT[M, CSRFCheckFailed, CSRFToken]

Extract a CsrfToken, if present, from the request, then try generate a new token signature, or fail with a validation error.

Extract a CsrfToken, if present, from the request, then try generate a new token signature, or fail with a validation error. If not present, generate a new token

Attributes

Returns

newly refreshed token

Source
CSRF.scala
def refreshedToken[M[_]](r: Request[G])(implicit F: Async[M]): EitherT[M, CSRFCheckFailed, CSRFToken]

Extract a CsrfToken, if present, from the request, then try to generate a new token signature, or fail with a validation error

Extract a CsrfToken, if present, from the request, then try to generate a new token signature, or fail with a validation error

Attributes

Returns

newly refreshed token

Source
CSRF.scala
def signToken[M[_]](rawToken: String)(implicit F: Async[M]): M[CSRFToken]

Sign our token using the current time in milliseconds as a nonce Signing and generating a token is potentially a unsafe operation if constructed with a bad key.

Sign our token using the current time in milliseconds as a nonce Signing and generating a token is potentially a unsafe operation if constructed with a bad key.

Attributes

Source
CSRF.scala
def validate(predicate: (Request[G]) => Boolean): (F, Request[G], Response[G], Request[G]) => Response[G]

Constructs a middleware that will check for the csrf token presence on both the proper cookie, and header values, if the predicate is not satisfied

Constructs a middleware that will check for the csrf token presence on both the proper cookie, and header values, if the predicate is not satisfied

If it is a valid token, it will then embed a new one, to effectively randomize the complete token while avoiding the generation of a new secure random Id, to guard against [BREACH](http://breachattack.com/)

Attributes

Source
CSRF.scala