We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650c780 commit f2da1c1Copy full SHA for f2da1c1
tibudecrypt.py
@@ -164,6 +164,8 @@ def read_file(self):
164
self.pass_hmac_result = base64.b64decode(pass_hmac_result)
165
self.enc_privkey_spec = base64.b64decode(enc_privkey_spec)
166
self.enc_sesskey_spec = base64.b64decode(enc_sesskey_spec)
167
+ print('Password forgotten? hashcat -O -m 160 --hex-salt --increment -a 3 {result}:{salt} "{mask}"'.format(
168
+ salt=self.pass_hmac_key.hex(), result=self.pass_hmac_result.hex(), mask='?l' * 12))
169
except binascii.Error:
170
# Raised if the b64decode fails.
171
raise
0 commit comments