Search content
Sort by

Showing 15 of 15 results by papiro08
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 02/05/2025, 07:33:00 UTC
It seems very strange and very soon for someone to discover the code of 69, and all this happened at a time that is suspicious. Huh  Grin
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 01/05/2025, 02:28:10 UTC

 Grin
================== PARTIAL MATCH FOUND! ============
Prefix length : 5 bytes
Private Key   : 0000000000000000000000000000000000000000000000101BAD664B39C861DD
Public Key    : 037FC2D6B0DD6277AB73574C429A4E2E2449A2E2CF2BC0AA0DEAC139B6BCB6BE7C
Found Hash160 : 61eb8a50c88e3ba21de4b327a80d2d93497a4fb1
Target Hash160: 61eb8a50c86b0584bb727dd65bed8d2400d6d5aa
Matched bytes : 61eb8a50c8
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 23/04/2025, 04:56:18 UTC
🔮 Curvature in Bitcoin's key space?
In physics, the curvature of space-time allows a ship (hypothetically) to take a shortcut, like in a warp drive. In Bitcoin's key space (a space of 2²⁵⁶ possible private keys), finding a specific key is like searching for a grain of sand in an entire universe. But... what if we could "curve" that space somehow? A lot of Netflix, right? Grin
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 20/04/2025, 08:39:45 UTC
random and sequential in Cyclone  Grin

Code:
import secrets
import subprocess
import time

# Hash160 objetivo
hash160_hex = "61eb8a50c86b0584bb727dd65bed8d2400d6d5aa"

# Rango de claves (10 cifras hexadecimales)
LOWER_BOUND = 0x10000000000
UPPER_BOUND = 0x1FFFFFFFFFF

# Máscara XOR
xor_mask = 0x13f53a6da4925903f1


# Set para evitar claves repetidas
used_keys = set()

def generate_unique_key(seed, xor_mask):
    """Genera una clave única hexadecimal usando una semilla y una máscara XOR."""
    while True:
        # Realizamos un XOR entre la semilla y la máscara
        new_seed = seed ^ xor_mask
       
        # Usamos la nueva semilla para generar un número aleatorio
        key = secrets.randbelow(UPPER_BOUND - LOWER_BOUND + 1) + LOWER_BOUND
       
        # Actualizamos la semilla para el siguiente número aleatorio
        seed = new_seed
       
        if key not in used_keys:
            used_keys.add(key)
            return f"{key:010X}", seed

def run_cyclone():
    count = 0
    seed = 0xBEBB3940CD0FC1491  # Semilla inicial
   
    while True:
        key_prefix, seed = generate_unique_key(seed, xor_mask)
        start_range = key_prefix + "0000000"
        end_range = key_prefix + "FFFFFFF"

        command = [
            "./Cyclone",
            "-h", hash160_hex,
            "-r", f"{start_range}:{end_range}",
            "-b", "5",
            "-t", "12",  # Puedes ajustar según tus núcleos
            "-S"
        ]

        print(f"\n[Intento {count + 1}] Ejecutando Cyclone con rango:")
        print(f"  {start_range} - {end_range}")
        print("-" * 60)

        process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
        found_match = False
        lines_to_save = []

        for line in iter(process.stdout.readline, ''):
            print(line, end='')
            if "FOUND MATCH!" in line:
                found_match = True
            if found_match and len(lines_to_save) < 9:
                lines_to_save.append(line)

        process.wait()

        if found_match:
            with open("found_match.txt", "w") as file:
                file.writelines(lines_to_save)
            print("================== ¡FOUND MATCH! ==================")
            break

        if process.returncode != 0:
            error_output = process.stderr.read()
            print(f"[Error] Cyclone terminó con código {process.returncode}")
            print(f"[Error Output] {error_output}")

        count += 1
        time.sleep(0.1)


