Skip to content

Commit

Permalink
Merge pull request #469 from MyLoginOnGitHub/Update-password-decoding…
Browse files Browse the repository at this point in the history
…-for-credman

Update password decoding for credman
  • Loading branch information
AlessandroZ authored Jan 6, 2020
2 parents 9f7ccdf + a459c23 commit dbe90d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Windows/lazagne/softwares/windows/credman.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run(self):
pwd_found.append({
'URL': c.TargetName,
'Login': c.UserName,
'Password': c.CredentialBlob[:c.CredentialBlobSize.real] # \\x00 could be deleted
'Password': c.CredentialBlob[:c.CredentialBlobSize.real].decode("UTF-16")
})

CredFree(creds)
Expand Down

0 comments on commit dbe90d0

Please sign in to comment.