]> err.no Git - util-linux/commit
login: omits PAM account validation when auth is skipped (CVE-2006-7108)
authorKarel Zak <kzak@redhat.com>
Thu, 8 Mar 2007 21:42:50 +0000 (22:42 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 8 Mar 2007 21:42:50 +0000 (22:42 +0100)
commit987195ce415a45d0ea98955019634bf2f179ffb1
tree4d92588d9468147a1e3ac5d1cb014d4531d57b89
parent62eabbf4a9536882fff9dad24f287ea709219f0f
login: omits PAM account validation when auth is skipped (CVE-2006-7108)

The login omits pam_acct_mgmt & chauth_tok when authentication is skipped.
Authentication may be skipped, for example, during krlogin because Kerberos
already took care of it. The problem with skipping pam_acct_mgmt is that it
allows users to use the system when maybe they should not be allowed, such that
if they have a Kerberos ticket, the other checks do not apply.

If a user had to use password authentication, pam_acct_mgmt may reject the user
for several reasons: not allowed to use the system at this time, not allowed to
use this system, user's account has been disabled, etc. Why should these tests
be skipped just because the user has a ticket?

Same with pam_chauthtok: the user may have a valid ticket, but if their
password has expired, they need to enter a new one right now.

Signed-off-by: Karel Zak <kzak@redhat.com>
login-utils/login.c