mirror of
https://github.com/minio/minio.git
synced 2025-04-04 03:40:30 -04:00
Bind to lookup user after user auth to lookup ldap groups (#11357)
This commit is contained in:
parent
fd3f02637a
commit
e79829b5b3
@ -283,6 +283,11 @@ func (l *Config) Bind(username, password string) (string, []string, error) {
|
|||||||
errRet := fmt.Errorf("LDAP auth failed for DN %s: %v", bindDN, err)
|
errRet := fmt.Errorf("LDAP auth failed for DN %s: %v", bindDN, err)
|
||||||
return "", nil, errRet
|
return "", nil, errRet
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Bind to the lookup user account again to perform group search.
|
||||||
|
if err = l.lookupBind(conn); err != nil {
|
||||||
|
return "", nil, err
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// Verify login credentials by checking the username formats.
|
// Verify login credentials by checking the username formats.
|
||||||
bindDN, err = l.usernameFormatsBind(conn, username, password)
|
bindDN, err = l.usernameFormatsBind(conn, username, password)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user