fix escaping sequence in log

main
Marshall Hallenbeck 2023-09-20 09:11:20 -04:00
parent 8c7ed6725d
commit d57f3af7b1
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class NXCModule:
pwned_users = 0
for user in rslts.users:
if user.nthash:
context.log.highlight(f"{user.domain}\{user.name} {user.nthash}")
context.log.highlight(f"{user.domain}\\{user.name} {user.nthash}")
self.process_credentials(connection, context, user)
pwned_users += 1