Bitcoin Forum
May 09, 2024, 03:45:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Private key for address with 5 BTC.  (Read 3303 times)
cuddlefish (OP)
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 19, 2011, 09:17:30 AM
Last edit: July 19, 2011, 09:28:05 AM by cuddlefish
 #1

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.

1715226321
Hero Member
*
Offline Offline

Posts: 1715226321

View Profile Personal Message (Offline)

Ignore
1715226321
Reply with quote  #2

1715226321
Report to moderator
Even if you use Bitcoin through Tor, the way transactions are handled by the network makes anonymity difficult to achieve. Do not expect your transactions to be anonymous unless you really know what you're doing.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715226321
Hero Member
*
Offline Offline

Posts: 1715226321

View Profile Personal Message (Offline)

Ignore
1715226321
Reply with quote  #2

1715226321
Report to moderator
1715226321
Hero Member
*
Offline Offline

Posts: 1715226321

View Profile Personal Message (Offline)

Ignore
1715226321
Reply with quote  #2

1715226321
Report to moderator
cuddlefish (OP)
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 19, 2011, 09:18:47 AM
 #2

Oh, the address with the 5 BTC is 1HqtKWKCLTs4eUuvTDPpJC4AaBYMiiXWok
anthony_
Member
**
Offline Offline

Activity: 65
Merit: 10


View Profile
July 20, 2011, 03:49:25 AM
 #3

Sent 0.1BTC for the first four characters to get things started.
http://blockexplorer.com/tx/5bc74811af3886fbb4ef551fa6e28cabe02ee8470559bcbbebf155c858aae361
cuddlefish (OP)
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 20, 2011, 05:22:09 AM
 #4

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
anthony_
Member
**
Offline Offline

Activity: 65
Merit: 10


View Profile
July 20, 2011, 06:49:59 AM
 #5

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

from that output it doesn't show that you type random.seed the second time, so it would have continued from the last point in the PRNG and the f 7 C 0 would be wrong
Maged
Legendary
*
Offline Offline

Activity: 1204
Merit: 1015


View Profile
July 20, 2011, 07:11:54 AM
Last edit: July 20, 2011, 07:54:08 PM by Maged
 #6

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

from that output it doesn't show that you type random.seed the second time, so it would have continued from the last point in the PRNG and the f 7 C 0 would be wrong
If that's true, then this should be the correct assignment...

>>> 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

cuddlefish (OP)
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 20, 2011, 02:19:23 PM
 #7

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
>>>
anthony_
Member
**
Offline Offline

Activity: 65
Merit: 10


View Profile
July 20, 2011, 08:49:17 PM
 #8

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
cuddlefish (OP)
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 21, 2011, 02:14:27 AM
 #9

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.
anthony_
Member
**
Offline Offline

Activity: 65
Merit: 10


View Profile
July 21, 2011, 05:05:23 AM
 #10

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 Wink
mc_lovin
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000


www.bitcointrading.com


View Profile WWW
July 21, 2011, 09:06:22 PM
 #11

interesting little game.
PawGo
Legendary
*
Offline Offline

Activity: 952
Merit: 1367


View Profile
April 23, 2022, 05:05:04 PM
 #12

ho ho ho
What a puzzle Wink 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...
Seraphimjm
Newbie
*
Offline Offline

Activity: 12
Merit: 5


View Profile
April 23, 2022, 05:13:52 PM
Merited by PawGo (1)
 #13

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...  Grin
paapa1268
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
April 01, 2024, 11:44:33 AM
 #14

ho ho ho
What a puzzle Wink 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
Pages: [1]
  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!