sirnails / BloomQuote

Quote management app for a florist
2 stars 0 forks source link

CSRF Token Validation #15

Closed sirnails closed 5 months ago

sirnails commented 5 months ago

CSRF Token Exposure The CSRF token is generated and stored in the session, which is good. You should ensure that all forms include the CSRF token and that it is validated for all POST requests.

Token Check Timing The CSRF token should be checked at the beginning of the POST request handling, not after checking other conditions.

sirnails commented 5 months ago

Add CSRF Token Checking to Forms and Controllers