Pages:
Author

Topic: Ok, here's a 1BTC puzzle. - page 4. (Read 14334 times)

newbie
Activity: 12
Merit: 5
July 13, 2019, 07:41:24 AM
Hi Tsuyugushi, with that software for this puzzle need internet connection to find the key if put correct words? And will show a message when private key is found?

Hey friend,

I'm not sure as I am not the author of the software, Ligor is (you'll find his post on Pg 17 of this thread). IMHO, yes, it requires an internet connection, and will display a message if the private key is found. You might want to verify with Ligor how it works specifically.
hero member
Activity: 1414
Merit: 516
July 12, 2019, 03:02:05 PM
Hi Tsuyugushi, with that software for this puzzle need internet connection to find the key if put correct words? And will show a message when private key is found?
member
Activity: 99
Merit: 13
July 12, 2019, 09:06:47 AM
I’ve been looking at this a different way. What if the question’s anagram solution isn’t really leading to that being the private key. What if it is a guide toward the key? There are words like “obtain” and “key” that can be extracted. Similar bitcoin related words like “hash” and “satohash”, “combo” “name(s)” etc. I wonder..
newbie
Activity: 12
Merit: 5
July 09, 2019, 10:28:06 AM
Latest solution tried:

For some reason I felt like the answer was hidden in the question, so I did the following.

Step 1: Assign each word a number based on the length of its characters.

Why = 3
The = 3
Comb = 4
Of = 2
Natasha/Satoshi = 7
Otomoski/Nakamoto = 8
Has = 3
21 = 2
Teeth= 5
? = not a word
. = not a word
txt = ignore for this solution (assumed it was to throw us off maybe).

Step 2: Take this number list (3, 3, 4, 2 ,7 ,8, 3, 2, 5) and run it through some python code to get all the possible combinations that amount to 32 characters.

Code:
import itertools
numbers = [3, 3, 4, 2 ,7 ,8, 3, 2, 5]
result = [seq for i in range(len(numbers), 0, -1) for seq in itertools.combinations(numbers, i) if sum(seq) == 32]
print result

Step 3: Read results to find that only 1 combination consists of 8 different numbers (i.e. words).

Code:
(3, 3, 4, 2, 7, 8, 3, 2),      <-- this one is 8 numbers therefore 8 words, to satisfy the hint "8 camel case words".
(3, 3, 4, 2, 7, 8, 5),
(3, 3, 4, 7, 8, 2, 5),
(3, 4, 2, 7, 8, 3, 5),
(3, 4, 7, 8, 3, 2, 5),
(3, 4, 2, 7, 8, 3, 5),
(3, 4, 7, 8, 3, 2, 5).

Step 4: Run the words corresponding to those numbers through the permutation solver program provided by ligor on page 17 https://github.com/Igor-san/1BtcPuzzle, once with Natasha Otomoski for numbers 7, 8, and once with Satoshi Nakamoto. 40,320 possible combinations of the words corresponding to (3, 3, 4, 2, 7, 8, 3, 2) give 32 characters, the solver program goes through them in a couple of minutes.

Step 5: No results, no key found.

Step 6: Cry.
newbie
Activity: 12
Merit: 5
July 08, 2019, 04:30:21 AM
"Why 21 million? The truth is, it was an educated guess. The math worked out, or as close to it as I had wanted it to. Before settling  on 21 million however, I had considered making 100 BTC as the reward, and 42—the answer to life, the universe, and everything. But afraid that others would consider my reference to Hitchhikers Guide to the Galaxy a quip and at the expense of not being taken seriously, I changed it to 21 million," the author writes.

In This text he say why 21 Million
But watashi-kokoto have shit solution and only and Magic to disappear  Last Active: January 19, 2019, 03:50:45 PM

He say:
my approach
start with shit solution

SheIsCombingWithTheCombFeelsGood

then you can replace "The" with "A"
fill the extra space with new words

SheIsCombingWithACombThatMagical

then you can reorder

ACombThatMagicalSheIsCombingWith

or even

AMagicalCombThatSheIsCombingWith

put back "The", change "Magical" to "Magic"

TheMagicCombThatSheIsCombingWith



