PAM_TALLY(8) | Linux-PAM Manual | PAM_TALLY(8) |
pam_tally - The login counter (tallying) module
pam_tally.so [file=/path/to/counter] [onerr=[fail|succeed]] [magic_root] [even_deny_root_account] [deny=n] [lock_time=n] [unlock_time=n] [per_user] [no_lock_time] [no_reset] [audit] [silent] [no_log_info]
pam_tally [--file /path/to/counter] [--user username] [--reset[=n]] [--quiet]
This module maintains a count of attempted accesses, can reset count on success, can deny access if too many attempts fail.
pam_tally has several limitations, which are solved with pam_tally2. For this reason pam_tally is deprecated and will be removed in a future release.
pam_tally comes in two parts: pam_tally.so and pam_tally. The former is the PAM module and the latter, a stand-alone program. pam_tally is an (optional) application which can be used to interrogate and manipulate the counter file. It can display user counts, set individual counts, or clear all counts. Setting artificially high counts may be useful for blocking users without changing their passwords. For example, one might find it useful to clear all counts every midnight from a cron job. The faillog(8) command can be used instead of pam_tally to to maintain the counter file.
Normally, failed attempts to access root will not cause the root account to become blocked, to prevent denial-of-service: if your users aren't given shell accounts and root may only login via su or at the machine console (not telnet/rsh, etc), this is safe.
GLOBAL OPTIONS
onerr=[fail|succeed]
file=/path/to/counter
audit
silent
no_log_info
AUTH OPTIONS
deny=n
lock_time=n
unlock_time=n
magic_root
no_lock_time
no_reset
even_deny_root_account
per_user
no_lock_time
ACCOUNT OPTIONS
magic_root
no_reset
The auth and account module types are provided.
PAM_AUTH_ERR
PAM_SUCCESS
PAM_USER_UNKNOWN
Add the following line to /etc/pam.d/login to lock the account after too many failed logins. The number of allowed fails is specified by /var/log/faillog and needs to be set with pam_tally or faillog(8) before.
auth required pam_securetty.so auth required pam_tally.so per_user auth required pam_env.so auth required pam_unix.so auth required pam_nologin.so account required pam_unix.so password required pam_unix.so session required pam_limits.so session required pam_unix.so session required pam_lastlog.so nowtmp session optional pam_mail.so standard
/var/log/faillog
pam_tally was written by Tim Baverstock and Tomas Mraz.
05/18/2017 | Linux-PAM Manual |