I am using <csrf/>
tag in my spring security xml file for a web project. And sending csrf token in a form:
<form action="" method="post">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
</form>
But on intercepting the request through BurpSuite i am getting same csrf token on every request till the session persist.
Is there any way i could send different csrf token per request than per session in spring security.
I am using 3.2.4 spring security jars.