I have an HttpPost request HttpPost , and I have a document from my colleague who is browsing my site using Acunetix (I think). The result says HTML form without CSRF protection (9) . It is supposed to use the Same-origin policy by implementing Token. My question is:
- In terms of performance and security, is it worth using
Token in every POST request? I use only Token in sensitive POST request such as LogIn, Register, Transaction, etc. - This probably doesn't apply to the title, but why does pentest software like
Acunetix list only a few of my pages as CSRF possible risk when I have many pages with POST request, how does pattern detection work?
Any help would be appreciated.
source share