I am using the <csrf/>
in the spring security xml file for a web project. And sends the csrf token in the form:
<form action="" method="post"> <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> </form>
But when intercepting the request through BurpSuite, I get the same csrf token for each request until the session is saved.
Is there a way to send a different csrf token for each request than per spring security session.
I use 3.2.4 spring security banks.
source share