gurnec / btcrecover

An open source Bitcoin wallet password and seed recovery tool designed for the case where you already know most of your password/seed, but need assistance in trying different possible combinations.
GNU General Public License v2.0
1.29k stars 688 forks source link

New feature #74

Open Flix666 opened 7 years ago

Flix666 commented 7 years ago

Could you add feature (or separate script) to read all pasword lists (separate files) from specified folder (or list of specified files) and to chceck one password list after another?

gurnec commented 7 years ago

That's the sort of thing you can do with shell scripting. Use the --passwordlist option, but don't give it a file so it will read from an input pipe, and then use cat to concatenate a bunch of input files. E.g. on Linux, OS X, or Windows PowerShell, to use all files inside the lists directory, and also the otherlist.txt file:

cat lists/* otherlist.txt | ./btcrecover.py --passwordlist ...

(For PowerShell, you might need to change ./btcrecover.py to C:/Python27/python btcrecover.py.)