Bitcoin Forum
April 27, 2024, 12:56:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 »
  Print  
Author Topic: ARG Puzzle with 3.5 BTC Private Key Prize, Game Over  (Read 99433 times)
Timmmaahh
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
July 06, 2014, 03:52:43 PM
 #2081

0 = 0A = 10BABYA = 36WOW?

On the original image....
0 is the starting point, 0 = A, capital a, 10 characters is a baby a (cute Smiley)
Above that there is also the letters 3 6 w o w.......
Wonder what that means.... Huh

im braining on this but no way Cheesy

Crowdfund a students life: 1MxQX4MsF3N3oGpawfgM72K5vzEPeLjTyR
1714179365
Hero Member
*
Offline Offline

Posts: 1714179365

View Profile Personal Message (Offline)

Ignore
1714179365
Reply with quote  #2

1714179365
Report to moderator
1714179365
Hero Member
*
Offline Offline

Posts: 1714179365

View Profile Personal Message (Offline)

Ignore
1714179365
Reply with quote  #2

1714179365
Report to moderator
1714179365
Hero Member
*
Offline Offline

Posts: 1714179365

View Profile Personal Message (Offline)

Ignore
1714179365
Reply with quote  #2

1714179365
Report to moderator
Whoever mines the block which ends up containing your transaction will get its fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714179365
Hero Member
*
Offline Offline

Posts: 1714179365

View Profile Personal Message (Offline)

Ignore
1714179365
Reply with quote  #2

1714179365
Report to moderator
1714179365
Hero Member
*
Offline Offline

Posts: 1714179365

View Profile Personal Message (Offline)

Ignore
1714179365
Reply with quote  #2

1714179365
Report to moderator
1714179365
Hero Member
*
Offline Offline

Posts: 1714179365

View Profile Personal Message (Offline)

Ignore
1714179365
Reply with quote  #2

1714179365
Report to moderator
S4VV4S
Hero Member
*****
Offline Offline

Activity: 1582
Merit: 502


View Profile
July 06, 2014, 03:56:50 PM
 #2082

0 = 0A = 10BABYA = 36WOW?

On the original image....
0 is the starting point, 0 = A, capital a, 10 characters is a baby a (cute Smiley)
Above that there is also the letters 3 6 w o w.......
Wonder what that means.... Huh

im braining on this but no way Cheesy

Yeah I found it weird too....

I can't figure out what it means though....
micaman
Sr. Member
****
Offline Offline

Activity: 345
Merit: 500



View Profile WWW
July 06, 2014, 04:07:17 PM
 #2083

http://www.prometheusforum.net/discussion/178/prometheus-viral-mystery-1-solved/p1
Gatekeeper
Sr. Member
****
Offline Offline

Activity: 358
Merit: 250


View Profile
July 06, 2014, 04:12:17 PM
Last edit: July 06, 2014, 04:31:18 PM by Gatekeeper
 #2084

OP again , but nothing we don't already know

1) 0=0 A=10 a=36
2) 6EQUJ5
3) z69JZqlJn862D1ndx7oLVEMmVOlP1zewEeUCrsI7Roahzpeny7P

we know it's base64 code
OP said "No sha or hash needed"

would also indicate that the squigly lines we added in don't really have anything to do with it.

(1470) <KLYE> But I was far too drunk to fuck a midget
(1470) <KLYE> I will fuck a chicken for 250 btc
mtgox555
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 06, 2014, 04:23:50 PM
 #2085

Yea. that hint doesn't help me at all. That is where i have been all along.
6142630195 and
6106091935524719490806021301493959075021311422483100472501614058144030125354180 72750364361514049600725
or
6169193552471949862131493959750213114224831047251614058144030125354187275036436 151404960725

depending on if you use 6=06 or 6=6
micaman
Sr. Member
****
Offline Offline

Activity: 345
Merit: 500



View Profile WWW
July 06, 2014, 04:43:59 PM
 #2086

Tried to shift uppercase by 10, lowercase by 36, and no shift on numbers. Nothing.
alphabetacanary
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
July 06, 2014, 05:16:48 PM
 #2087

Guys, I believe it's a shift of the original text.
Each character is shifted within the 62 character alphabet described by Crops clue.  
The amount to shift is given by the WOW signal characters.  

This program, for example transforms the "z69JZ..." string into
5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp

