Replies: 1 comment 1 reply
-
Yes, I was thinking for some time about a protection against brute-force. Another solution I thought about was to implement some rate-limiting mechanism so an attacker couldn't enumerate accounts through login, registration and so on. Regarding |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
What do you think about adding a feature, when a user would become inactive (blocked), when a certain amount of unsuccessful login attempts were done in a row? This would protect Fief from brute force password attacks.
I see that the under the hood used
fastapi_users.models.UserProtocol
entity has theis_active
flag which seems to be properly handled, when it's set to False; but I don't see Fief using this flag.Beta Was this translation helpful? Give feedback.
All reactions