Skip to main content

Enable CSRF protection globally for a Flask app.

pixee:python/flask-enable-csrf-protection​

ImportanceReview GuidanceRequires Scanning Tool
HighMerge After ReviewNo

Cross-site request forgery (CSRF) is an attack where a user is tricked by a malicious agent to submit a unintended request (e.g login requests). A common way to mitigate this issue is to embed an additional token into requests to identify requests from unauthorized locations.

Flask views using FlaskForm have CSRF protection enabled by default. However other views may use AJAX to perform unsafe HTTP methods. FlaskWTF provides a way to enable CSRF protection globally for all views of a Flask app.

The changes in this codemod may require manual additions to maintain proper functionality. You need to setup either a flask SECRET_KEY or a WTF_CSRF_SECRET_KEY in you app configuration and adjust any views with HTML forms and javascript requests to include the CSRF token. See the FlaskWTF docs for examples on how to do it.

Our changes look something like this:

from flask import Flask
+from flask_wtf.csrf import CSRFProtect

app = Flask(__name__)
+csrf_app = CSRFProtect(app)

If you have feedback on this codemod, please let us know!

F.A.Q.​

Why is this codemod marked as Merge After Review?​

Flask views may require proper handling of CSRF to function as expected and thus this change may break some views.

Codemod Settings​

N/A

References​