Help for making my specific hashcat usecase work
#1
Hi,

I am trying to get into my Bitcoin wallet and I know some things for certain, it will have the following structure

Word 1234 5060 !?.

I have split it up into 4 sections of the password.  It will definitely have the word at the beginning and I am certain of the order.  It will then have the 4 numbers, but I am not sure of their order.  Then it will have 4 different numbers, I am certain of their order.  Then it will use any combination of the !?. (i.e. it can be just ! ? . but could also be !? or ?. etc).

I have tried to make this work but I am struggling with the complexity of what I require.

I am using homebrew on terminal in case that makes any difference.

Thank you in advance!
Reply
#2
I´m not sure what exact syntax you have for the last combination,... only .! !. ?. .? !? ?! .. !! ?? or is there a space possible ?

This mask should work for you:
hashcat -a3 word?d?d?d?d --stdout >wordlist.txt

hashcat [hashmode] -a6 -i --increment-min=4 wordlist.txt -1 .!?? 5060?1?1
Reply