Skip to content

Commit 34cdb1b

Browse files
authored
Techdebt examples bootstrapping fixes (#1935)
* Fixing findDelegation.py - wrong ldap_login parameter name * Fixing GetUserSPNs.py - wrong parse_identity parameter value * Fixing rpcmap.py - wrong parse_identity parameter value
1 parent 675ace8 commit 34cdb1b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/GetUserSPNs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def request_multiple_TGSs(self, usernames):
483483
' a list of SPNs and/or sAMAccountNames to Kerberoast.')
484484
sys.exit(1)
485485

486-
userDomain, username, password, _, _, options.k = parse_identity(options.identity, options.hashes, options.no_pass, options.aesKey, options.k)
486+
userDomain, username, password, _, _, options.k = parse_identity(options.target, options.hashes, options.no_pass, options.aesKey, options.k)
487487

488488
if userDomain == '':
489489
logging.critical('userDomain should be specified!')

examples/findDelegation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def __init__(self, username, password, user_domain, target_domain, cmdLineOption
109109

110110
def run(self):
111111
# Connect to LDAP
112-
ldapConnection = ldap_login(self.__target, self.baseDN, self.__kdcIP, self.__kdcHost, self.__doKerberos, self.__username, self.__password, self.__domain, self.__lmhash, self.__nthash, self.__aesKey, targetDomain=self.__targetDomain, fqdn=True)
112+
ldapConnection = ldap_login(self.__target, self.baseDN, self.__kdcIP, self.__kdcHost, self.__doKerberos, self.__username, self.__password, self.__domain, self.__lmhash, self.__nthash, self.__aesKey, target_domain=self.__targetDomain, fqdn=True)
113113
# updating "self.__target" as it may have changed in the ldap_login processing
114114
self.__target = ldapConnection._dstHost
115115

examples/rpcmap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def _split_lines(self, text, width):
325325
logger.init(options.ts, options.debug)
326326

327327
rpcdomain, rpcuser, rpcpass, _, _, _ = parse_identity(options.auth_rpc, options.hashes_rpc, options.no_pass, getpass_msg='Password for MSRPC communication:')
328-
transportdomain, transportuser, transportpass, _, _, _ = parse_identity(options.auth_rpc, options.hashes_rpc, options.no_pass, getpass_msg='Password for RPC transport (SMB or HTTP):')
328+
transportdomain, transportuser, transportpass, _, _, _ = parse_identity(options.auth_transport, options.hashes_transport, options.no_pass, getpass_msg='Password for RPC transport (SMB or HTTP):')
329329

330330
if options.brute_opnums and options.brute_versions:
331331
logging.error("Specify only -brute-opnums or -brute-versions")

0 commit comments

Comments
 (0)