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.23k stars 657 forks source link

Use a random seed generator inside of btcrecover ? #475

Open senatorr3za opened 2 years ago

senatorr3za commented 2 years ago

Hi is anyway to use a random seed generator like python Mnemonic generator inside of btcrecover ? i know we can use a list of seed with --seedlist .

kharidvpn commented 2 years ago

میتونی با این کد پایتون یه دیتابیس خیلی بزرگ درست کنی و از اون طریق اسکن رو انجام بدی من یه چیزی در حد 250 گیگ درست کردم که تازه شده 4 تیلیارد سید رندوم import os

from mnemonic import Mnemonic my_mnemonic = Mnemonic("english") words = my_mnemonic.generate(128)

f = open("txt.txt", "a") f.write(words) f.write(os.linesep) f.close()

senatorr3za commented 2 years ago

چقدر زمان برد ؟ من یه کدی خودم نوشتم ولی بعد ۲۴ ساعت حدود ۱ تیلیرون رندوم سید تولید کرد که اونم فایده نداشت ، البته یبارم سید اخره از check sum استفاده کردم که اونم خیلی زمانبرد تا ۱ تیلیریون سید تولید بشه