Browse Source

Merge pull request #191 from skahler-pivotal/master

[useradmin] Sanitization process added to groups
Romain Rigaux 10 years ago
parent
commit
01e33215d6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      apps/useradmin/src/useradmin/ldap_access.py

+ 2 - 0
apps/useradmin/src/useradmin/ldap_access.py

@@ -327,6 +327,8 @@ class LdapConnection(object):
 
     # Allow wild cards on non distinguished names
     sanitized_name = ldap.filter.escape_filter_chars(groupname_pattern).replace(r'\2a', r'*')
+    # Fix issue where \, is converted to \5c,
+    sanitized_name = sanitized_name.replace(r'\5c,', r'\2c')
     search_dn, group_name_filter = self._get_search_params(sanitized_name, search_attr, find_by_dn)
     ldap_filter = '(&' + group_filter + group_name_filter + ')'
     attrlist = ['objectClass', 'dn', 'memberUid', group_member_attr, group_name_attr]