I'm working on a authorisation project utilising ASP.NET Identity.
It appears to offer the majority of features one would expect to see, and indeed most of what we require.
One feature I wish to support is to mitigate the risk of a brute force attack. I understand there is an Account Lockout feature which will help stop an attack against a given username. However this will not mitigate against a username enumeration attack (i.e. trying a given password against different accounts).
I can't find anything in the documentation and was wondering if anyone else knew better. Or would I have to implement something myself. Or use IIS.
Many thanks in advance.