我正在尝试使用ldap3版本“0.9.7.4”将一些代码更新为 python3。(https://pypi.python.org/pypi/ldap3)
以前,我使用 python-ldap 和 python2 来验证这样的用户:
import ldap
address = "ldap://HOST:389"
con = ldap.initialize(address)
base_dn = "ourDN=jjj"
con.protocol_version = ldap.VERSION3
search_filter = "(uid=USERNAME)"
result = con.search_s(base_dn, ldap.SCOPE_SUBTREE, search_filter, None)
user_dn = result[0][0] # get the user DN
con.simple_bind_s(user_dn, "PASSWORD")
这会正确返回(97, [], 2, [])
正确的密码,并ldap.INVALID_CREDENTIALS
在使用不正确密码的绑定尝试时引发。
在 python3 中使用ldap3
我正在执行以下操作:
from ldap3 import Server, Connection, AUTH_SIMPLE, STRATEGY_SYNC, ALL
s = Server(HOST, port=389, get_info=ALL)
c = Connection(s, authentication=AUTH_SIMPLE, user=user_dn, password=PASSWORD, check_names=True, lazy=False, client_strategy=STRATEGY_SYNC, raise_exceptions=True)
c.open()
c.bind()
它引发了以下异常:
ldap3.core.exceptions.LDAPInvalidCredentialsResult: LDAPInvalidCredentialsResult - 49 - invalidCredentials - [{'dn': '', 'message': '', 'type': 'bindResponse', 'result': 0, 'saslCreds': 'None', 'description': 'success', 'referrals': None}]
我正在使用user_dn
python2 的 ldap 搜索返回的值,因为这似乎在 python2 中工作。
如何在 python3 中使用 ldap3 正确绑定它?
(我注意到一件奇怪的事情是 ldap3 的 LDAPInvalidCredentialsResult 包括'description': 'success'
。我猜这只是意味着成功收到响应......)