Help for making my specific hashcat usecase work - 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: Help for making my specific hashcat usecase work (/thread-12403.html) |
Help for making my specific hashcat usecase work - hashcatnewbieman - 12-18-2024 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! RE: Help for making my specific hashcat usecase work - Sondero - 12-19-2024 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 |