How long should the lifetime of a CSRF token be?

不问归期 提交于 2019-12-19 16:33:52

问题


Should I have short lifetime for my CSRF token or can I have it last for the length of the session?


回答1:


A CSRF token is not an access token and does not have a lifetime like bearer tokens do. They are generated using session information.

csrf_token = HMAC(session_token, application_secret)

CSRF adds additional information to your requests that lets the server verify the requests comes from an authorized location.

It only affects requests where the authorization info is sent automatically by the browser (cookie auth or basic/digest scheme)



来源:https://stackoverflow.com/questions/30539259/how-long-should-the-lifetime-of-a-csrf-token-be

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!