We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d7ec6e + b7259fd commit 4f8587fCopy full SHA for 4f8587f
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