Skip to content
View taha-Mks's full-sized avatar
Block or Report

Block or report taha-Mks

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
taha-Mks/README.md

Keyspace Puzzle 66 Random

Made by taha-Mks

try: import random from bitcoin import *

If required imports are unavailable, we will attempt to install them!

except ImportError: import subprocess subprocess.check_call(["python3", '-m', 'pip', 'install', 'bitcoin'])

while True:
low = 0x20000000000000000 high = 0x3ffffffffffffffff val = str ( hex ( random.randrange( low, high ) ) )[2:] result = val.rjust(48 + len(val), '0') priv = result pub = privtopub(priv) pubkey1 = encode_pubkey(privtopub(priv), "bin_compressed") addr = pubtoaddr(pubkey1) n = addr if n.startswith('13zb1hQbWVs'): print ("found!!",addr,result) k1 = priv k2 = pub k3 = addr

    file = open('boom.txt', 'a')
    file.write("Private key: " + k1 + '\n' + "Public key: " + k2 + '\n' + "Address: " + k3 + '\n\n')    
    file.close()
else:
    print ("searching...",addr,result)

Popular repositories

  1. taha-Mks taha-Mks Public

    Config files for my GitHub profile.

    Python 1