Agent: Fix credentials object in Zerologon

This commit is contained in:
Ilija Lazoroski 2022-07-28 09:14:58 +02:00
parent b05438b5f1
commit 7fba5139f7
1 changed files with 6 additions and 1 deletions

View File

@ -285,7 +285,12 @@ class ZerologonExploiter(HostExploiter):
self, user: str, lmhash: str, nthash: str
) -> None:
self.telemetry_messenger.send_telemetry(
CredentialsTelem([Credentials([Username(user)], [LMHash(lmhash), NTHash(nthash)])])
CredentialsTelem(
[
Credentials(Username(user), LMHash(lmhash)),
Credentials(Username(user), NTHash(nthash)),
]
)
)
def get_original_pwd_nthash(self, username: str, user_pwd_hashes: List[str]) -> str: