2016-07-27 383 views
0

基本上试图用LDAP python重置用户的密码。我已经通过各个岗位了这里,但没有运气:(使用ldap更新Active Directory密码python

尝试使用:

  • 一)modify_s() - 返回 “没有这样的对象” 每次。试用不同的用户DN。

    {'info':“0000208D:NameErr:DSID-0310020A,问题2001(NO_OBJECT),数据0,最佳匹配:\ n \ t'DC = mydomain,DC = com'\ n”,'匹配“: 'DC = MYDOMAIN,DC = COM', '降序': '没有这样的对象'}

    下面是代码段:

    def changePassword(userEmail, oldPassword, newPassword): 
    try: 
        ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER) 
    
        ldap_client = ldap.initialize("ldap://127.0.01.1:389") 
        ldap_client.set_option(ldap.OPT_REFERRALS, 0) 
        ldap_client.set_option(ldap.OPT_PROTOCOL_VERSION, 3) 
        ldap_client.set_option(ldap.OPT_X_TLS,ldap.OPT_X_TLS_DEMAND) 
        ldap_client.set_option(ldap.OPT_X_TLS_DEMAND, True) 
        ldap_client.set_option(ldap.OPT_DEBUG_LEVEL, 255) 
        ldap_client.simple_bind_s(ADMIN_EMAIL, ADMIN_PASSWORD) 
    
        # Set AD password 
        #unicode_pass = unicode('\"' + newPassword + '\"', "iso-8859-1") 
        unicode_pass = newPassword 
        password_value = unicode_pass.encode("utf-16-le") 
        add_pass = [(ldap.MOD_REPLACE, 'unicodePwd', [password_value]),(ldap.MOD_REPLACE, 'unicodePwd', [password_value])] 
    
        # Replace password 
        try: 
         user_dn = 'CN=%s,DC=mydomain,DC=com' % username 
         ldap_client.modify_s(user_dn, add_pass) 
         print "Active Directory password for", username, \ 
          "was set successfully!" 
        except ldap.LDAPError, e: 
         sys.stderr.write('Error setting AD password for: ' + username + '\n') 
         sys.stderr.write('Message: ' + str(e) + '\n') 
         ldap_client.unbind_s() 
         return 'SOME_PROBLEM' 
        ldap_client.unbind_s() 
        return 'AUTHENTICATED' 
    except ldap.INVALID_CREDENTIALS: 
        ldap_client.unbind() 
        return 'INVALID_CREDENTIALS' 
    except ldap.SERVER_DOWN: 
        return 'SERVER_UNAVAILABLE' 
    
  • b)中passwd(userEmail, oldPassword, newPassword)。它得到很好的执行,但密码没有更新。

需要帮助确定问题。

参考链接: Python+LDAP+SSL

python-ldap and Microsoft Active Directory: connect and delete user

how to set lockoutTime and password of a user of Active Directory

How can I change password for domain user(windows Active Directory) using Python?

https://groups.google.com/forum/#!topic/macromedia.coldfusion.security/Rq7xx15OeBs

http://www.grotan.com/ldap/python-ldap-samples.html#add

http://marcitland.blogspot.in/2011/02/python-active-directory-linux.html

https://snipt.net/Fotinakis/change-active-directory-password-via-ldap-modify-call/

回答

0

我认为下面的程序对你有帮助.. Windows活动目录使用密码属性为Unicode方法 https://technet.microsoft.com/en-us/magazine/ff848710.aspx

import ldap 
import ldap.modlist as modlist 
import base64 
ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER) 
l = ldap.initialize('ldaps://exam.local') 
l.simple_bind_s('[email protected]', '[email protected]') 
dn="cn=map6,ou=Police,dc=exam,dc=local" 
new_password='[email protected]' 
unicode_pass = unicode('\"' + new_password + '\"', 'iso-8859-1') 
print (unicode_pass) 
password_value = unicode_pass.encode('utf-16-le') 
add_pass = [(ldap.MOD_REPLACE, 'unicodePwd', [password_value])] 
print (password_value) 
l.modify_s(dn, add_pass) 
l.modify_s(dn, add_pass) 
l.unbind_s()  
0

从我所看到的是您user_dn未正确设置。请仔细检查并确保您在Directory Server中实际存在完整的DN。检查您的用户名变量是否被正确解析(无换行符或制表符),并验证了基本DN。

sys.stderr.write('Error setting AD password for: ' + username + '\n') 
sys.stderr.write('DN: ' + user_dn + '\n') 
sys.stderr.write('Message: ' + str(e) + '\n') 

该错误消息是很清楚,AD找不到该对象(DN)它希望修改**(NO_OBJECT)

{'info': "0000208D: NameErr: DSID-0310020A, problem 2001 (NO_OBJECT), 
data 0, best match of:\n\t'DC=mydomain,DC=com'\n", 'matched': 
'DC=mydomain,DC=com', 'desc': 'No such object'}