aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author65432022-03-10 09:15:35 +0100
committerGitHub2022-03-10 08:15:35 +0000
commit3e5c844a7758fa29126d201f4f98bf21bca6d314 (patch)
tree3ef4eedac4a1d0bf6ed79c2dff144898647475b2
parent4047c5c068b80b66e0e61247ec239dc388615a02 (diff)
fix pam authorization (#19040) (#19047)release/v1.16
Backport #19040 The PAM module has previously only checked the results of the authentication module. However, in normal PAM practice most users will expect account module authorization to also be checked. Without doing this check in almost every configuration expired accounts and accounts with expired passwords will still be able to login. This is likely to represent a significant gotcha in most configurations and cause most users configurations to be potentially insecure. Therefore we should add in the account authorization check. ## :warning: **BREAKING** :warning: Users of the PAM module who rely on account modules not being checked will need to change their PAM configuration. However, as it is likely that the vast majority of users of PAM will be expecting account authorization to be checked in addition to authentication we should make this breaking change to make the default behaviour correct for the majority. --- I suggest we backport this despite the BREAKING nature because of the surprising nature of this. Thanks to @ysf for bringing this to our attention. Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: ysf <34326+ysf@users.noreply.github.com>
-rw-r--r--modules/auth/pam/pam.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/auth/pam/pam.go b/modules/auth/pam/pam.go
index 73ecae0c2..08558fad9 100644
--- a/modules/auth/pam/pam.go
+++ b/modules/auth/pam/pam.go
@@ -35,6 +35,10 @@ func Auth(serviceName, userName, passwd string) (string, error) {
if err = t.Authenticate(0); err != nil {
return "", err
}
+
+ if err = t.AcctMgmt(0); err != nil {
+ return "", err
+ }
// PAM login names might suffer transformations in the PAM stack.
// We should take whatever the PAM stack returns for it.