Notice how the first two characters changed to 5K ? That's what private keys start with.  However, the answer I get doesn't transform into a valid private key since the checksum doesn't match.  I'm posting my program in the hopes someone else has a better variation.  I just want this thing over...

Code:
#include <stdio.h>
#include <string.h>

char* alph = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

int idxof(char c, char* alphabet) {
    int i;
    for (i=0;i<strlen(alphabet);i++){
        if (alphabet[i] == c) { return i; }
    }
    return -1;
}

main()
{
    char* s = "z69JZqlJn862D1ndx7oLVEMmVOlP1zewEeUCrsI7Roahzpeny7P";
    char* p = "6EQUJ5";

    int i =0;
    int n;
    while (i < strlen(s)) {
        int n = idxof(s[i],alph);
        int v = idxof(p[i%strlen(p)],alph);
        v=(v+n) % 62;
        printf ("%c",alph[v]);
        i++;
    }
    printf ("\n");
}

EDIT: I believe there is either more after the 6EQUJ5 or the algorithm is slightly off.  Remember, if you are trying variations of the 'p' string, you must only use characters from the alphabet.  So no punctuation or spaces.
moinen
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
July 06, 2014, 05:25:41 PM
 #2088

This program, for example transforms the "z69JZ..." string into
5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp

Notice how the first two characters changed to 5K ? That's what private keys start with.  However, the answer I get doesn't transform into a valid private key since the checksum doesn't match.  I'm posting my program in the hopes someone else has a better variation.  I just want this thing over...
I was just going to post the exact same findings, except that at my end, I got the same key and it does convert to a public key. Namely, 1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5. It made my heart jump when I found it, but it is, alas, empty.
arg
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 06, 2014, 05:27:04 PM
 #2089

Code:
echo -n "5KZns" | openssl dgst -sha256
b2a950ff612a89d7fd2effa6d75acced098d9d141a559029629080c092aedf14


Yep. That's what I came up with. You can't get a sane private key out of it.

I think this is right, I don't know why it doesn't give the correct key though.


I was just going to post the exact same findings, except that at my end, I got the same key and it does convert to a public key.

It doesn't, it's not valid base58.
moinen
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
July 06, 2014, 05:34:03 PM
 #2090

I was just going to post the exact same findings, except that at my end, I got the same key and it does convert to a public key.

It doesn't, it's not valid base58.
Oh, it imports fine on blockchain.com though. Maybe it is one of those other wallet import formats that it is defaulting to.
mtgox555
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 06, 2014, 05:34:41 PM
 #2091

I did the exact same thing and was very disappointed that it didn't work.
5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp is wrong though. This is the correct one albeit still not the answer:
5KZnsvrXDcP7JFD7GCuZvifrbEBtK4kAe8nHx6ibktgvPJxs4Lp

You are wrong Gatekeeper. For reference the reason why it does get imported is here:
http://gobittest.appspot.com/PrivateKey
play around with it a bit.
Gatekeeper
Sr. Member
****
Offline Offline

Activity: 358
Merit: 250


View Profile
July 06, 2014, 05:35:05 PM
 #2092


5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp  should be a valid private key. It doesn't include a zero, capital o, capital i or lowercase L.
it is the key for 1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5 according to blockchain

(1470) <KLYE> But I was far too drunk to fuck a midget
(1470) <KLYE> I will fuck a chicken for 250 btc
arg
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 06, 2014, 05:35:54 PM
 #2093



5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp  should be a valid private key. It doesn't include a zero, capital o, capital I or lowercase l.
it is the key for 1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5 according to blockchain

The checksum doesn't verify though. It's called base58check because it has a checksum.
Gatekeeper
Sr. Member
****
Offline Offline

Activity: 358
Merit: 250


View Profile
July 06, 2014, 05:37:49 PM
 #2094



5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp  should be a valid private key. It doesn't include a zero, capital o, capital I or lowercase l.
it is the key for 1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5 according to blockchain

The checksum doesn't verify though.

blockchain seems to think it does
https://blockchain.info/address/1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5

(1470) <KLYE> But I was far too drunk to fuck a midget
(1470) <KLYE> I will fuck a chicken for 250 btc
alphabetacanary
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
July 06, 2014, 05:45:06 PM
 #2095



5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp  should be a valid private key. It doesn't include a zero, capital o, capital I or lowercase l.
it is the key for 1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5 according to blockchain

