Skip to content

Commit 9f61287

Browse files
authored
Update utils.py
Removed extra parameter in _init_ldap_connection() (From #1918)
1 parent ae0ec30 commit 9f61287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

impacket/examples/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def ldap3_kerberos_login(connection, target, user, password, domain='', lmhash='
220220

221221
return True
222222

223-
def _init_ldap_connection(target, tls_version, args, domain, username, password, lmhash, nthash, k, dc_ip, aesKey):
223+
def _init_ldap_connection(target, tls_version, domain, username, password, lmhash, nthash, k, dc_ip, aesKey):
224224
user = '%s\\%s' % (domain, username)
225225
connect_to = target
226226
if dc_ip is not None:
@@ -326,4 +326,4 @@ def parse_identity(credentials, hashes=None, no_pass=False, aesKey=None, k=False
326326
if lmhash == '':
327327
lmhash = EMPTY_LM_HASH
328328

329-
return domain, username, password, lmhash, nthash, k
329+
return domain, username, password, lmhash, nthash, k

0 commit comments

Comments
 (0)