Skip to content
This repository has been archived by the owner on Jan 30, 2021. It is now read-only.

Latest commit

 

History

History
11 lines (7 loc) · 529 Bytes

README.markdown

File metadata and controls

11 lines (7 loc) · 529 Bytes

flask-csrf

Quick, easy CSRF protection for your Flask applications.

See the documentation for more information.

Why the fork?

  1. Protects PUT and DELETE methods too, not just POST. To help with this, _ct can be present on the query string too, not just in a form field.
  2. Enables non-standard workflows by storing a single CSRF token in the session and re-using it for every form.