Bitcoin Forum
May 02, 2024, 10:26:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: I have a little puzzle for you folks!  (Read 468 times)
armedmilitia (OP)
Hero Member
*****
Offline Offline

Activity: 562
Merit: 506


We're going to need a bigger heatsink.


View Profile WWW
January 13, 2016, 04:10:09 PM
 #1

I also posted this on reddit: https://www.reddit.com/r/Bitcoin/comments/40slwf/i_have_a_little_puzzle_for_you_folks/

Pubkey: 1LDaBuUgUgNGDuensc96vXAtvvb8iijhoJ
It should contain 0.04 BTC. If you get the private key feel free to keep it all or leave it for the next person. Your call.

Riddle:
Code:
Check out my pad, bro! I didn't buy it, I wrote it!
iuuqt://j.jnhvs.dpn/7te5sTX.qoh
   

Good luck!

Always use escrow. OgNasty is pretty sweet.

Help me out with compiling a list of mining datacenters!
1714688771
Hero Member
*
Offline Offline

Posts: 1714688771

View Profile Personal Message (Offline)

Ignore
1714688771
Reply with quote  #2

1714688771
Report to moderator
1714688771
Hero Member
*
Offline Offline

Posts: 1714688771

View Profile Personal Message (Offline)

Ignore
1714688771
Reply with quote  #2

1714688771
Report to moderator
1714688771
Hero Member
*
Offline Offline

Posts: 1714688771

View Profile Personal Message (Offline)

Ignore
1714688771
Reply with quote  #2

1714688771
Report to moderator
TalkImg was created especially for hosting images on bitcointalk.org: try it next time you want to post an image
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
mexxer-2
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003


4 Mana 7/7


View Profile
January 13, 2016, 04:13:54 PM
 #2

Hmm I feel its something to do with rearranging the letters in the url, might be wrong though
Edit: Can't find a g  Undecided
armedmilitia (OP)
Hero Member
*****
Offline Offline

Activity: 562
Merit: 506


We're going to need a bigger heatsink.


View Profile WWW
January 13, 2016, 04:18:39 PM
 #3

Hmm I feel its something to do with rearranging the letters in the url.

George Clooney says NO!

Always use escrow. OgNasty is pretty sweet.

Help me out with compiling a list of mining datacenters!
Mr Felt
Hero Member
*****
Offline Offline

Activity: 493
Merit: 518



View Profile
January 13, 2016, 06:52:43 PM
 #4

its an imgur post
Nobitcoin
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


In holiday we trust


View Profile
January 13, 2016, 07:06:01 PM
 #5

The image has been removed is that the answer ?
armedmilitia (OP)
Hero Member
*****
Offline Offline

Activity: 562
Merit: 506


We're going to need a bigger heatsink.


View Profile WWW
January 13, 2016, 08:39:21 PM
Last edit: January 13, 2016, 08:52:53 PM by armedmilitia
 #6

Looks like someone swept the address. Too bad they didn't post to here or reddit!
Well, finders keepers.

The imgur link is a Caeser shifted (hence Clooney in the film Hail Caesar!), which points to this QR code:


The QR code scans to
Code:
x³˜ÅÓd¹šÊŠÏÀ—»Ã°tRÈź—h¬X¯Ñ›Þ‰ªsÒÚêgšÎ`Rž–¿Ûâ¿Îh¹¬u
Some QR readers don't like displaying some of those characters because they aren't regular numbers, letters, or symbols. This is the encrypted private key--it is encrypted with One Time Pad (OTP) encryption. Hence the "pad" references.

This is impossible to break if the cipher key is randomly generated and kept a secret, but I provided you the key:
Code:
Check out my pad, bro! I didn't buy it, I wrote it!

You can quickly grab the ascii values of all these characters by looking here: http://asciivalue.com/index.php

Then all you have to do is subtract the ascii values from each other.

I'll do the first three characters here in detail:
Code:
Cipher  ASCII Value  Key  ASCII Value  Value of (Cipher-Key)  Plaintext (Decrypted)
x       120          C    067          053                    5
³       179          h    104          075                    K
˜       152          e    101          051                    3

The full process:
Code:
CIPHERTEXT: x³˜ÅÓd¹šÊŠÏÀ—»Ã°tRÈź—h¬X¯Ñ›Þ‰ªsÒÚêgšÎ`Rž–¿Ûâ¿Îh¹¬u
KEY:        Check out my pad, bro! I didn't buy it, I wrote it!
PLAINTEXT:  5K3bhDJ3VjbGwKbLH2fSKvHc8Kh7pb6SpeqG1Z42UvHisKiHP8T

And that's how you do it!

I wrote a tool in c++ that does OTP encryption, and it will spit out a ciphertext, decrypt, generate pads, take custom pads, etc: It took a lot less time to set up the challenge than to write this post. Smiley

Always use escrow. OgNasty is pretty sweet.

Help me out with compiling a list of mining datacenters!
Nobitcoin
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


In holiday we trust


View Profile
January 14, 2016, 09:33:32 AM
 #7

Looks like someone swept the address. Too bad they didn't post to here or reddit!
Well, finders keepers.

The imgur link is a Caeser shifted (hence Clooney in the film Hail Caesar!), which points to this QR code:


The QR code scans to
Code:
x³˜ÅÓd¹šÊŠÏÀ—»Ã°tRÈź—h¬X¯Ñ›Þ‰ªsÒÚêgšÎ`Rž–¿Ûâ¿Îh¹¬u
Some QR readers don't like displaying some of those characters because they aren't regular numbers, letters, or symbols. This is the encrypted private key--it is encrypted with One Time Pad (OTP) encryption. Hence the "pad" references.

This is impossible to break if the cipher key is randomly generated and kept a secret, but I provided you the key:
Code:
Check out my pad, bro! I didn't buy it, I wrote it!

You can quickly grab the ascii values of all these characters by looking here: http://asciivalue.com/index.php

Then all you have to do is subtract the ascii values from each other.

I'll do the first three characters here in detail:
Code:
Cipher  ASCII Value  Key  ASCII Value  Value of (Cipher-Key)  Plaintext (Decrypted)
x       120          C    067          053                    5
³       179          h    104          075                    K
˜       152          e    101          051                    3

The full process:
Code:
CIPHERTEXT: x³˜ÅÓd¹šÊŠÏÀ—»Ã°tRÈź—h¬X¯Ñ›Þ‰ªsÒÚêgšÎ`Rž–¿Ûâ¿Îh¹¬u
KEY:        Check out my pad, bro! I didn't buy it, I wrote it!
PLAINTEXT:  5K3bhDJ3VjbGwKbLH2fSKvHc8Kh7pb6SpeqG1Z42UvHisKiHP8T

And that's how you do it!

I wrote a tool in c++ that does OTP encryption, and it will spit out a ciphertext, decrypt, generate pads, take custom pads, etc: It took a lot less time to set up the challenge than to write this post. Smiley

I wouldn't have a chance in hell even if I got the picture but nice to know the answer
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!