flask-csrf icon indicating copy to clipboard operation
flask-csrf copied to clipboard

A git mirror of flask-csrf.

Results 3 flask-csrf issues
Sort by recently updated
recently updated
newest added

The module `werkzeug.routing` got refactored in werkzeug 2.2.0 and `NotFound` is no longer exported here.

We are using flask-csrf for our Rest API which serves a single-page-application. This means almost all our routes are csrf-protected and the few which are not are handled using `csrf_exempt`....

this is due to csrf._exempt_views being module (global) state. one app could exempt a view that collides with an nonexempt view of the same name of another app, thereby exempting...