You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Failing to ensure the utilization of SSL in an LDAP connection can cause the entire communication
8
+
to be sent in cleartext making it easier for an attacker to intercept it.</p>
9
+
</overview>
10
+
11
+
<recommendation>
12
+
<p>Always set <code>use_SSL</code> to <code>True</code>, call <code>start_tls_s()</code> or set a proper option flag (<code>ldap.OPT_X_TLS_XXXXXX</code>).</p>
13
+
</recommendation>
14
+
15
+
<example>
16
+
<p>This example shows both good and bad ways to deal with this issue under Python 3.</p>
17
+
18
+
<p>The first one sets <code>use_SSL</code> to true as a keyword argument whereas the second one fails to provide a value for it, so
0 commit comments