Mode 11300
#1
Hi,
I'm trying to understand how the hashcat's brute-force attack works for bitcoin wallets (11300). Until now, I have understood how decrypt the secret key:


Code:
data = pasw+salt
for i in range(rounds):
    data = sha512(data)
key = data[0:32]
iv = data[32:32+16]
dec = AES(key, CBC_MODE, iv).decrypt(cry_master)


But, how can I know that the decrypted key is the correct one?
Reply


Messages In This Thread
Mode 11300 - by MalumaDev - 09-21-2020, 06:58 PM
RE: Mode 11300 - by philsmd - 09-24-2020, 10:17 PM