Awesome, glad to hear oh at least managed to open the wallet.
in the mean time... what is the best recommendation for me on things I can try here?
Do you at least remember how long the password was, what kind of characters you used (and did not use) in some positions, and other small details about it? While you wait for Dave to finish his work, you can extract the run
hashcat on your computer. Use a large wordlist of common passwords if you don't remember anything about the password. You are only limited by CPU/GPU speed.
You are basically running a "dictionary attack" against your wallet file.
First install Python and then run this bitcoin2john.py script which will read the wallet file and will output a hash:
https://raw.githubusercontent.com/magnumripper/JohnTheRipper/bleeding-jumbo/run/bitcoin2john.pyOpen command prompt at the location of the bitcoin2john script and run:
python bitcoin2john.py C:\path\to\wallet.dat
Record the hash because you need it for hashcat.
We will use the RockYou wordlist of passwords, which you can download from
https://github.com/praetorian-inc/Hob0Rules/blob/master/wordlists/rockyou.txt.gz extract it into the same folder as hashcat. (You may need to use 7-zip to extract it)
After you download and extract hashcat, open command prompt again and run
hashcat.exe -a 6 -m 11300 PUT_THE_HASH_HERE rockyou.txt YOUR_PASSWORD_MASK
YOUR_PASSWORD_MASK lets you add letters and numbers and other characters at the end of each word, if you know you usually make passwords like that.
hashcat.exe -a 6 ...... ?a?a?a?a This puts all combinations 4 characters at the end of all words
hashcat.exe -a 6 ...... ?a?a?l Two characters of anything followed by a lowercase letter at the end.
hashcat.exe -a 6 ...... ?d?u?s A digit followed by an uppercase letter followed by a symbol (includes space)
You can also combine masks to search for both kinds of combinations like this: hashcat.exe ..... ?a?a?a ?d?u?s
Try running this search:
hashcat.exe -a 6 -m 11300 PUT_THE_HASH_HERE rockyou.txt ?d ?d?d ?d?d?d ?s ?s?d
(Make sure rockyou.txt is in the same folder as hashcat.exe)
This is going to search for passwords like qwerty1, qwerty12, qwerty123, qwerty- and qwerty-1 as well as with any other word in the RockYou list. They're sorta-common passwords that most people use. Good luck.
~
Beat me by one minute