In an ASP.NET Core application, you've noticed that users are setting easily guessable passwords. To remedy this, which Identity configuration would you tweak to enforce stricter password criteria?

  • Security Headers
  • Cookie Authentication
  • Password Options
  • Identity Server
To enforce stricter password criteria, you would tweak the Password Options configuration in ASP.NET Core Identity. This includes setting options like RequiredLength, RequiredUniqueChars, RequireLowercase, RequireUppercase, and RequireDigit to make passwords more complex and less guessable.
Add your answer
Loading...

Leave a comment

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