python 脚本调用ldap查询域中信息
时间: 2023-10-02 16:04:30 浏览: 143
python-ldap
要在Python脚本中调用LDAP查询域中的信息,你可以使用`ldap3`库。以下是一个示例代码:
```python
from ldap3 import Server, Connection, SAFE_SYNC
# 创建LDAP服务器对象
ldap_server = Server('ldap://your_ldap_server')
# 创建LDAP连接对象
ldap_connection = Connection(ldap_server, user='your_username', password='your_password', authentication=SAFE_SYNC)
# 连接到LDAP服务器
if ldap_connection.bind():
# 进行LDAP查询
search_base = 'ou=users,dc=example,dc=com' # 设置查询的基本路径
search_filter = '(objectClass=person)' # 设置查询的过滤条件
***
阅读全文