ldap3バージョン '0.9.7.4'を使用して、一部のコードを python3 に更新しようとしています。( https://pypi.python.org/pypi/ldap3 )
以前は、python2 で python-ldap を使用して、次のようにユーザーを認証しました。
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
、間違ったパスワードを使用してバインドしようとすると発生します。
ldap3
python3 で使用して、次のことを行っています。
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で機能しているように見えるため、python2のldap検索によって返された値を使用しています。
python3でldap3を使用してこれを適切にバインドするにはどうすればよいですか?
(私が気づいた奇妙なことの1つは、ldap3のLDAPInvalidCredentialsResultに含まれて'description': 'success'
いることです。これは、応答が正常に受信されたことを意味しているだけだと思います...)