Skip to main content

CSRF Protection

Introduction

Formidable makes it easy to protect your application from cross-site request forgery (CSRF) attacks. Cross-site request forgeries are a type of malicious exploit whereby unauthorized commands are performed on behalf of an authenticated user.

Formidable automatically generates a CSRF "token" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.

Before you can access the generated CSRF token, your application needs to make a call to the /csrf-cookie URI. This URI will ensure that the CSRF token is added to your cookie with the name XSRF-TOKEN.

To use this token in your client application, retrieve the token from your cookies, and add it to your form as _token, or to your headers as X-CSRF-TOKEN.

You may use js-cookie to retrieve the CSRF token from your cookies.

Protecting routes

To protect any route that's not in the session group, you may use the VerifyCsrfToken middleware:

routes/api.ts
import { Request } from '@formidablejs/framework'
import { Route } from '@formidablejs/framework'
import { VerifyCsrfToken } from '@formidablejs/framework'

Route.post('/tasks/create', (request: Request) => {
// do something...
}).middleware([VerifyCsrfToken])