Post
Topic
Board Bitcoin Discussion
Re: == Bitcoin challenge transaction: ~100 BTC total bounty to solvers! ==UPDATED==
by
paniker
on 14/04/2021, 09:01:00 UTC
what are you doing with repetitions in random?
do you make a base with ready keyspaces to check that you checked it already?

This is my python script for searching puzzle 64 it's generating an .bat file with  random keyspace between puzzle64 keyrange. I'm using vanity + bitcrack

Code:
# Xh0st Keyspace Puzzle 64 Random
# Made by Andrei Melek

import random

file = open('random.bat', 'w')


file.write(":while1" + '\n')
for x in range(100000):
             
    low  = 0x80000000000
    high = 0xfffffffffff
    val = str ( hex ( random.randrange( low, high ) ) )[2:]
    start = val + "00000"
    end = val + "fffff"
    file.write("start Vanity.exe -o out.txt --keyspace " + start +":" + end + "  16jY7q" + '\n' + "timeout /t 20 /nobreak" + '\n' + "taskkill /im Vanity.exe /f" + '\n' + "timeout /t 1 /nobreak" + '\n')
   
file.close()

just place vanity + bitcrack in the same folder name vanity.exe an run the .bat file

Code:
:while1
start Vanity.exe -o out.txt --keyspace e641fa3965c00000:e641fa3965cfffff  16jY7q
timeout /t 20 /nobreak
taskkill /im Vanity.exe /f
timeout /t 1 /nobreak
start Vanity.exe -o out.txt --keyspace a7de69a79ef00000:a7de69a79effffff  16jY7q
timeout /t 20 /nobreak
taskkill /im Vanity.exe /f
timeout /t 1 /nobreak
start Vanity.exe -o out.txt --keyspace 9c547761d2b00000:9c547761d2bfffff  16jY7q
timeout /t 20 /nobreak
taskkill /im Vanity.exe /f
timeout /t 1 /nobreak

Good luck guys