The checksum doesn't verify though.

blockchain seems to think it does
https://blockchain.info/address/1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5

The public address generated from the 32 bytes within the base 58 string we found (after the 0x80 byte) will obviously be valid.  But the point is, the private key we find (in base 58 format) is not valid since the checksum bytes aren't correct.  So the transformation is a bit off I think.

Again, I think there is either more to the shifting key or the algorithm is a bit off.
arg
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 06, 2014, 05:45:22 PM
 #2096



5KZnsvrXDcP7JFD7GCuZvifrbcBtK4kAe8nHx6ibktgvPJxs4Lp  should be a valid private key. It doesn't include a zero, capital o, capital I or lowercase l.
it is the key for 1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5 according to blockchain

The checksum doesn't verify though.

blockchain seems to think it does
https://blockchain.info/address/1nchRAYGJofxyrkuhbL1CGYtD5x8Lowi5

The private keys people came up with are wrong. The chance of typing in random characters starting with 5 and getting a valid key are one in 2^32. It's not going to happen to anybody ever. Blockchain.info's wallet is just shit and ignores the checksum by the looks of things.

Prediction:

Code:
016982cea2101f1126034ecb8572e949604054bbb571d4e1b736b10ccee9c9ea
Gatekeeper
Sr. Member
****
Offline Offline

Activity: 358
Merit: 250


View Profile
July 06, 2014, 05:49:09 PM
 #2097

that imports as
https://blockchain.info/address/1MtR9nBGfWBLY23q4dRGRjjzBBiEdxRmC3

if they are not valid addresses then that is a fatal flaw in the blockchain because it's showing as a valid address and you could send coins there

If you edit the address it comes back as checksum not valid, so it clearly does check the addresses and says that this one is valid. If it's not then blockchain is fucked

eg:
https://blockchain.info/address/1MtR9nBGfWBLY23q4dRGRjjzBBiEdxRmC2 is not valid (change 3 to 2 at end)

(1470) <KLYE> But I was far too drunk to fuck a midget
(1470) <KLYE> I will fuck a chicken for 250 btc
arg
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 06, 2014, 05:51:26 PM
Last edit: July 07, 2014, 02:49:37 AM by arg
 #2098

that imports as
https://blockchain.info/address/1MtR9nBGfWBLY23q4dRGRjjzBBiEdxRmC3

if they are not valid addresses then that is a fatal flaw in the blockchain because it's showing as a valid address and you could send coins there

If you edit the address it comes back as checksum not valid, so it clearly does check the addresses and says that this one is valid. If it's not then blockchain is fucked then

 If you could import that invalid private key to begin with, blockchain.info is not verifying checksums properly. It's invalid, end of story. The address checksum is a different matter, you can have an address but no matching private key.
ooxtcoo
Sr. Member
****
Offline Offline

Activity: 644
Merit: 250



View Profile
July 06, 2014, 05:54:49 PM
 #2099

L4rK1yDtCWekvXuE6oXD9jCYfFNV2cWRpVuPLBcCU2z8TrisoyY1


this private key have 24 transactions but 0 btc on it!

got to this adress: 1F3sAm6ZtwLAUnj7d38pGFxtP3RVEvtsbV
itod
Legendary
*
Offline Offline

Activity: 1974
Merit: 1075


^ Will code for Bitcoins


View Profile
July 06, 2014, 05:56:14 PM
 #2100

that imports as
https://blockchain.info/address/1MtR9nBGfWBLY23q4dRGRjjzBBiEdxRmC3

if they are not valid addresses then that is a fatal flaw in the blockchain because it's showing as a valid address and you could send coins there

If you edit the address it comes back as checksum not valid, so it clearly does check the addresses and says that this one is valid. If it's not then blockchain is fucked

eg:
https://blockchain.info/address/1MtR9nBGfWBLY23q4dRGRjjzBBiEdxRmC2 is not valid (change 3 to 2 at end)

This is not true, there are extremely large number of BTC address that no private key hashes to. If private key (WIF) checksum is wrong, no decent wallet should import it. For instance look at this BTC address:
https://blockchain.info/address/1BitcoinEaterAddressDontSendf59kuE
You can send money to it, but you can never retrieve coins from it. There are thousands of transactions like that in the blockchain.
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 »
  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!