Bitcoin wallet.dat hash - token length exception - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Bitcoin wallet.dat hash - token length exception (/thread-9791.html) |
Bitcoin wallet.dat hash - token length exception - jamesyoung - 01-18-2021 I can't figure out what's going wrong when trying to match a password with a Bitcoin Core wallet hash. I have tried Googling and read some posts here, but so far no luck. Here is what happens: Code: james@john:~/john/run$ hashcat -a 0 -m 11300 ~/wallet_hash.dat ~/wordlists/words.txt Here is the hash: $bitcoin$64$9269f788d7bcecd411d95cc222c9f0cdf7ebfc6fa33847607f7b8c1338a2c3f8$16$10cb87989a39ef71$60692$2$00$2$00$2 I created the hash with bitcoin2john.py from Openwall's John the Ripper repo. Any clues on why this hash isn't being recognised as a valid wallet.dat hash? Thanks for any help! RE: Bitcoin wallet.dat hash - token length exception - jamesyoung - 01-18-2021 Curiously, this worked fine on my laptop with the latest version of hashcat. It didn't want to work at all on a Google compute instance. I tried the Ubuntu 20.04 LTS version, 5.1.1, and the latest version from hashcat, both of which gave errors. With the latest version, clCreateContext(): CL_DEVICE_NOT_AVAILABLE. hashcat freezes up when running ./hashcat -I and doesn't stop. I have to send CTRL+C to stop it. RE: Bitcoin wallet.dat hash - token length exception - vicious1 - 01-18-2021 You are missing a $00 in the end after that $2 at east in my hashes there is that always.. RE: Bitcoin wallet.dat hash - token length exception - Jackjames - 01-19-2021 (01-18-2021, 09:06 AM)vicious1 Wrote: You are missing a $00 in the end after that $2 at east in my hashes there is that always.. Or remove the 2 on the end. It looks like the last number 2 should not be there. |