Title: Private key for address with 5 BTC. Post by: cuddlefish on July 19, 2011, 09:17:30 AM For each 0.025 BTC that shows up at 1NFXQfoqGJBNuEXMSYJwUYGt5bJF6jbFrg past the date of this post, I will reveal a random digit (as shown by Python's random.randint(), seeded with the post number.) of the key.
It's in PEM format. -----BEGIN EC PRIVATE KEY----- **************************************************************** ****************/*********************************************** ******************************== -----END EC PRIVATE KEY----- As an extra wrinkle, I'll give you the sha256 hash of the private key, for your bruteforcing pleasure. >>> hashlib.sha256(data).hexdigest() '0d2c8b5e5aa8ed0b2c10ad8d0940ee24e5df5e48160fe09b31efeaa8e72f6083' This is the hash of ONLY the inner part (not ---BEGIN EC PRIVATE KEY--- or ---END EC PRIVATE KEY---) There are no newlines at the ends, only between lines. Title: Re: Private key for address with 5 BTC. Post by: cuddlefish on July 19, 2011, 09:18:47 AM Oh, the address with the 5 BTC is 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok
Title: Re: Private key for address with 5 BTC. Post by: anthony_ on July 20, 2011, 03:49:25 AM Sent 0.1BTC for the first four characters to get things started.
http://blockexplorer.com/tx/5bc74811af3886fbb4ef551fa6e28cabe02ee8470559bcbbebf155c858aae361 Title: Re: Private key for address with 5 BTC. Post by: cuddlefish on July 20, 2011, 05:22:09 AM Sent 0.1BTC for the first four characters to get things started. http://blockexplorer.com/tx/5bc74811af3886fbb4ef551fa6e28cabe02ee8470559bcbbebf155c858aae361 >>> random.seed(3) >>> for i in range(4): print random.randint(1, len(data)) ... 39 89 60 98 >>> for i in range(4): print r[random.randint(1, len(data))] ... f 7 C 0 Title: Re: Private key for address with 5 BTC. Post by: anthony_ on July 20, 2011, 06:49:59 AM Sent 0.1BTC for the first four characters to get things started. http://blockexplorer.com/tx/5bc74811af3886fbb4ef551fa6e28cabe02ee8470559bcbbebf155c858aae361 >>> random.seed(3) >>> for i in range(4): print random.randint(1, len(data)) ... 39 89 60 98 >>> for i in range(4): print r[random.randint(1, len(data))] ... f 7 C 0 Title: Re: Private key for address with 5 BTC. Post by: Maged on July 20, 2011, 07:11:54 AM Sent 0.1BTC for the first four characters to get things started. http://blockexplorer.com/tx/5bc74811af3886fbb4ef551fa6e28cabe02ee8470559bcbbebf155c858aae361 >>> random.seed(3) >>> for i in range(4): print random.randint(1, len(data)) ... 39 89 60 98 >>> for i in range(4): print r[random.randint(1, len(data))] ... f 7 C 0 >>> random.seed(3) >>> for i in range(4): print random.randint(1, 162) ... 39 89 60 98 >>> for i in range(4): print random.randint(1, 162) ... 102 11 3 136 Title: Re: Private key for address with 5 BTC. Post by: cuddlefish on July 20, 2011, 02:19:23 PM Ooops.
>>> random.seed(3) >>> for i in range(4): e = random.randint(1, len(r)); print e; print r[e-1] ... 39 e 89 4 60 B 98 4 >>> Title: Re: Private key for address with 5 BTC. Post by: anthony_ on July 20, 2011, 08:49:17 PM Ooops. >>> random.seed(3) >>> for i in range(4): e = random.randint(1, len(r)); print e; print r[e-1] ... 39 e 89 4 60 B 98 4 >>> it appears we get the first 8 digits then =P Title: Re: Private key for address with 5 BTC. Post by: cuddlefish on July 21, 2011, 02:14:27 AM Ooops. >>> random.seed(3) >>> for i in range(4): e = random.randint(1, len(r)); print e; print r[e-1] ... 39 e 89 4 60 B 98 4 >>> it appears we get the first 8 digits then =P No, those are the 0-indexed positions. Title: Re: Private key for address with 5 BTC. Post by: anthony_ on July 21, 2011, 05:05:23 AM Ooops. >>> random.seed(3) >>> for i in range(4): e = random.randint(1, len(r)); print e; print r[e-1] ... 39 e 89 4 60 B 98 4 >>> it appears we get the first 8 digits then =P No, those are the 0-indexed positions. We already got the next 4 numbers for that seed as-well is what i'm saying ;) Title: Re: Private key for address with 5 BTC. Post by: mc_lovin on July 21, 2011, 09:06:22 PM interesting little game.
Title: Re: Private key for address with 5 BTC. Post by: PawGo on April 23, 2022, 05:05:04 PM ho ho ho
What a puzzle ;) 11 year old. I see owner was not active during last 4 years - strange that coins are still there. It gives known part: Code: MHQCAQEEI**7***************************e************oAcGBSuBBAAKoUQDQgAE********/********4*******4****f*********************************0*********************== so it is rather not possible to bruteforce for a given hash... Title: Re: Private key for address with 5 BTC. Post by: Seraphimjm on April 23, 2022, 05:13:52 PM Would have probably taken the coins sent to reveal and up to the point where it was almost easily solvable just move the coins then declare found/solved.
classic raffle ticket scheme with a little slight of hand. The first 0.1btc sent was the bait, but there were no fish... ;D Title: Re: Private key for address with 5 BTC. Post by: paapa1268 on April 01, 2024, 11:44:33 AM ho ho ho What a puzzle ;) 11 year old. I see owner was not active during last 4 years - strange that coins are still there. It gives known part: Code: MHQCAQEEI**7***************************e************oAcGBSuBBAAKoUQDQgAE********/********4*******4****f*********************************0*********************== so it is rather not possible to bruteforce for a given hash... the only solution is to use the same version script he used and repeate process until got hit the version used by him can be seen https://lapo.it/asn1js decoder see his other post he posted random pem key decode using above mention site and in option it will give all version info used Title: Re: Private key for address with 5 BTC. Post by: Bill buffalo on July 18, 2024, 06:09:37 PM So you mean to tell me if you have the full private key of this string below MHQCAQEEI**7***************************e************oAcGBSuBBAAKoUQDQgAE********/********4*******4****f*********************************0*********************== if you can find it complete it will give access to this btc address 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok that contains 5 BTC are you serious about this?
Title: Re: Private key for address with 5 BTC. Post by: examplens on July 27, 2024, 10:33:14 AM So you mean to tell me if you have the full private key of this string below MHQCAQEEI**7***************************e************oAcGBSuBBAAKoUQDQgAE********/********4*******4****f*********************************0*********************== if you can find it complete it will give access to this btc address 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok that contains 5 BTC are you serious about this? always check first a time when the thread is open. For example, this was launched in 2011, 13 years ago, it is unlikely that the OP is still current with this offer. it seems that there is no free money here Title: Re: Private key for address with 5 BTC. Post by: Bill buffalo on July 27, 2024, 11:56:38 AM The private key if found gives access to this BTC addres
s 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok which contains 5btc if that isn't free money what is? Title: Re: Private key for address with 5 BTC. Post by: apogio on July 30, 2024, 08:23:32 PM Warning!
Back in the day, yeah, 0.025 BTC was not a lot! But I will leave my post here, in case any new member thinks this post is still active! DON'T engage with this puzzle game! Don't send coins to any address mentioned in the OP. Basically OP is asking for money, so this is not acceptable! All the puzzle games so far don't ask anything in return! There are too many ways to get scammed with this. 1. OP doesn't have a sufficient amount of merit, nor a lot of trust. Even if they did, again, it would be very irresponsible to participate in a game like this. 2. The address 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok has indeed 5 BTC, but the OP didn't provide a signed message from this address, so we are not sure they hold the keys to unlock them. 3. New members may get scammed, thinking this post is still active and sending coins to the address mentioned there. @Mods: I suggest that you remove the address from the OP... You never know if anyone is silly enough to send coins to this address. Title: Re: Private key for address with 5 BTC. Post by: BlackHatCoiner on August 02, 2024, 04:01:55 PM There are two things strange in this topic, and honestly, I don't know which one is stranger.
The most plausible scenario, given this information, is that the OP has no access to the 5 BTC. They funded an address which might have been created using a custom script, and which was later discovered it was flawed. There are many examples, similar to that, where people did testings in bitcoin mainnet and lost access to their coins forever. Title: Re: Private key for address with 5 BTC. Post by: ABCbits on August 03, 2024, 11:14:39 AM
I would speculate 2013 or older. OpenSSL was popular library, before secp256k1 library created since late 2013. It's so popular that someone made bounty to convert PEM public key to Bitcoin address, https://bitcointalk.org/index.php?topic=2631.0 (https://bitcointalk.org/index.php?topic=2631.0).
Or OP lost access to that address, since BTC in 2011 wasn't that valuable. Title: Re: Private key for address with 5 BTC. Post by: SamReomo on August 03, 2024, 11:53:01 AM The most plausible scenario, given this information, is that the OP has no access to the 5 BTC. I agree with you, I also believe that OP no longer has access to that wallet or has lost it somehow and those who still believe that they can solve the puzzle to earn 5 BTC should read your post at least. I suggest everyone to be careful as there's no chance to get anything from this puzzle anymore.Title: Re: Private key for address with 5 BTC. Post by: examplens on August 04, 2024, 10:17:18 PM The private key if found gives access to this BTC addres Here you can find all addresses that have balances https://bitcointalk.org/index.php?topic=5254914.0s 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok which contains 5btc if that isn't free money what is? If you find private keys from all of them, you will have a lot of Bitcoins. A rare opportunity with so much free money, isn't it? |