Syntax Help - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Syntax Help (/thread-7068.html) |
Syntax Help - sv187 - 12-02-2017 Hello, I am hoping someone can help as I am stumped. I am trying to get the password for an old bitcoin wallet, I was able to extract the hash using bitcoin2john.py. I am now stuck as I do not know what to do next or what I am doing wrong. The following command throws an error of "hash not loaded": hashcat -a 0 -m 11300 c:\dat\wallet.dat c:\dat\hash.txt Hash.txt is the hash that I extracted using bitcoin2john.py and wallet.dat is my wallet. Any help is appreciated. RE: Syntax Help - philsmd - 12-02-2017 You do not need the wallet.dat file directly for cracking (after you already extracted the information with bitcoin2john.py), you only need the file hash.txt for cracking (it already contains the "hash" information that it extracted from the wallet file). Therefore the syntax is: Code: hashcat -m 11300 -a 0 -w 3 hash.txt wordlist.txt where the file wordlist.txt contains the password candidates that you want to try, one word per line RE: Syntax Help - sv187 - 12-03-2017 Thank you! I am getting this error now, any ideas? The wordlist or mask that you are using is too small. This means that hashcat cannot use the full parallel power of your device(s). Unless you supply more work, your cracking speed will drop. For tips on supplying more work, see: https://hashcat.net/faq/morework Approaching final keyspace - workload adjusted. RE: Syntax Help - undeath - 12-03-2017 that's not an error |