We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca183d commit b7259fdCopy full SHA for b7259fd
1 file changed
nxc/protocols/ldap.py
@@ -276,7 +276,7 @@ def check_ldaps_cbt(self):
276
self.logger.debug(f"LDAPSessionError while checking for channel binding requirements (likely NTLM disabled): {e!s}")
277
except SysCallError as e:
278
self.logger.debug(f"Received SysCallError when trying to enumerate channel binding support: {e!s}")
279
- if e.args[1] in ["ECONNRESET", "WSAECONNRESET"]:
+ if e.args[1] in ["ECONNRESET", "WSAECONNRESET", "Unexpected EOF"]:
280
self.cbt_status = "No TLS cert"
281
else:
282
raise
0 commit comments