Search content
Sort by

Showing 20 of 30 results by hari1987
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 24/11/2023, 10:33:50 UTC
...

it would be awesome if there's a CUDA version for it.

I can give you this same script that works in C++ but you have to do the GPU part yourself.CUDA programming can be complex, and proper error handling and synchronization are crucial. Also, not all parts of your program may benefit from GPU acceleration, so it's essential to profile and optimize as needed.


Code:
import bit
import hashlib, random
import platform
from time import time
import os
import sys
import ctypes

nbits = 130
low = 2**(nbits-1)
high = -1+2**nbits
diff = high - low

filename ='tes.bin'
with open(filename,'rb') as f:
    add = f.read()#.split()
#add = set(add)

if platform.system().lower().startswith('win'):
    dllfile = 'ice_secp256k1.dll'
    if os.path.isfile(dllfile) == True:
        pathdll = os.path.realpath(dllfile)
        ice = ctypes.CDLL(pathdll)
    else:
        print('File {} not found'.format(dllfile))

elif platform.system().lower().startswith('lin'):
    dllfile = 'ice_secp256k1.so'
    if os.path.isfile(dllfile) == True:
        pathdll = os.path.realpath(dllfile)
        ice = ctypes.CDLL(pathdll)
    else:
        print('File {} not found'.format(dllfile))
else:
    print('[-] Unsupported Platform currently for ctypes dll method. Only [Windows and Linux] is working')
    sys.exit()

ice.scalar_multiplication.argtypes = [ctypes.c_char_p, ctypes.c_char_p]            # pvk,ret
ice.point_subtraction.argtypes = [ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p]  # x1,y1,x2,y2,ret
ice.init_secp256_lib()

def scalar_multiplication(kk):
    res = (b'\x00') * 65
    pass_int_value = hex(kk)[2:].encode('utf8')
    ice.scalar_multiplication(pass_int_value, res)
    return res

def point_subtraction(pubkey1_bytes, pubkey2_bytes):
    x1 = pubkey1_bytes[1:33]
    y1 = pubkey1_bytes[33:]
    x2 = pubkey2_bytes[1:33]
    y2 = pubkey2_bytes[33:]
    res = (b'\x00') * 65
    ice.point_subtraction(x1, y1, x2, y2, res)
    return res

def new_pos(full_bytes):
    pos = hashlib.sha256(full_bytes).digest()
    return pos

def fixrange(full_bytes):
    t = low + int(full_bytes.hex(), 16) % diff
    return t

def pub2upub(pub_hex):
    x = int(pub_hex[2:66], 16)
    if len(pub_hex) < 70:
        y = bit.format.x_to_y(x, int(pub_hex[:2], 16) % 2)
    else:
        y = int(pub_hex[66:], 16)
    return bytes.fromhex('04' + hex(x)[2:].zfill(64) + hex(y)[2:].zfill(64))

def upub2cpub(upub_bytes):
    x1 = upub_bytes[1:33]
    prefix = str(2 + int(upub_bytes[33:].hex(), 16) % 2).zfill(2)
    return bytes.fromhex(prefix) + x1

st = time()
key_seed = b''
m = 1
while True:
    pubkey = "03633cbe3ec02b9401c5effa144c5b4d22f87940259634858fc7e59b1c09937852"
    P = pub2upub(pubkey)
    key_seed = new_pos(key_seed)
    qfix = fixrange(key_seed)
    #qfix = m * 1000000  # Use an interval of 1000000 for qfix (stride)
    tpub = bytes(bytearray(scalar_multiplication(qfix)))
    subP = bytes(bytearray(point_subtraction(P, tpub)))
    cpub = bytes(upub2cpub(subP))
    m += 1

    msg = 'Test Cpub : {total}, {num}, {password} '.format(total=m, num=qfix, password=bytes(cpub).hex())
    sys.stdout.write('\r' + msg)
    sys.stdout.flush()

    if cpub in add:
        print("Winner Found!:{num}, {password} ".format(num=qfix, password=bytes(cpub).hex()))
        f = open (u"Winner.txt","a")
        f.write("num:" + str(qfix) +'\n' +
                "cpub:" + str(bytes(cpub).hex())+ '\n\n')
        f.close()
        break
