我正在尝试使用ldap3 Python模块对ldap进行身份验证,但是我想验证我的连接是否使用TLS 1.2版。
相关代码段:
tls = Tls(validate=ssl.CERT_REQUIRED, version=ssl.PROTOCOL_TLSv1_2)
server = Server(server_uri, use_ssl=True, tls=tls, get_info=ALL)
conn = Connection(server, user="domain\\myusername", password="password", authentication=NTLM, auto_referrals=False)
conn.bind()
我的Connection对象的输出:
Connection(server=Server(
host='domain.host.com',
port=636,
use_ssl=True,
allowed_referral_hosts=[('*', True)],
tls=Tls(validate=<VerifyMode.CERT_REQUIRED: 2>,
version=<_SSLMethod.PROTOCOL_TLSv1_2: 5>),
get_info='ALL', mode='IP_V6_PREFERRED'),
version=3,
authentication='NTLM',
client_strategy='SYNC', ...truncated...)
我不确定版本属性中的“ 5”是什么意思,但是最终我试图验证是否使用TLS 1.2版进行身份验证。
答案 0 :(得分:1)
常量来自ssl stdlib模块。您可以使用该模块为不同的SSL版本打印等值的常量,如下所示:
$ python -c "import ssl; print(ssl.PROTOCOL_SSLv3)"
1
$ python -c "import ssl; print(ssl.PROTOCOL_SSLv23)"
2
$ python -c "import ssl; print(ssl.PROTOCOL_TLSv1)"
3
$ python -c "import ssl; print(ssl.PROTOCOL_TLSv1_1)"
4
$ python -c "import ssl; print(ssl.PROTOCOL_TLSv1_2)"
5