if __name__ == "__main__":
    run_cyclone()
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 16/04/2025, 23:35:30 UTC
I imagine that with 2000 GPUs you will have tons of much longer prefixes. Grin
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 16/04/2025, 23:25:49 UTC
PubAddress: 19vkiEajcG4MNPMThVK2Kxog3vxuNhRaY4
Priv (WIF): p2pkh:KzHF5EkDnaLv7sGvs4orAFZr1QfuDZiCTL7Nc5A1uBFsxizNBcZC
Priv (HEX): 0x5B5458C8FB767377A02A6D1DD5687DD6B8F94A88500C8B9364CD9F911015C92D
[107708.64 Mkey/s][GPU 107488.26 Mkey/s][Total 2^47.59][Prob 100.0%][99% in 00:00:00][Found 225]
PubAddress: 19vkiEaj73nZvS4ePfXWuTwCNaZsEmhkEn
Priv (WIF): p2pkh:KwszBwcN3x3TqcDtj5WXfENUekhRzr181WRSwH29goMtoeXNxhP3
Priv (HEX): 0x13B0CAEEDEB14E00A2D5F62BA26B69F18AA1A7B83246526A74A981ADFE5D8EE3
[107708.75 Mkey/s][GPU 107488.21 Mkey/s][Total 2^47.59][Prob 100.0%][99% in 00:00:00][Found 226]
PubAddress: 19vkiEaj59ivaKeicDquPCHWYCDFBHM5nQ
Priv (WIF): p2pkh:L3imeAmxMhvqS5hRF19Np8jqkwLUBFXkpxeE58dQopyNoDr5yshJ
Priv (HEX): 0xC1F94716160E1E2743510310DFCBEDC21D493B65A8D5869753C668156B734559
[107607.04 Mkey/s][GPU 107386.73 Mkey/s][Total 2^47.60][Prob 100.0%][99% in 00:00:00][Found 227]
PubAddress: 19vkiEajn7rZH3kVdsUMZvb3nRDV7Mx8Lm
Priv (WIF): p2pkh:L2ZtSz9Kn5NwAp782xFq4kQJCA9c4cJXXkcWi38tAqqqJHrPG8k8
Priv (HEX): 0x9F911888F12591DD809C71A200A7C067424A6DBFDFD8AF8BF61151F3D20FA891
[107555.62 Mkey/s][GPU 107335.30 Mkey/s][Total 2^47.60][Prob 100.0%][99% in 00:00:00][Found 228]
PubAddress: 19vkiEajzfiRWYe7TC4YbgCvBhHay2Eux2
Priv (WIF): p2pkh:L5GUymChqHU3pGXPRWXiiZUXi2o7BGfHYUWcMzJUR7JsfnF4nN4N
Priv (HEX): 0xF02017BDE5C94B86329EB8C8B98C7F9DEE1100113E276B2104340CDD0C1CC221
[107555.35 Mkey/s][GPU 107334.68 Mkey/s][Total 2^47.61][Prob 100.0%][99% in 00:00:00][Found 229]
PubAddress: 19vkiEajw8F2yPzxN7QyCKiCXuzH2SKDja
Priv (WIF): p2pkh:KxJjscHJiv2CmLysNs5UftChePyBcwPTG3e8F8Y3bTS5CYZ8Q7tU
Priv (HEX): 0x206CB04BB7E859E0FB1A6DBC6DFC4B453FE9190EA5506BFEC2B44776F0457565
[107606.35 Mkey/s][GPU 107385.67 Mkey/s][Total 2^47.61][Prob 100.0%][99% in 00:00:00][Found 230]
PubAddress: 19vkiEajoHda5j3zhrxzhRNHNLM7z9dWEF
Priv (WIF): p2pkh:KycJha9gMATYrQ9jcrmbP7P7UrXQT3UFayCT7z6TvtbdJbfMuCxQ
Priv (HEX): 0x474C6EF455C88A7A2A6C87933EA456AF067F11533AB0F1805397F257A2C1B0E2
[107709.20 Mkey/s][GPU 107488.38 Mkey/s][Total 2^47.62][Prob 100.0%][99% in 00:00:00][Found 231]
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 13/04/2025, 21:30:15 UTC
I found this haha ​​it's a joke  Tongue
Hash160: 61eb8a50c8673cd3fd9d73ee90c733ff24b6e64f
BTC Address: 19vkiEajf1jD23km6G6DdSQXH2VhWP3kHG
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 10/04/2025, 00:44:58 UTC
a partial match of 6 bytes is useless in puzzle 135? Roll Eyes
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 08/04/2025, 20:04:43 UTC
Guys, to compete against approximately 2200 GPUs, we would have to revive Einstein and make him create an algorithm never seen before, mathematics vs. warehouses. Tongue
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 07/04/2025, 18:15:15 UTC
From puzzle 135, did anyone find a partial match of more than 6? Tongue
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 04/04/2025, 20:01:11 UTC
Chatgpt hates the module import secp256k1 as ice, it freaks out when you name it Grin
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 22/03/2025, 06:14:18 UTC
Hello everyone,
I'm ~ new to this thread and didn't have 59 sats to pay for the proxyban so I could post.
First things first, my skills on a scale of 1 to 10
Math 0
Code 0
Dumb luck 11
Yes, I'm here for the magical way to solve the puzzle.

So, what is the latest magical way to find the key?


Grab a keyboard you have lying around—if it's missing keys, it doesn't matter—and start typing on everything you can press. With a lot of luck, you'll have figured out all 17 digits of the key.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 20/03/2025, 22:42:26 UTC
Performance with modified Cyclon approximately with an i5 1335u 50mkey/s laptop when stabilized
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 20/03/2025, 20:09:26 UTC
I leave you this song from our Aunt Taylor while you decipher puzzle number 68 Wink https://www.youtube.com/watch?v=AgFeZr5ptV8
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
papiro08
on 20/03/2025, 15:30:45 UTC
I don't know if anyone has done this before, but I was with a man who has the gift of remote viewing. He says the key to Puzzle 68 lies between E0000000000000000 and E0FFFFFFFFFFFFFFF.  Tongue

Tell him, he is totally wrong  Tongue


There are no fortune tellers, the only one who knows the key is the creator or the one who has 3000 RTX 4090