unclevito2017 / bitcrack-hex-suffix-search-66

Find private key with bitcrack stride and last 7 hex digits

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bitcrack-hex-suffix-search-

Find private key with bitcrack stride and last 7 hex digits Puzzle 66
Script assigns 7 random hex digits
writes to and checks tried.txt so never repeats the same 7 hex digits in same order.
no more that 2 adjacent identical hex characters. Limits the possible combinations to approx. 33 million
Example to test this method can find private key of a specific public address.
Test Address 1K2wh7bdCYgFeipT8fnCS3GknWLKHPgJq5 lies in keyspace 66 private key 000000000000000000000000000000000000000000000003E838B13505B26867 we know in this example last 7 hex 5B26867
run cuBitCrack OR BitCrack.exe -b 128 -t 256 -p 1380 --stride 10000000 --keyspace 20000000005b26867:3ffffffffffffffff -o FOUND.txt -c 1K2wh7bdCYgFeipT8fnCS3GknWLKHPgJq5
the python script generates 7 random hex digits and places them in the end of the keyspace example 20000000005b26867
Tries for a match if no match writes the tried to tried.txt checks tried.txt so no repeats then generates a new unique 7 hex digits continuously.
To run program run adust -b 128 -t 256 -p 1380 in script to match your gpu adjust time.sleep(60) # Wait for 60 seconds before restarting to match your gpu time to complete the total keyspace
run python3 p66.py and have bitcrack.exe in same folder a tried.txt database will be formed so no duplicate tries. DO not use command line below except to prove works. run python3 p66.py or python3 pattern66.py for linux


Example of operation
BitCrack.exe -b 128 -t 256 -p 1380 --stride 10000000 --keyspace 20000000005b26867:3ffffffffffffffff -o FOUND.txt -c 1K2wh7bdCYgFeipT8fnCS3GknWLKHPgJq5
[2023-09-15.16:56:32] [Info] Compression : compressed
[2023-09-15.16:56:32] [Info] Starting at : 0000000000000000000000000000000000000000000000020000000005B26867 (66 bit)
[2023-09-15.16:56:32] [Info] Ending at : 000000000000000000000000000000000000000000000003FFFFFFFFFFFFFFFF (66 bit)
[2023-09-15.16:56:32] [Info] Range : 000000000000000000000000000000000000000000000001FFFFFFFFFA4D9798 (65 bit)
[2023-09-15.16:56:32] [Info] Initializing NVIDIA GeForce RTX 3060 Ti
[2023-09-15.16:56:33] [Info] Generating 45,219,840 starting points (1725.0MB)
[2023-09-15.16:56:55] [Info] 10.0% 20.0% 30.0% 40.0% 50.0% 60.0% 70.0% 80.0% 90.0% 100.0%
[2023-09-15.16:56:58] [Info] Done
[DEV: NVIDIA GeForce R 7953/8191MB] [0000000000000000000000000000000000000000000000025E56000005B26867 (66 bit)] [INC: 0, 0] [TARGET: 1] [SPEED: 858.76 MKey/s] [TOTAL: 1,582,694,400] [00:0[DEV: NVIDIA GeForce R 7953/8191MB]
[000000000000000000000000000000000000000000000002B9FA000005B26867 (66 bit)] [INC: 0, 0] [TARGET: 1] [SPEED: 848.03 MKey/s] [TOTAL: 3,120,168,960] [00:0[DEV: NVIDIA GeForce R 7953/8191MB]
[000000000000000000000000000000000000000000000003159E000005B26867 (66 bit)] [INC: 0, 0] [TARGET: 1] [SPEED: 848.50 MKey/s] [TOTAL: 4,657,643,520] [00:0[DEV: NVIDIA GeForce R 7953/8191MB]
[0000000000000000000000000000000000000000000000037142000005B26867 (66 bit)] [INC: 0, 0] [TARGET: 1] [SPEED: 848.03 MKey/s] [TOTAL: 6,195,118,080] [00:0[DEV: NVIDIA GeForce R 7953/8191MB]
[000000000000000000000000000000000000000000000003CCE6000005B26867 (66 bit)] [INC: 0, 0] [TARGET: 1] [SPEED: 848.50 MKey/s] [TOTAL: 7,732,592,640] [00:00:07]
[2023-09-15.17:47:53] [Info] Found key for address '1K2wh7bdCYgFeipT8fnCS3GknWLKHPgJq5'. Written to 'FOUND.txt'

[2023-09-15.17:47:53] [Info] No targets remaining

About

Find private key with bitcrack stride and last 7 hex digits

License:MIT License


Languages

Language:Python 100.0%