I have a JSF-Spring integrated application. Spring security is also integrated in this application. These are the versions in my application:
- JSF 2.2
- Spring 4.0.3.RELEASE
- Spring Security 3.2.4.RELEASE
As per the JSF doc all the POST request in JSF2.x [or even old versions] will be CSRF protected. However I am able to penetrate my application with CSRF attack.
I tried a different JSF2.2 only [no Spring] example application, in that case I can see this example application is CSRF protected.
So my understanding is, the JSF/Spring /Spring security combination is giving issue in my original application. Unfortunately there is no helping info from the log files.
I can try with the Spring Security CSRF protection. In that case the challenge is I need to edit the code in all POST cases.
I am looking to enable JSF CSRF protection to avoid this code change. Any suggestion?
I am doing my testing with Pinata.
@Ameya you can check from below: Reusing ViewState value in other session (CSRF)
I gave the example in order to ignore ajax partialSubmit="true" case. I recommend to ignore it if there is not any huge impact on data when a manipulation is made on partial submit request.
If you want to add csrf to partialSubmit, you should consider following approches:
Not try: