From 2bcb04fcd3c14bc0b88d88f4be0eecbab431fef1 Mon Sep 17 00:00:00 2001 From: Surav Shrestha Date: Tue, 31 Oct 2023 17:17:26 +0545 Subject: [PATCH] fix typos in nxc/modules/ldap-checker.py --- nxc/modules/ldap-checker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nxc/modules/ldap-checker.py b/nxc/modules/ldap-checker.py index 33bdc4fc..075132a4 100644 --- a/nxc/modules/ldap-checker.py +++ b/nxc/modules/ldap-checker.py @@ -54,10 +54,10 @@ class NXCModule: # Conduct a bind to LDAPS with channel binding supported # but intentionally miscalculated. In the case that and - # LDAPS bind has without channel binding supported has occured, + # LDAPS bind has without channel binding supported has occurred, # you can determine whether the policy is set to "never" or # if it's set to "when supported" based on the potential - # error recieved from the bind attempt. + # error received from the bind attempt. async def run_ldaps_withEPA(target, credential): ldapsClientConn = MSLDAPClientConnection(target, credential) _, err = await ldapsClientConn.connect()