关于[User Lockout with ASP.NET Core Identity]的摘要:
The user lockout feature is the way to improve application security by locking out a user that enters a password incorrectly several times. This technique can help us in protecting against brute force attacks, where an attacker repeatedly tries to guess a password. In this article, we are going to learn how to implement the user lockout functionality in our application and how to implement a custom password validator that extends default password policies.
原文地址: https://code-maze.com/user-lockout-aspnet-core-identity/