ASP.NET Core's approach to preventing Cross-Site Request Forgery attacks involves using a token named _________.

  • Anti-CSRF
  • XSRF
  • CSRF
  • Request-Token
ASP.NET Core's approach to preventing Cross-Site Request Forgery (CSRF) attacks involves using a token named CSRF (Cross-Site Request Forgery). This token is generated for each user session and is included in requests to ensure that the request originated from the same site, thereby preventing malicious actions from other domains. It's an essential security measure in web applications.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *