You're tasked with developing a system where the user's account gets temporarily locked after 5 consecutive failed login attempts. Which ASP.NET Core Identity feature would you utilize?

  • Two-Factor Authentication
  • Account Lockout
  • Claims-Based Authorization
  • Social Authentication
To implement the requirement of temporarily locking user accounts after a specified number of consecutive failed login attempts, you would utilize the Account Lockout feature provided by ASP.NET Core Identity. This feature allows you to configure the maximum number of failed attempts and the duration of the lockout.
Add your answer
Loading...

Leave a comment

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