This makes it a guessing game and not a riddle/puzzle at all..in which case the answer could be literally anything OPs mind conjured at the time.
newbie
Activity: 12
Merit: 0
July 07, 2019, 06:15:39 PM
"Why 21 million? The truth is, it was an educated guess. The math worked out, or as close to it as I had wanted it to. Before settling  on 21 million however, I had considered making 100 BTC as the reward, and 42—the answer to life, the universe, and everything. But afraid that others would consider my reference to Hitchhikers Guide to the Galaxy a quip and at the expense of not being taken seriously, I changed it to 21 million," the author writes.

In This text he say why 21 Million
But watashi-kokoto have shit solution and only and Magic to disappear  Last Active: January 19, 2019, 03:50:45 PM

He say:
my approach
start with shit solution

SheIsCombingWithTheCombFeelsGood

then you can replace "The" with "A"
fill the extra space with new words

SheIsCombingWithACombThatMagical

then you can reorder

ACombThatMagicalSheIsCombingWith

or even

AMagicalCombThatSheIsCombingWith

put back "The", change "Magical" to "Magic"

TheMagicCombThatSheIsCombingWith

newbie
Activity: 13
Merit: 0
July 07, 2019, 06:03:55 PM
Just tested it. The code works in Windows as well, you just need a C compiler (I downloaded GCC) and ran the results.
newbie
Activity: 12
Merit: 0
July 07, 2019, 05:52:43 PM
Cmon watashi we wait u for some reply!Are u blockladder?Or SirVladimir who fix ur code?
member
Activity: 99
Merit: 13
July 07, 2019, 01:28:02 PM
So...

You know how Watashi linked into a github repo by movedon2otherthings that included code for a tool called Satohash?

Yeah...the code didn't work.

BUT I FIXED IT!

There were absolutely no declarations in the header file to match the definitions.

https://github.com/jajorda2/satohash

You just need to compile in terminal:

Code:
gcc satohash.c hash.h -o run

You can then follow the example instructions in the readme.md.

Code:
./run
to execute whatever you're trying to do.



DISCLAIMER

I do not know if this has anything to do with the puzzle. I've converted a number of phrases this way into sha256 private keys, converted them to WIF, and no glorious "179..."


Enjoy Cheesy
full member
Activity: 250
Merit: 109
July 06, 2019, 08:15:30 PM
In general, so, there is some kind of healthy logic! all that is connected with this riddle. a ton of information. which I read and rechecked in 2 weeks! on different topics! It is not even clear how a private key is obtained. and each of the probable answers has to be transferred through different systems and thus you get a different key, respectively !!! Not very informative (Given) this question! Abstract! 8 words 32 characters without special ... the digit is not a special character but it is not specified that it can be used! Generally from where do I know that this is not just the author’s backup wallet, from where he will withdraw this amount on a rainy day. Does a private key have any relation to the task at all? )))) Grin Grin Grin Grin Grin Grin Grin Huh




After looking at watashi's post they do seem like the same person. her post before this thread was about reversing something multiple ways until they all reach the same point. maybe its related to that


and the 2nd post to this thread shows a possible way to decrypt a piece of it.  so maybe you need to follow the steps done to decrypt that for the entire message.


Also on the first page she provides a solution on how to get the key.


i'm not a 100% sure they're the same person but assuming it is you would have alot of information to go on.
newbie
Activity: 9
Merit: 0
July 06, 2019, 09:55:20 AM
In general, so, there is some kind of healthy logic! all that is connected with this riddle. a ton of information. which I read and rechecked in 2 weeks! on different topics! It is not even clear how a private key is obtained. and each of the probable answers has to be transferred through different systems and thus you get a different key, respectively !!! Not very informative (Given) this question! Abstract! 8 words 32 characters without special ... the digit is not a special character but it is not specified that it can be used! Generally from where do I know that this is not just the author’s backup wallet, from where he will withdraw this amount on a rainy day. Does a private key have any relation to the task at all? )))) Grin Grin Grin Grin Grin Grin Grin Huh

newbie
Activity: 12
Merit: 5
July 03, 2019, 01:10:16 AM
I was thinking.. 8 words 32 char....
an average of 4 letter per word....
it reminds me of the BIP39 wordlist... where all words have 4 significant letters (some only 3)

