Author

Topic: How to extrack mkey from nany wallet.dat with run any program only once ? (Read 119 times)

legendary
Activity: 2870
Merit: 7490
Crypto Swap Exchange
see below sudo code:

Code:
for file in wallet_files:
    pywallet.py --wallet=file --[any other options]

Or you can import the relevant functions and/or create a class that inherets the relevant classes, and create a loop that reads each file you have.

It's very easy to convert this to Bash - in the place of wallet_files, just put the name of each wallet file separated by space:

Code:
for file in a.dat b.dat c.dat; do
    pywallet.py --wallet=$file --[any other options]
done

This can be pasted as-is on the terminal. No need to go out and make a big script for it, it can be accomplished in just 4 lines  Smiley

You also can add output redirection to file so you could check the result anytime you need.

Code:
for file in a.dat b.dat c.dat; do
    pywallet.py --wallet=$file --[any other options] > $file"_output.txt"
done
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
see below sudo code:

Code:
for file in wallet_files:
    pywallet.py --wallet=file --[any other options]

Or you can import the relevant functions and/or create a class that inherets the relevant classes, and create a loop that reads each file you have.

It's very easy to convert this to Bash - in the place of wallet_files, just put the name of each wallet file separated by space:

Code:
for file in a.dat b.dat c.dat; do
    pywallet.py --wallet=$file --[any other options]
done

This can be pasted as-is on the terminal. No need to go out and make a big script for it, it can be accomplished in just 4 lines  Smiley
legendary
Activity: 3472
Merit: 10611
I have a 30 wallet.dat files,
I hope you know that all the different wallet files that you buy or find on the internet are fake and some of files they spread contain malware targeting you!
copper member
Activity: 1666
Merit: 1901
Amazon Prime Member #7
see below sudo code:

Code:
for file in wallet_files:
    pywallet.py --wallet=file --[any other options]

Or you can import the relevant functions and/or create a class that inherets the relevant classes, and create a loop that reads each file you have.
member
Activity: 873
Merit: 22
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
Its hard to understand what are you trying to do exactly , please fix your english just a bit...

I have a 30 wallet.dat files, I need export from all of them mkey in hashcat format. How to do it in 2 click of keyboard ?

Now more understand ?

Thx
copper member
Activity: 28
Merit: 1
Its hard to understand what are you trying to do exactly , please fix your english just a bit...
member
Activity: 873
Merit: 22
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
Good ivening.

What program/script can extract mkey's in hashcat format, from for example 20 wallet.dat files ?

Run Pywallet 20 times is too hard for me, I looking for a bulk extractor. Help me please ?

Regards
Jump to: