我目前正在尝试使用Python(3)和LDAP模块修改AD上用户的密码。 当我的脚本完成后,一切看起来都正常。 但是,密码与以前相同。
这是我的剧本:
LDAP_SERVER = <domain>
LDAP_USERNAME = <admin_username>
LDAP_PASSWORD = <admin_password>
dn = <DN>
quoted_new_password = '\"' + <new_password> + '\"'
quoted_new_password_bytes = quoted_new_password.encode('UTF-16LE')
ldap_client = ldap.initialize(LDAP_SERVER)
ldap_client.set_option(ldap.OPT_REFERRALS, 0)
ldap_client.simple_bind_s(LDAP_USERNAME, LDAP_PASSWORD)
ad_user_filter = '(&(objectClass=user)(sAMAccountName=<username-for-password-modification>))'
res = ldap_client.search_s(dn, ldap.SCOPE_SUBTREE, ad_user_filter)
user_dn = (res[0][1]['distinguishedName'][0]).decode("utf-8")
modlist = [ (ldap.MOD_REPLACE, "userPassword", quoted_new_password_bytes)]
ldap_client.modify_s(user_dn, modlist)
结果是一个类似的元组
(<number>, [], <number>, [])
然后,当我尝试连接AD(具有相同的域)时,旧密码有效,但新密码无效。
我忘了什么吗?
提前谢谢!
编辑:例如,即使我的广告至少需要14个字符,我输入空字符串作为新密码时的结果也相同。
编辑:“ modify_s”的最后结果是
(103, [], 3, [])
但是,103个代码与任何内容都不对应...
答案 0 :(得分:0)
已解决
域为 ldap:// the_domain:389 。 但这无法正常工作,因为我必须使用安全服务器:ldaps而不是ldap,端口636而不是389。
因此我将LDAP_SERVER更改为 ldaps:// the_domain:636
但是,我的脚本不再起作用了。 在改编之前,我从另一个帖子中获取了此脚本:
import ldap3
SERVER = 'ldaps://thedomain:636'
BASE_DN = "DC=domain,DC=com"
LDAP_USERNAME = "admin_username@thedomain.com"
LDAP_PASSWORD = "admin_password"
CURRENT_PWD = "the_current_password"
NEW_PWD = "the_new_password"
SEARCHED_USERNAME = "M_tete_en_l_air"
SEARCH_FILTER = '(&(objectClass=User)(samaccountname='+SEARCHED_USERNAME +'))'
USER_DN = ""
ldap_server = ldap3.Server(SERVER, get_info=ldap3.ALL)
conn = ldap3.Connection(ldap_server, LDAP_USERNAME, LDAP_PASSWORD, auto_bind=True)
conn.start_tls()
conn.search(search_base = BASE_DN,
search_filter = SEARCH_FILTER,
search_scope = ldap3.SUBTREE,
attributes = ['cn', 'givenName'],
paged_size = 5)
for entry in conn.response:
if entry.get("dn") and entry.get("attributes"):
if entry.get("attributes").get("cn"):
USER_DN=entry.get("dn")
print(USER_DN)
success = ldap3.extend.microsoft.modifyPassword.ad_modify_password(conn, USER_DN, NEW_PWD, CURRENT_PWD, controls=None)
print("Password modified: ", success)
(我没有确切的脚本)