Maybe the question refers to that list somehow...?
there are 8 words in the question (not counting "?", "21", ".txt" )

I'm trying some COMB-inations.. so far nothing ...


The answer might not be part of the BIP39 wordlist at all. If OP just created a custom sentence in Brainwallet to fit the puzzle, it would invalidate bruteforcing with the BIP39 list.
member
Activity: 99
Merit: 13
July 02, 2019, 04:01:02 PM
To further the connection between Blockladder and watashi-kokoto:






They both have yahoo.co.jp addresses if that means anything to you. Blockladders PGP sig on github reveals his email.

Maybe they're both japanese?  Grin Grin Grin
newbie
Activity: 17
Merit: 0
July 02, 2019, 10:21:58 AM
I was thinking.. 8 words 32 char....
an average of 4 letter per word....
it reminds me of the BIP39 wordlist... where all words have 4 significant letters (some only 3)

Maybe the question refers to that list somehow...?
there are 8 words in the question (not counting "?", "21", ".txt" )

I'm trying some COMB-inations.. so far nothing ...
member
Activity: 99
Merit: 13
July 02, 2019, 07:48:28 AM
blockladder / watashi-kokoto GitHub connection

Looking at blockladder's "project pr" forks, there is a user called bakujo. Not much by itself, but they are following one and only person: our watashikokoto.
blockladder and watashi are perhaps close friends.

https://bitcointalksearch.org/topic/satohash-cryptographic-key-derivation-function-2044123

Satohash seems like a commonly followed repository between them all on Github.

I mean, there are several possibilities here. It could be that OP expects us to input a 32 (i.e. 32 bytes = 256bit) char english worded answer, convert it to private key through some algorithm like the one in the link.

It could also be that OP is simply referring to an 8 word 32 char answer to be input into a brainwallet checker right away.

It could be that the answer to the question leads to a second clue that will contain the private key.

Who knows?

Forget using the code in the repository. There's no .cpp file (which I am not skilled enough to compose) so gcc won't compile it--the header file contains undefined references.
newbie
Activity: 12
Merit: 5
July 01, 2019, 11:35:59 PM
blockladder / watashi-kokoto GitHub connection

Looking at blockladder's "project pr" forks, there is a user called bakujo. Not much by itself, but they are following one and only person: our watashikokoto.
blockladder and watashi are perhaps close friends.

https://bitcointalksearch.org/topic/satohash-cryptographic-key-derivation-function-2044123

Satohash seems like a commonly followed repository between them all on Github.

I mean, there are several possibilities here. It could be that OP expects us to input a 32 (i.e. 32 bytes = 256bit) char english worded answer, convert it to private key through some algorithm like the one in the link.

It could also be that OP is simply referring to an 8 word 32 char answer to be input into a brainwallet checker right away.

It could be that the answer to the question leads to a second clue that will contain the private key.

Who knows?
newbie
Activity: 12
Merit: 5
July 01, 2019, 11:26:17 PM
Be a poetist, please...

I mean: the title of the clue "WhyTheCombOfNatashaOtomoskiHas21Teeth?.txt" is a poem. C'mon! Use the rhymes...

You make it sound like you know the solution lol
member
Activity: 99
Merit: 13
July 01, 2019, 06:34:03 PM
blockladder / watashi-kokoto GitHub connection

Looking at blockladder's "project pr" forks, there is a user called bakujo. Not much by itself, but they are following one and only person: our watashikokoto.
blockladder and watashi are perhaps close friends.

https://bitcointalksearch.org/topic/satohash-cryptographic-key-derivation-function-2044123

Satohash seems like a commonly followed repository between them all on Github.
newbie
Activity: 13
Merit: 0
July 01, 2019, 05:19:19 PM
blockladder / watashi-kokoto GitHub connection

Looking at blockladder's "project pr" forks, there is a user called bakujo. Not much by itself, but they are following one and only person: our watashikokoto.
blockladder and watashi are perhaps close friends.
legendary
Activity: 1158
Merit: 1009
Mayuyacoin promoter.
July 01, 2019, 04:11:20 PM
Be a poetist, please...

I mean: the title of the clue "WhyTheCombOfNatashaOtomoskiHas21Teeth?.txt" is a poem. C'mon! Use the rhymes...
Pages:
Jump to: