Do we have to generate a token, for every form in a website? I mean, every-time to generate different token for every requested form? If not, why?
|
In general, it suffices to have just one token per session, a so called per-session token:
If you want to further enhance the security, you can use one token per each form/URL (per-form token) to mitigate the impact when one token leaks (e. g. XSS) as an attacker would only be able to successfully attack that specific form/URL. But using per-request tokens, i. e. tokens that change with each request, rather cuts the usability of the website as it restricts parallel browsing:
So I recommend you to use either per-session tokens or per-form tokens. |
|||||||||||||
|
|
No, you just need to generate a token on a per-session basis. Tokens are very unlikely to be leaked accidentally by users and generating a token per form makes things very complicated if a user is browsing the site in two different tabs/windows at once. |
|||