Active
Project:
Login Security
Version:
2.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
2 Jan 2023 at 16:18 UTC
Updated:
3 Jan 2023 at 09:23 UTC
Jump to comment: Most recent
Since Drupal core implements hidden flood control variables on user and ip level (with an optional non-core interface: https://www.drupal.org/project/flood_control), login_security's functionality easily collides with these hidden variables.
Set max user login attempts to anything above 5. Since the default user login limit by flood_control (aka the user module) is 5, flood control blocks the login attempt even before login_security's max login attempt can be reached.
Discuss and implement better communication between the user modules "user.flood" config and the login_security module.
Comments
Comment #2
anybodyComment #3
grevil commentedComment #4
grevil commentedThis module creates its own database "login_security_track" for tracking login events. We should check if Drupal core flood control creates a similar database, which we can use instead of creating our own.