This commit is contained in:
UlricQin 2021-11-18 09:08:17 +08:00
commit 70235eeeee
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ func ldapReq(user, pass string) (*ldap.SearchResult, error) {
searchRequest := ldap.NewSearchRequest(
lc.BaseDn, // The base dn to search
ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false,
fmt.Sprintf(lc.AuthFilter, user), // The filter to apply
genLdapAttributeSearchList(), // A list attributes to retrieve
fmt.Sprintf(lc.AuthFilter, ldap.EscapeFilter(user)), // The filter to apply
genLdapAttributeSearchList(), // A list attributes to retrieve
nil,
)