Skip to content

Releases: GusBeare/Nancy-UserManager

added code to track login attempts

08 Dec 14:02
Compare
Choose a tag to compare

Application now tracks login attempts and locks the user out after a given number of failures:

See the following web.config settings to change number of login attempts and lockout duration.

var AllowedFailedLogins = Convert.ToInt32(WebConfigurationManager.AppSettings["NumberOfLoginAttempts"]);
var LockoutDurationMins = Convert.ToInt32(WebConfigurationManager.AppSettings["LockoutDurationMins"]);

Nancy User Manager v1.0

11 Dec 21:24
Compare
Choose a tag to compare

Initial release