6
$\begingroup$

I have an encoded message and I want you to find out what it is. For the answer to be accepted, you must clearly demonstrate and explain each step in the encoding process. The message contains four English words.

Hello

enter image description here

World

enter image description here

Hello World

enter image description here

????

enter image description here

Transcription


For your convenience, the following are the transcriptions of the information contained in the four images:

First

000011
100010
011110
001101
000111
001000
010110
010111

Second

000100
011100
010010
010110
000000
001111
010001
010000

Third

001010
100011
100000
000101
001011
100011
000010
100001
011001
000101
000110
010110
000100
011010
100010
001100
010100

Fourth

011001
001010
011010
001001
011101
000110
001010
011101
000011
011110
010111
010001
001110
001100
000101
000111
100001
000000
011010
000111
001100
100010
100000
$\endgroup$
7
  • $\begingroup$ Are the colors supposed to be black and white or are there more colors? $\endgroup$
    – Varun W.
    Commented Feb 28, 2022 at 15:47
  • $\begingroup$ They are supposed to be black and white, and what concept is related to black and white? $\endgroup$
    – user78980
    Commented Feb 28, 2022 at 18:57
  • $\begingroup$ Is this something to do with binary? That’s all I can think of. $\endgroup$
    – Buzzyy
    Commented Mar 1, 2022 at 14:00
  • 1
    $\begingroup$ Correct, the images represents digits of some number in a certain number system in binary, each column represents a digit. But you still need two more steps to get back the message though. $\endgroup$
    – user78980
    Commented Mar 1, 2022 at 14:05
  • 1
    $\begingroup$ You need 1437812 $\endgroup$
    – user78980
    Commented Mar 2, 2022 at 7:10

1 Answer 1

5
$\begingroup$

Solution:

The End is Nigh

Cipher:

Encode the text as bytes using the ASCII character encoding, and represent the bytes as a string of hexadecimal digit pairs. Treat this string of digits as a single long hex numeral and change its radix from 16 to 36 to obtain a string of digits in base 36. Replace each digit with its value, encoded as binary, one line (image column) per digit.

Solve path:

Treat each line (image column) in the transcription as a six-bit binary numeral. (The transcription saves us the trouble of noticing that the numerals are written upwards.) Notice that no line has a value greater than 35. Convert each line to a base 36 digit to form a base 36 numeral. Convert this numeral to all smaller radices, recognize the pattern of hex-encoded ASCII values on radix 16, and complete the solution.

The solution is also available as a CyberChef recipe. (SPOILERS)

$\endgroup$