print('[-] Completed in {0:.2f} sec'.format(time() - st))

can you give me the same script that works in cpp? Thanks
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 16/10/2023, 14:54:58 UTC
can anyone kindly provide an example of public key subtraction code in python ?
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 14/10/2020, 17:18:44 UTC
So this means only a computer genius that eats programs who can solve it? Lucky for you guys to crack it as it has huge rewards waiting to be claimed. I wonder if there were puzzles out there that does not require any computer skills just to crack it. Someone like me will surely cannot solve puzzles like this. 32BTC is a lot of money maybe I will have to find ways to participate and this is fun because the odds of me cracking it is so high maybe thousand times. 😅

Another puzzle that doesn't require any computer skills.
 https://i.redd.it/n1x7g8ceaur51.png
https://www.blockchain.com/id/btc/address/1KfZGvwZxsvSmemoCmEV75uqcNzYBHjkHZ


Any other information for this? I haven't been able to find it anywhere else.
Find it on Reddit bitcoin puzzle forum. Find seed phrase from the picture, then use seed phrase to unlock the wallet.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 12/10/2020, 04:47:35 UTC
So this means only a computer genius that eats programs who can solve it? Lucky for you guys to crack it as it has huge rewards waiting to be claimed. I wonder if there were puzzles out there that does not require any computer skills just to crack it. Someone like me will surely cannot solve puzzles like this. 32BTC is a lot of money maybe I will have to find ways to participate and this is fun because the odds of me cracking it is so high maybe thousand times. 😅

Another puzzle that doesn't require any computer skills.
 https://i.redd.it/n1x7g8ceaur51.png
https://www.blockchain.com/id/btc/address/1KfZGvwZxsvSmemoCmEV75uqcNzYBHjkHZ
Post
Topic
Board Bounties (Altcoins)
Re: 🔥[AIRDROP][21/10-16/11]Tachyon Protocol - VSYS $6200 AIRDROP|15 Exchanges List✅
by
hari1987
on 21/10/2019, 17:19:30 UTC
Tachyon Airdrop Report

Followed on Twitter: Yes

URL of the tweet you retweeted and like:https://mobile.twitter.com/tachyon_eco/status/1186269422765268993

Joined Telegram Group: Yes

Subscribed on Youtube channel: Yes

Subscribed on Reddit: Yes
Post
Topic
Board Bounties (Altcoins)
Re: [AIRDROP][IEO] 🚀 BITWINGS 🤑 100 BWN worth 20$ + Mining Days worth 183$**
by
hari1987
on 01/06/2019, 12:05:10 UTC
 #Proof of Participation

Email Address used for creating your Bitwings Account: ayupustaka@gmail.com
Completed Required Tasks?: Yes
Completed Additional Tasks?: yes
Joined @bitwingsairdrop on Telegram?: Yes
Telegram Username: @harri1987
Ethereum (ERC-20) Wallet Address:  0x7A15a44c3Ca3e0Be079DC918992Bb3124c5cC0F8
Post
Topic
Board Collectibles
Re: [Auction] Ether Legends digital ICO card 67/100 (digital)
by
hari1987
on 20/05/2019, 17:08:51 UTC
0.00022BTC

Winner. You send me a ETH wallet that can hold ERC721. I send you the asset.

Due to BTC miner fee you get it for free.

Not my lucky day  Cheesy Grin
Post
Topic
Board Collectibles
Re: [Auction] Ether Legends digital ICO card 67/100 (digital)
by
hari1987
on 20/05/2019, 17:03:37 UTC
0.00022BTC
Wow.  Nice shot bro   

 @JanEmil my ether wallet at my profile
