1
Cross-site request forgery - The CSRF (Cross-site request forgery- Cross-site request forgery) is a type of malicious exploitation of a website by which unauthorized commands are transmitted from a user who trusts the website. Unlike cross-site scripting (XSS), which exploits a user’s trust for a particular site, CSRF exploits a site’s trust in a user’s browser.
I have just asked the question regarding the use of token
in a input hidden
a form to avoid the CSRF - Cross-Site Request Forgery
; and I came up with a question.
Even using tokens
in login forms and the like, it is still possible to forge a request?
There are other means, besides csrf token, to protect against this type of attack?