DEV Community

Discussion on: Do I Need CSRF Token?

Collapse
 
particleflux profile image
Stefan Linke

Hm, that was a bad example.

Basically anything triggering an action can be affected. The action ca be triggered involuntarily on the users behalf, that's the actual problem. A CSRF Token prevents this.

Publishing a post, deleting your account, changing profile name, posting this comment, liking a post, ....
Depends on the application.

See owasp.org/www-community/attacks/csrf for more information

Thread Thread
 
clavinjune profile image
Clavin June

I see, that's make sense. That's why CSRF Token will be regenerated for every request. Thanks, gonna read that soon

Thread Thread
 
clavinjune profile image
Clavin June

but, what if I alr handle that using token based auth? do I still need that?