Friday, July 5, 2024

High level overview of how spring security manages csrf

 


CSRF token is used only for HTTP POST, PUT, PATCH AND DELETE methods.

No comments:

Post a Comment

Clean code chapter 3(Robert C.martin)

  Summary: --------  1. Functions should hardly ever be 20 lines long.  2.Keep blocks (inside if, else, while, for, etc.) short.  Ideally, j...