Bitcoin Forum
June 19, 2025, 09:45:10 PM *
News: Pizza day contest voting
 
   Home   Help Search Login Register More  
Pages: « 1 ... 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 [301] 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 ... 535 »
  Print  
Author Topic: Bitcoin puzzle transaction ~32 BTC prize to who solves it  (Read 309892 times)
Akito S. M. Hosana
Jr. Member
*
Offline Offline

Activity: 336
Merit: 8


View Profile
September 23, 2024, 09:13:01 AM
 #6001

I've been trying to solve puzzle 130 for two years now. 6 GPUs. The puzzle creator is kidding with us. Yes, we are all donkeys.  Cry
frozenen
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
September 23, 2024, 09:19:21 AM
 #6002

I guess finders are never gonna share solutions for 120, 125 and 130?
lol are you guys gonna try vanity 1Prestige1zSYorBdz94KA2UbJW3hYLTn4 instead of search 67?
Feron
Jr. Member
*
Offline Offline

Activity: 69
Merit: 1


View Profile
September 23, 2024, 09:21:05 AM
 #6003

It will not be the creator, the more people search for puzzle addresses, the greater the chance of solving them
To give an example, if 1,000,000 computers start solving puzzle 67, there is a good chance you will solve it in one day
AlanJohnson
Member
**
Offline Offline

Activity: 185
Merit: 11


View Profile
September 23, 2024, 09:23:45 AM
 #6004

I've been trying to solve puzzle 130 for two years now. 6 GPUs. The puzzle creator is kidding with us. Yes, we are all donkeys.  Cry


First (puzzle 66) there was a mockery with addresses like 1YouDeserveNothingxxxxxxx...

Now (puzzle 130) is going to address 1Prestige1xxxxxxxxxxxxx...

Puzzle 120 and 125 didn't even take altcoins ...

I knew it was a waste of time... It's still exciting but not worth to invest too much time or resources.

  
Feron
Jr. Member
*
Offline Offline

Activity: 69
Merit: 1


View Profile
September 23, 2024, 09:31:51 AM
 #6005

maybe hundreds of people puzzling addresses, but if the whole planet started looking for them, then those addresses would just get dusty
Feron
Jr. Member
*
Offline Offline

Activity: 69
Merit: 1


View Profile
September 23, 2024, 09:36:57 AM
 #6006

so you shouldn't invest in it, just run the code on the cpu and voila, you can still try to guess the beginning of the range to speed up the solution
Tepan
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
September 23, 2024, 09:55:10 AM
 #6007

https://www.blockchain.com/explorer/transactions/btc/91ec88f5d6d6cc727e0205d3aa3709fee507df05140d187846cf22aef784621a


