We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe231a commit 3797ccfCopy full SHA for 3797ccf
1 file changed
nxc/connection.py
@@ -414,7 +414,7 @@ def parse_credentials(self):
414
with open(ntlm_hash) as ntlm_hash_file:
415
for i, line in enumerate(ntlm_hash_file):
416
if len(line) != 16 and len(line) != 32:
417
- self.logger.fail(f"Invalid NTLM hash length on line {i+1}: {line}")
+ self.logger.fail(f"Invalid NTLM hash length on line {i + 1}: {line}")
418
continue
419
else:
420
secret.append(line.strip())
0 commit comments