We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f9d3caa + 4a0f038 commit 62496a3Copy full SHA for 62496a3
1 file changed
nxc/modules/ldap-checker.py
@@ -126,7 +126,7 @@ async def run_ldap(target, credential):
126
_, err = await ldapsClientConn.connect()
127
if err is not None:
128
context.log.fail(str(err))
129
- return False
+ return None
130
131
_, err = await ldapsClientConn.bind()
132
@@ -142,7 +142,7 @@ async def run_ldap(target, credential):
142
# because LDAP server signing requirements are not enforced
143
except Exception as e:
144
context.log.debug(str(e))
145
146
147
148
# Run trough all our code blocks to determine LDAP signing and channel binding settings.
0 commit comments