Recover password with known chars
#1
Hi,

I'm new in hashcat and i don't use it very often.

I'm trying to recover a bitcoin wallet password, its running, but, I'm missing something.

This is my command in linux:
Code:
./hashcat -D 2 -d 1,2,3 -w 4 -a 3 -m 11300 walletHash.txt -i --increment-min=13 --increment-max=13 -1 "abcdefghijklmnopqrstuvwxyz 9" ?1?1?1?1?1?1?1?1?1?1?1?1?1 

What i know about the password:
  • It as 13 characters
  • It contains 1 times " " (space)
  • It contains 1 times the number 9

There is a way to promp hashcat to use the space character and the number 9 in all tries?


Thanks
Reply
#2
If that's all you know, the chance you'll be able to recover the password is... infinitesimal.

But yes, you can use a mask file instead of a single mask with masks containing " " and "9" in various places.

Code:
9 ?1?1?1?1?1?1?1?1?1?1?1
 9?1?1?1?1?1?1?1?1?1?1?1
9?1 ?1?1?1?1?1?1?1?1?1?1

etc
Reply