Post
Topic
Board Bitcoin Technical Support
Merits 5 from 2 users
Re: Brute Forcing wallet.dat with BTCRecover need help
by
HCP
on 22/01/2022, 04:30:08 UTC
⭐ Merited by o_e_l_e_o (4) ,RickDeckard (1)
That work perfect Now, can I make it like this Example: 1234password4321
Unfortunately, it doesn't look like the code supports having multiple backreferences in a row... Logically, something like this should work:
Code:
%4cpassword%;9b%;10b%;11b%;12b

which should generate the 4 characters at the front... then copy them to the end in reverse order... for example:
Code:
ab2cpasswordc2ba
1234password4321
...;

Unfortunately, it seems that the tokens parser is prioritising the ";filename;" parsing... and treating ;9b%; as a filename for a keyboard walking map pattern and spits out an IOError Undecided
Code:
IOError: [Errno 2] No such file or directory: '9b%'


I'm not sure of a workaround for this, that doesn't involve a massive pre-generated token file that has the 4 characters matched with their reverse 4 characters etc.