Mitch Sellers wrote
DNN automatically will "lock" an account after X number of attempts based on the settings inside the membershipprovider.
If you want to block an IP address for good after a cetain number of failures, you will most likely need to create a custom auth provider to do the job.
Hi Mitch,
I tried adding the following attributes to AspNetSqlMembershipProvider,
passwordAttemptThreshold="5"
passwordAttemptWindow="60"
Unfortunately 'passwordAttemptThreshold' was not recognised by the provider, so after a little bit of googling I came across the following attribute,
maxInvalidPasswordAttempts="5"
Now after 5 invalid attempts it locks out the account for 60 minutes, fantastic, just what I was after.
Thanks a million for your help.