After a user has tried to login more often than the consecutive_failed_logins_limit and brute-force protection got enabled, what is the expected way to recover the account and reset the password? Does Authlogic expect manual resetting of the failed_login_count attribute in the users table by an administrator?
How to recover a brute-force protected user account?
528 Views Asked by dokaspar At
2
There are 2 best solutions below
0
Iain
On
You have the correct answer in your question.
Reset the failed_login_count value to 0
I have my consecutive_failed_logins_limit set to 5 and failed_login_ban_for 0.
I tried to log in with an incorrect password 6 times and then I got the account banned error message with the correct password or an incorrect one.
I manually reset the failed_login_count to 0 and then was able to log in using the correct password as normal.
I am planning to add a "unban" button to the user show view so an administrator can unban a user.
Related Questions in RUBY-ON-RAILS
- Rails HABTM: Select everything a that a record 'has'
- Best way to make an HABTM association via console
- dynamically create an ical / ics file from a rails model
- Ruby destroy is not working? Or objects still present?
- NoMethodError: undefined method `update_average_rating' for nil:NilClass
- Select results where joined table contains records with an attribute, but without another
- Showing posts only created when boolean was true
- Ruby on rails and HAML - Print a hash with background color
- How can I monitor an endpoint's status with Ruby?
- How to create dynamic pages without form_for helper in Rails?
- Rails 4.2 jQuery loads only after refresh
- "Access Denied" - User's Permissions to S3 Bucket
- ActiveRecord, Rails 4: has_many :through with scoped conditions failure
- Rails - formatting a list of options
- Rails - Ajax do not work properly on production server
Related Questions in AUTHLOGIC
- Authlogic: Functional Test Failing Validation
- Can you check previously used passwords (password history) using Authlogic?
- Authlogic + Factory Girl: Validation failed: Password is too short (minimum is 4 characters)
- Authlogic method when logout_on_timout or send action from session
- Installing authlogic 3.4.3 in Rails 4.1.7
- Authlogic & delayed_job & delayed_jobl_mailer & daemons?
- How do I allow only logged in users to view images
- Authlogic, can't update user because of validation
- Authlogic causing all rails tests to fail
- Can't log in with a valid password using Authlogic and Ruby on Rails?
- Rails3, Authlogic and authenticates_many HOW TO code current_account_session helper method?
- Authlogic no credentials provided
- Rails 3 subdomain
- Authlogic Base.named_scope Deprecation Error
- Authlogic automatic logout on timeout
Related Questions in USER-ACCOUNTS
- Overdraft method for bank account
- dbo.aspnet_Users table is empty where it shouldn't be
- How to get first name & last name in android?
- Add user account to user-group regardless the O.S language
- How to create a Chrome profile programmatically?
- 403 Error for user verification (API)
- How to Reproduce Meteor.user() Client-Server effect for a different Collection?
- Can't see the billing info of my IAM user
- WooCommerce login area redirect to default Wordpress login form
- Too many SQL Server users
- How to lead in multi-devices identifer to a new apple developer account?
- Unable to create account for installing Oracle Database
- Creating user accounts javascript and API's
- ASP.net, how can I access a remote machine and create a user account and create and share a folder
- Is a home directory folder created automatically for a local user when it is created
Related Questions in LOGIN-CONTROL
- Troubleshoot log-in issue
- vanilla JS login functionality for websites
- Username to Appear on Screen based on details entered
- ASP.NET LoginUser.DestinationPageUrl not working properly
- asp.net mvc user register exception on another computer
- asp.net login - how to inturrupt with a message prompt?
- Maintaining a single logged user into an account in php
- How to customize login account for Login control in ASP.NET if we are authenticated by Micorosoft Federation?
- working with asp.net login control
- Login control's loggedin event not firing
- Why do use webApps userID + password instead of a password only?
- JSF Login control, integration with Access Manager
- Picture Password Source
- MVC3 Partial view inside Master Page
- How to check user authanticaon on an asp page
Related Questions in BRUTE-FORCE
- SAT-Solving: DPLL vs.?
- How to block unexpected request from multiple ip address in linux server?
- Python bruteforce combinations given a starting string
- risk of "big" computations on hardware
- brute-force graph isomorphism with networkx
- Finding maximum element in an array - is it that you will call greedy algorithm or brute force algorithm or both?
- Algorithm Check for Switch Program
- C++ Part of brute-force knapsack
- wp-login.php Flood in Acces Logs
- Better way to do a Bruteforce on strings?
- CodeForces 750D- New Year and Fireworks Time Limit Exceeded
- Sudoku Brute Force Algorithm
- Brute-force equation solving
- Longest common subsequence (LCS) brute force algorithm
- Maximal sets intersection
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Use
failed_login_ban_forin the user session model to set the number of hours the user should be banned for (the default value is 2 hours).Examples:
failed_login_ban_for 24.hoursfailed_login_ban_for 0