There were 3 codes found in the A Dangerous Path post on the Investigation Blog .
[1] 9170910231408070803030403150917020508061
[2] uy2fpy1lpc7xzx6ylyj2jpvjppry72fqlplqs
[3] ODJz20gBHvxCLHJBIPgn
Code #1
Observations
There is a significant number of 0
‘s and 1
‘s in the code, looking at pairs of numbers:
91 70 91 02 31 40 80 70 80 30 30 40 31 50 91 70 20 50 80 61
The 0
‘s and 1
‘s are mostly found in the second digit.
Reversing each pair of numbers shows us all the numbers are within 26:
19 07 19 20 13 04 08 07 08 03 03 04 13 05 19 07 02 05 08 16
Substituting the numbers to their alphabet equivalent, using a = 0
:
thtuneihiddenfthcfiq
3tun8hiddenf3c5q
Reversing each pair of numbers shows us all the numbers are within 26:
19 07 19 20 13 04 08 07 08 03 03 04 13 05 19 07 02 05 08 16
Substituting the numbers to their alphabet equivalent, using a = 0
:
thtuneihiddenfthcfiq
3tun8hiddenf3c5q
Code #2
Observations
There is a random assortment of 37 letters and numbers, 37 is prime so transposition won’t work easily. Reencoding the code may give us more favourable lengths.
Encoding all characters to Morse code:
..- -.-- ..--- ..-. .--. -.-- .---- .-.. .--. -.-. --... -..- --.. -..- -.... -.-- .-.. -.-- .--- ..--- .--- .--. ...- .--- .--. .--. .-. -.-- --... ..--- ..-. --.- .-.. .--. .-.. --.- ...
Shows us there are 152 dits and dahs
152 has a factor of 8 in it. ASCII values are 8-bit. Splitting the Morse encoding into groups of 8:
..--.--.
.---..-.
.--.-.--
.----.-.
..--.-.-
.--...-.
.---..-.
.--....-
.--.-..-
.--.---.
.---.---
.--....-
.---.--.
.--..-.-
.----...
..---..-
.--.-.-.
..--..-.
.--.-...
Substituting the dits for 0
, and dahs for 1
:
00110110
01110010
01101011
01111010
00110101
01100010
01110010
01100001
01101001
01101110
01110111
01100001
01110110
01100101
01111000
00111001
01101010
00110010
01101000
And finally, converting from binary to ASCII:
6rkz5brainwavex9j2h
152 has a factor of 8 in it. ASCII values are 8-bit. Splitting the Morse encoding into groups of 8:
..--.--.
.---..-.
.--.-.--
.----.-.
..--.-.-
.--...-.
.---..-.
.--....-
.--.-..-
.--.---.
.---.---
.--....-
.---.--.
.--..-.-
.----...
..---..-
.--.-.-.
..--..-.
.--.-...
Substituting the dits for 0
, and dahs for 1
:
00110110
01110010
01101011
01111010
00110101
01100010
01110010
01100001
01101001
01101110
01110111
01100001
01110110
01100101
01111000
00111001
01101010
00110010
01101000
And finally, converting from binary to ASCII:
6rkz5brainwavex9j2h
Code #3
Observation
The characters in the code look like they are in Base64 encoding, but when passed through a Base64 decoder, there are a lot of non-ASCII characters.
[hint]
Having a M
, N
, or O
is typically a clue that a decoded Base64 starts with a number.
[/hint]
The code ends in with the letter n, in lowercase. Reversing the code and converting lowercase to uppercase and vice-versa:
NGpibjhlcXVhbG02Zjdo
Decoding the Base64 string:
4jbn8equalm6f7h
The code ends in with the letter n, in lowercase. Reversing the code and converting lowercase to uppercase and vice-versa:
NGpibjhlcXVhbG02Zjdo
Decoding the Base64 string:
4jbn8equalm6f7h
Related