Post
Topic
Board Collectibles
Re: [Auction] Ether Legends digital ICO card 67/100 (digital)
by
hari1987
on 20/05/2019, 16:56:06 UTC
0.00021
Post
Topic
Board Bounties (Altcoins)
Re: [BOUNTY & AIRDROP] $1000,000 Give Away | PimonCoin | The Future of Investments
by
hari1987
on 29/04/2019, 10:11:36 UTC
Bitcointalk username : hari1987
Telegram username : @harri1987
ETH address :0x7A15a44c3Ca3e0Be079DC918992Bb3124c5cC0F8
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 11/11/2018, 17:07:02 UTC
this is man 1AqEgLuT4V2XL2yQ3cCzjMtu1mXtJLVvww hacked:

1LzhS3k3e9Ub8i2W1V8xQFdB8n2MYCHPCa 2018-05-29
17aPYR1m6pVAacXg1PTDDU7XafvK1dxvhi  2018-09-08
15c9mPGLku1HuW9LRtBf4jcHVpBUt8txKz 2018-11-08 today

=$ 10,448

what hash 15c9mPGLku1HuW9LRtBf4jcHVpBUt8txKz.........

look this tx https://www.blockchain.com/btc/tx/c1c8a3c8c9dccc3dbbc470e294a0610a2bc2e22c41f9a0c2a06ef5dc1d6d4480
 and this address https://www.blockchain.com/btc/address/1LqJ9cHPKxPXDRia4tteTJdLXnisnfHsof ownd by https://github.com/brichard19/BitCrack/blob/master/README.md (scroll down you will find the address).  how fast BitCrack find the 57 
puzzle key?  "THIS MAN" is fast
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 05/08/2018, 03:18:29 UTC
I don't think there is a pattern in this puzzle. because the owner sends bitcoin randomly. and we know that the bitcoin address is between 2^n. and after the owner knew the puzzles were a bone of contention, the owner promised to increase the reward to 10 times and he did it.
good luck guys,there is 36,028,797,018,963,968 addresses to find puzzle number 56
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
hari1987
on 22/06/2018, 20:04:50 UTC
Nobody admitted the find, so private key is unknown.

The private key is 0x6abe1f9b67e114

Code:
Private key : 000000000000000000000000000000000000000000000000006abe1f9b67e114
Public key  : 85a30d8413af4f8f9e6312400f2d194fe14f02e719b24c3f83bf1fd233a8f963 eb400323654cec63999b56f4ba44e8b21ab92d9d697fabe4666df3678585669
 
PrKey WIF c.: KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjidyYKE5NcJQZYvknA
Address c.  : db53d9bbd1f3a83b094eeca7dd970bd85b492fa2
Address c.  : 1LzhS3k3e9Ub8i2W1V8xQFdB8n2MYCHPCa
can you show me your  code on python or c++ please?
Post
Topic
Board Bounties (Altcoins)
Re: •🚀🔥[AIRDROP] KOIOS - AI DEVELOPMENT + FOG GRID Telegram and Twitter
by
hari1987
on 12/03/2018, 13:36:32 UTC
Telegram + twitter
t.me/harri1987
twitter.com/intankasih22
Post
Topic
Board Bounties (Altcoins)
Re: [AIRDROP] ETHERNITYMINING///240 ETM PER PARTICIPANT///WORTH $40///JOIN NOW!!!
by
hari1987
on 06/03/2018, 09:37:43 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][AIRDROP]🚀⚡✅FAITHCOIN-Faith Powered Cryptocurrency🚀⚡✅
by
hari1987
on 14/02/2018, 07:33:19 UTC
Believe in FAITH
Post
Topic
Board Altcoins (Bahasa Indonesia)
Re: octoincoin indonesia
by
hari1987
on 02/02/2018, 20:09:25 UTC
Octoin masih saudara sama bcc itu.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Hexagon Token - Revolutionasing Crowdfunding Industry
by
hari1987
on 01/02/2018, 14:06:58 UTC
Waiting for octagon wallet private Beta 1 released.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][AIRDROP PRE-SALE] BitcoinToken (BTK) Easily Transferable, Easily Tradable
by
hari1987
on 28/01/2018, 12:51:51 UTC
I hope bitcoin token have own blockchain
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [ICO] VIRTUAL CASH (VCA) ICO - Shopping & Exchanger
by
hari1987
on 27/01/2018, 16:30:43 UTC
Need more information about your project