如何在python3中使用ldap3绑定(验证)用户

时间:2015-02-18 03:17:59

标签: python python-3.x ldap ldap3

我正在尝试使用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}]

我正在使用python2的ldap搜索返回的user_dn值,因为它似乎在python2中工作。

如何在python3中使用ldap3正确绑定?

有一点奇怪,我注意到,ldap3的LDAPInvalidCredentialsResult包含'description': 'success'。我猜这只是意味着响应成功收到了......

2 个答案:

答案 0 :(得分:16)

我是ldap3的作者,请在Connection定义中设置raise_exceptions=False并在绑定后检查connection.result。您应该了解bind()失败的原因。

答案 1 :(得分:0)

确认您的 DN 不需要使用“\”对逗号进行转义。

我的组织为用户提供了“姓,名”的 CN,因此我的 DN 需要是“CN=Doe\, Jane, OU=xyz, ..., DC=abc, DC=com”

我通过使用 Active Directory Explorer 导航到我的用户对象,右击 > 查看属性以查看可分辨名称来实现这一点。使用 AD Explorer 在其路径面包屑中显示的 DN 时,我遇到了此无效凭据错误,该 DN 省略了转义字符。