Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
lordfrs
on 19/04/2023, 22:52:54 UTC
why was the last post of "Professor of wilds" here about puzzle #66 deleted? To the poster: please write again your proposal about the key search and the list you posted
i deleted it because i realized that no one would probably help me if you want to know what i said i have a high chance with the right people we could solve the next keys without kang or brute. if you can code send me your discord telegram anything if you want to try and help. its brought a lot of attention that i deleted my post but never got any while up? maybe that's why i took it down scared for someone to take what i know.



Code:
import requests
from bs4 import BeautifulSoup
from multiprocessing import Pool
from tqdm import tqdm

def check_website(page_number):
    url = 'https://hashkeys.club/66/?page='
    search_text = '13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so'

    # İstek gönder
    response = requests.get(url + str(page_number))
    soup = BeautifulSoup(response.content, 'html.parser')

    # Aranacak etiketi belirle
    search_tag = soup.find('keys')

    # Aranacak kelimeyi içeren metni kontrol et
    if search_tag and search_text in search_tag.get_text():
        return page_number
   
    return None

if __name__ == '__main__':
    # İşlem havuzu oluştur
    cekirdek=10
    with Pool(processes=cekirdek) as pool:
        # Sayfa numaraları
        page_numbers = range(79000000000001, 36893488147419104)

        # İşlem havuzundaki işlemleri başlat
        results = []
        with tqdm(total=len(page_numbers)) as pbar:
            for result in pool.imap_unordered(check_website, page_numbers):
                if result:
                    results.append(result)
                pbar.update(1)

        # Sonuçları göster
        if results:
            print('Aranacak kelime bulundu sayfa numaraları: ', results)
        else:
            print('Aranacak kelime bulunamadı.')