Post
Topic
Board Development & Technical Discussion
Re: BitCrack - A tool for brute-forcing private keys
by
NotATether
on 09/01/2021, 12:17:58 UTC
Guys, please tell me with "xxBitCrack" whether it is possible to search for privkeys in one range from a list of several addresses in a file?
For this, what command with parameters do I need to register in the terminal?

It's currently possible to set the keyspace for all of the addresses at once, not individually. Though that would make for an interesting side project.

You need to pass the --keyspace parameter with one of the following values:

   START:END start at key START, end at key END
   START:+COUNT start at key START and end at key START + COUNT
    :END start at key 1 and end at key END
   :+COUNT start at key 1 and end at key 1 + COUNT

Please note: Keys shorter than 64 characters will have zeroes padded at the beginning according to the documentation. So 1234 becomes 00000<more zeros>1234. And keys longer than 64 characters will only use the rightmost 64 characters in the string.