NewTokenLandingPage redirect is a POST? #81
-
Shouldn't this be a GET redirect? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hello @LPmaverick, It is recommended not to use |
Beta Was this translation helpful? Give feedback.
-
But shouldn't everything about the original request be thrown out? The redirect is to the configured endpoint with 0 parameters from the original request to ensure it is CSRF immune. |
Beta Was this translation helpful? Give feedback.
-
That is happening. So there will be no data sent in the redirect that we would need to worry about, correct? Also, the redirect endpoint should contain no state-changing functionality and be completely CSRF immune, right? Which would mean that this logic isn't needed. |
Beta Was this translation helpful? Give feedback.
Hello @LPmaverick,
It is recommended not to use
GET
if the data submitted is potentially sensitive, and I'd say CSRF tokens could be considered as such.