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 f923857Copy full SHA for f923857
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}'.format(
168
+ salt=self.pass_hmac_key.hex(), result=self.pass_hmac_result.hex()))
169
except binascii.Error:
170
# Raised if the b64decode fails.
171
raise
0 commit comments