Questionnez la Communauté
Ask any professional question and get answers from other specialists.
What products and scanners have you used successfully for detection and remediation of CSRF?
1- Request confirmations to the user for critical actions, the risk of burdening the sequence of forms. 2- Request confirmation of the old password for the user to change ... Voir Plus
Agree with Iqbal Bhai
Anti-forgery tokens work because the malicious page cannot read the user’s tokens, due to same-origin policies. To prevent CSRF attacks, use anti-forgery tokens with any ... Voir Plus
The simplest method is to use AntiForgery token , the antiforgery token should comprise of a Salt (which needs to be changed regularly) , some User specific data(username ... Voir Plus
Yes it is secure as it is asking you to re enter your credentials
1-Using unpredictable random Anti-forgery tokens 2-Using samesite flag in cookies 3-avoid using HTTP GET requests in sensitive actions