faillock - Man Page
Tool for displaying and modifying the authentication failure record files
Examples (TL;DR)
- List login failures of the current user:
faillock
- Reset the failure records of the current user:
faillock --reset
- List login failures of all users:
sudo faillock
- List login failures of the specified user:
sudo faillock --user user
- Reset the failure records of the specified user:
sudo faillock --user user --reset
Synopsis
faillock [--dir /path/to/tally-directory] [--user username] [--reset]
Description
The pam_faillock.so module maintains a list of failed authentication attempts per user during a specified interval and locks the account in case there were more than deny consecutive failed authentications. It stores the failure records into per-user files in the tally directory.
The faillock command is an application which can be used to examine and modify the contents of the tally files. It can display the recent failed authentication attempts of the username or clear the tally files of all or individual usernames.
Options
- --conf /path/to/config-file
The file where the configuration is located. The default is /etc/security/faillock.conf.
- --dir /path/to/tally-directory
The directory where the user files with the failure records are kept.
The priority to set this option is to use the value provided from the command line. If this isn't provided, then the value from the configuration file is used. Finally, if neither of them has been provided, then /var/run/faillock is used.
- --user username
The user whose failure records should be displayed or cleared.
- --reset
Instead of displaying the user's failure records, clear them.
Files
- /var/run/faillock/*
the files logging the authentication failures for users
See Also
pam_faillock(8), pam(8)
Author
faillock was written by Tomas Mraz.
Referenced By
faillock.conf(5), pam_faillock(8).