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.
Loading...
Related Quiz
- To define relationships, constraints, or to configure non-entity types, you should override the _________ method in the DbContext.
- You are creating a website and want to add a folder for storing images, scripts, and CSS files. Which default folder in ASP.NET Core would you typically use?
- In Razor forms, the _______ tag helper can be used to generate hidden input fields.
- For ensuring that the test runs in isolation, real services or components might be replaced with _________ during unit testing.
- If you have a URL like /products/5, what would be a suitable route template to capture the product's id?