someone just took out the 130 bit.
dang, it's creator or someone else did samething with 66 bit ?

  "outputs": [
    {
      "address": "1Prestige1zSYorBdz94KA2UbJW3hYLTn4",
      "pkscript": "76a914fab6c492ff6de8e5080faa86847e3374dcf042ce88ac",
      "value": 1299999680,
      "spent": false,
      "spender": null
    }

ngl, the way you can break the puzzle is from recent history of priv key has been found, if someone found it, and not tell the key, the puzzle is broken, you just need to think this is PUZZLE, and every piece is work together to assemble the next lossless piece.
kTimesG
Full Member
***
Offline Offline

Activity: 504
Merit: 129


View Profile
September 23, 2024, 10:13:33 AM
 #6008

It will not be the creator, the more people search for puzzle addresses, the greater the chance of solving them
To give an example, if 1,000,000 computers start solving puzzle 67, there is a good chance you will solve it in one day

Wrong example. I think you meant 1 billion computers running at 100% usage for 24 hours.

Off the grid, training pigeons to broadcast signed messages.
ihsotas91
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
September 23, 2024, 10:18:22 AM
 #6009

I guess finders are never gonna share solutions for 120, 125 and 130?
lol are you guys gonna try vanity 1Prestige1zSYorBdz94KA2UbJW3hYLTn4 instead of search 67?

 Grin possibility of finding 67 via vanity > possibility to find 1Prestige between 0 and 2^256  Grin
CY4NiDE
Member
**
Offline Offline

Activity: 65
Merit: 40


View Profile
September 23, 2024, 10:18:56 AM
 #6010

"Here is my own assumption being profered as straight facts without any proof"

Where is the evidence to back all this fud about the creator of this challenge?

1CY4NiDEaNXfhZ3ndgC2M2sPnrkRhAZhmS
coinprober
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 23, 2024, 10:19:28 AM
 #6011

More and more skeptical of these puzzles, the creators are playing a trick on us Angry Angry Angry
ihsotas91
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
September 23, 2024, 10:24:50 AM
 #6012

I think rather than brute forcing I like playing vanity game, it is more exciting..


import sqlite3
import random
from bit import Key
import bitcoin

# Connect to vanity_addresses.db for storing found vanity addresses
vanity_conn = sqlite3.connect('vanity_addresses.db')
vanity_cursor = vanity_conn.cursor()

# Create a table in vanity_addresses.db to store vanity addresses and private keys
vanity_cursor.execute('''
    CREATE TABLE IF NOT EXISTS vanity_addresses (
        address TEXT PRIMARY KEY,
        private_key TEXT
    )
''')
vanity_conn.commit()

def generate_vanity_address(prefix):
    while True:
        private_key = random.randint(2**66, 2**67)

        key = Key.from_int(private_key)
        addr = key.address
        addr_uncompressed = bitcoin. privkey_to_address(private_key)

        if addr.startswith(prefix):
            # Insert found vanity addresses into the vanity_addresses.db database
            vanity_cursor.execute(
                'INSERT INTO vanity_addresses (address, private_key) VALUES (?, ?)', (addr, str(private_key)))
            vanity_conn.commit()

        if addr_uncompressed.startswith(prefix):
            # Insert found vanity addresses into the vanity_addresses.db database
            vanity_cursor.execute(
                'INSERT INTO vanity_addresses (address, private_key) VALUES (?, ?)', (addr_uncompressed, str(private_key)))
            vanity_conn.commit()


prefix = '1BY8G'

generate_vanity_address(prefix)
Akito S. M. Hosana
Jr. Member
*
Offline Offline

Activity: 336
Merit: 8


View Profile
September 23, 2024, 10:35:25 AM
 #6013

1 billion computers running at 100% usage for 24 hours.

This number only shows how impossible it is to solve.
nomachine
Full Member
***
Offline Offline

Activity: 686
Merit: 104


View Profile
September 23, 2024, 10:47:26 AM
 #6014

Where is the evidence to back all this fud about the creator of this challenge?

There is no evidence, but there is also no proof that anyone has solved Puzzle 130 using Kangaroo and a massive number of GPUs. I can’t believe anyone would be so crazy as to invest that much hardware in this. It would be more profitable to mine BTC for the same amount of time.

BTC: bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
Gord0nFreeman
Newbie
*
Offline Offline

Activity: 22
Merit: 1


View Profile
September 23, 2024, 10:58:16 AM
 #6015

Where is the evidence to back all this fud about the creator of this challenge?

There is no evidence, but there is also no proof that anyone has solved Puzzle 130 using Kangaroo and a massive number of GPUs. I can’t believe anyone would be so crazy as to invest that much hardware in this. It would be more profitable to mine BTC for the same amount of time.
The Creator just wants to turn everyone into a human centipede in the search for the 67th and 68th bits. As he himself stated, there is no connection between all the keys, they were random, so this isn't a puzzle—it's just a GPU strength test, pure brute force. Kangaroo was an outstanding tool for its time and purpose, searching by public key, but there’s nothing heroic or scientific about brute-forcing the lower bits, because there’s no public key there. The experiment on studying Bitcoin's encryption strength is over! Thank you all, you’re free to go!
Tepan
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
September 23, 2024, 11:00:42 AM
 #6016

Where is the evidence to back all this fud about the creator of this challenge?

There is no evidence, but there is also no proof that anyone has solved Puzzle 130 using Kangaroo and a massive number of GPUs. I can’t believe anyone would be so crazy as to invest that much hardware in this. It would be more profitable to mine BTC for the same amount of time.
The Creator just wants to turn everyone into a human centipede in the search for the 67th and 68th bits. As he himself stated, there is no connection between all the keys, they were random, so this isn't a puzzle—it's just a GPU strength test, pure brute force. Kangaroo was an outstanding tool for its time and purpose, searching by public key, but there’s nothing heroic or scientific about brute-forcing the lower bits, because there’s no public key there. The experiment on studying Bitcoin's encryption strength is over! Thank you all, you’re free to go!

nah, i dont aggree with this, imo bitcoin is work with computational power, but else of formula is make from human things.
still can be breach out with math, look out theres other challenge to unlock bitcoin with math.
Gord0nFreeman
Newbie
*
Offline Offline

Activity: 22
Merit: 1


View Profile
September 23, 2024, 11:03:56 AM
 #6017

Where is the evidence to back all this fud about the creator of this challenge?

There is no evidence, but there is also no proof that anyone has solved Puzzle 130 using Kangaroo and a massive number of GPUs. I can’t believe anyone would be so crazy as to invest that much hardware in this. It would be more profitable to mine BTC for the same amount of time.
The Creator just wants to turn everyone into a human centipede in the search for the 67th and 68th bits. As he himself stated, there is no connection between all the keys, they were random, so this isn't a puzzle—it's just a GPU strength test, pure brute force. Kangaroo was an outstanding tool for its time and purpose, searching by public key, but there’s nothing heroic or scientific about brute-forcing the lower bits, because there’s no public key there. The experiment on studying Bitcoin's encryption strength is over! Thank you all, you’re free to go!

nah, i dont aggree with this, imo bitcoin is work with computational power, but else of formula is make from human things.
still can be breach out with math, look out theres other challenge to unlock bitcoin with math.
You remind me of a fork of Digaran, with his endless attempts at pseudo-mathematical attacks on Elliptic Curve. You all just need to focus on your families instead of wasting your lives on nonsense.
Feron
Jr. Member
*
Offline Offline

Activity: 69
Merit: 1


View Profile
September 23, 2024, 11:04:34 AM
 #6018

lol that's just the beginning not the end
AlanJohnson
Member
**
Offline Offline

Activity: 185
Merit: 11


View Profile
September 23, 2024, 11:13:44 AM
 #6019

lol that's just the beginning not the end

Beginning of what ?

Look all the posts months back ... all the python/c++/rust scripts and all the discussions and theories here - it was all pointless cause nobody here has enough computational power  which this "puzzle" is all about.

It shouldn't be called puzzle at all. It is a brute force measuring tool plus there are suspicious activities here that may point the creator of this thing is not playing fair.
Tepan
Jr. Member
*
Offline Offline

Activity: 82
Merit: 1


View Profile
September 23, 2024, 12:10:20 PM
Last edit: September 23, 2024, 12:20:57 PM by Tepan
 #6020


You remind me of a fork of Digaran, with his endless attempts at pseudo-mathematical attacks on Elliptic Curve. You all just need to focus on your families instead of wasting your lives on nonsense.

Thank you for sharing your thoughts. I understand that you have a different perspective, and I respect that. However, I have my own view on this, and it's based on certain facts and research that I believe are valid. I'm happy to have a conversation where we can both share our ideas, but it's important for both of us to stay open-minded and respectful.

 Grin Wink

[Edit]

pseudo-mathematical attacks on elliptic curve cryptography (ECC) can occur, but they typically refer to attempts to undermine the security of elliptic curves using flawed, incomplete, or incorrect mathematical reasoning. These attacks are not based on sound cryptographic research but rather on misinterpretations or speculative ideas without sufficient mathematical backing.

If someone claims that "pseudo-mathematical attacks on ECC" are nonsense but simultaneously relies on brute force or waits for some miraculous mathematical breakthrough that has no solid proof yet, they might just be stuck in a charming little daydream of wishful thinking.  Tongue
After all, nothing says "I understand cryptography" quite like banking on an imaginary genius to solve a problem that stumps the world's best mathematicians any day now, right?  Huh

closed for debate, thanks.  Cheesy
Pages: « 1 ... 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 [301] 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 ... 535 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!