Conversation
This makes it so the wrong-password animation only restarts if another wrong password is entered before it hsa finished.
|
I forgot where we left on this. Was there anything more you thought needed doing? @soreau |
The commits I added took care of everything I wanted to see happen additionally, but I think we left off on selecting the same lockout tries and duration as the pin and fingerprint. So as long as you've updated that for the /etc/pam.d/wf-locker file, I think we should be good. 👍 |
|
Alright thanks :) |
soreau
left a comment
There was a problem hiding this comment.
Looks good to me, aside from changing the data/wf-locker file for pam. 👍
| @@ -0,0 +1,2 @@ | |||
| auth required pam_unix.so nodelay unlock_time=60 | |||
There was a problem hiding this comment.
| auth required pam_unix.so nodelay unlock_time=60 | |
| auth required pam_unix.so nodelay deny=3 unlock_time=10 |
There was a problem hiding this comment.
From my testing we never trigger the unlock lockout because we missed the deny=3
But we do the lockout in our own software
| @@ -0,0 +1,2 @@ | |||
| auth required pam_unix.so nodelay unlock_time=60 | |||
| account required pam_unix.so nodelay unlock_time=60 | |||
There was a problem hiding this comment.
| account required pam_unix.so nodelay unlock_time=60 | |
| account required pam_unix.so nodelay deny=3 unlock_time=10 |
No description provided.