Post
Topic
Board Development & Technical Discussion
Re: BitCrack - A tool for brute-forcing private keys
by
COBRAS
on 24/04/2024, 08:51:03 UTC
Question:

Is it possible to make search specific spaces in the priv-key? Like shown below in X:

00000000000000000000000000000XXXXXXXX000000000000000000000000000
Yes this is done by using -stride option

Yes, i got it but could not figure out how can i correctly mark the start-end points. Can you give me the stride setting for this example? This will help me.

Your sample is 64 length so i assumed it is hex privatekey format. On this basis the start, end and stride for the key search will be....

start = 0x00000000000000000000000000000000000
end = 0xFFFFFFFF000000000000000000000000000
stride = 0x1000000000000000000000000000

I think you will modify it accordingly to fill your 0 values in start and end..but no need to change anything in stride.

 Good day Mister.


How to modify bitcrack for work in ranges %n ?


for ex, how to find in range:

from 0 to 0xffd8e700c03997d8c19f5c793fed42fb6c5b5a9bb408a8185b0503ba2fe979bf * 10000000000000


with stride  0xfff97bd5755eeea420453a14355235d382f6472f8568a18b2f057a1460297556

?


Stride and ranges are bigger then N ?


And I thant, what bitcrack increment i , not i = i + 1, but i = i +0xfff97bd5755eeea420453a14355235d382f6472f8568a18b2f057a1460297556 %N


how to do this ?


Thank you very mach