Three codes were hidden in the SPONTANEOUS CONVERSATION post on the Investigate Ingress blog.
[1] nhcifwthtcqetsveiviyoi
[2] 01aq:q:/?q10A1AzP!A:!Q:z/P!!P:aq:)AAQ)0!)A10/a/!:ZqQQpA)/z!?/a?A0ZA?!:zZ/QA;qp0A?qZ0;q/A;1Z/QQ):P/1qa)?!p?AaZpP?))1z?P1P0qzZ0z?Q01!Z/1?!
[3] yDb16m25032200g111801g11220225iDoh0722
Code #1
Observations
This one uses the regular cipher but spotting the keyword is not easy. REGEX is your friend to guide you
Assuming letters are using 2 characters, prefix and suffix would use 15 charaacters. We need to find a 7 letter keyword. Use the REGEX search ^[nhcifwthtcqetsveiviyoi]{7}$
to get the only possible keyword: Voynich
Make a 2×11 rectangle
n
h
c
i
f
w
t
h
t
c
q
e
t
s
v
e
i
v
i
y
o
i
Use some columns shifts to get the right format
t
e
v
s
i
e
i
v
o
y
n
i
c
h
f
i
t
w
t
h
q
c
tevsieivoynichfitwthqc
tev68voynich523qc
Assuming letters are using 2 characters, prefix and suffix would use 15 charaacters. We need to find a 7 letter keyword. Use the REGEX search ^[nhcifwthtcqetsveiviyoi]{7}$
to get the only possible keyword: Voynich
Make a 2×11 rectangle
n
h
c
i
f
w
t
h
t
c
q
e
t
s
v
e
i
v
i
y
o
i
Use some columns shifts to get the right format
t
e
v
s
i
e
i
v
o
y
n
i
c
h
f
i
t
w
t
h
q
c
tevsieivoynichfitwthqc
tev68voynich523qc
Code #2
Observations
Check how many characters you have and why they used exactly these characters
There are 136 characters in the string, excellent for groups of 8 and the 01 at the start is a good hint for binary
01aq:q:/ ?q10A1Az P!A:!Q:z /P!!P:aq :)AAQ)0! )A10/a/! :ZqQQpA) /z!?/a?A 0ZA?!:zZ /QA;qp0A ?qZ0;q/A ;1Z/QQ): P/1qa)?! p?AaZpP? ))1z?P1P 0qzZ0z?Q 01!Z/1?!
Look at the distribution of the characters on your keyboard, they all line up with 0 and 1
0)p;:/?=0 1!qaz=1
01aq:q:/
01110100
?q10A1Az
01101111
P!A:!Q:z
01101101
/P!!P:aq
00110011
:)AAQ)0!
00111001
)A10/a/!
01100101
:ZqQQpA)
01111010
/z!?/a?A
01100101
0ZA?!:zZ
01101011
/QA;qp0A
01101001
?qZ0;q/A
01100101
;1Z/QQ):
01101100
P/1qa)?!
00111001
p?AaZpP?
00111000
))1z?P1P
00110010
0qzZ0z?Q
01110101
01!Z/1?!
01110101
01110100 01101111 01101101 00110011 00111001 01100101 01111010 01100101 01101011 01101001 01100101 01101100 00111001 00111000 00110010 01110101 01110101
Convert binary to text
tom39ezekiel982uu
There are 136 characters in the string, excellent for groups of 8 and the 01 at the start is a good hint for binary
01aq:q:/ ?q10A1Az P!A:!Q:z /P!!P:aq :)AAQ)0! )A10/a/! :ZqQQpA) /z!?/a?A 0ZA?!:zZ /QA;qp0A ?qZ0;q/A ;1Z/QQ): P/1qa)?! p?AaZpP? ))1z?P1P 0qzZ0z?Q 01!Z/1?!
Look at the distribution of the characters on your keyboard, they all line up with 0 and 1
0)p;:/?=0 1!qaz=1
01aq:q:/
01110100
?q10A1Az
01101111
P!A:!Q:z
01101101
/P!!P:aq
00110011
:)AAQ)0!
00111001
)A10/a/!
01100101
:ZqQQpA)
01111010
/z!?/a?A
01100101
0ZA?!:zZ
01101011
/QA;qp0A
01101001
?qZ0;q/A
01100101
;1Z/QQ):
01101100
P/1qa)?!
00111001
p?AaZpP?
00111000
))1z?P1P
00110010
0qzZ0z?Q
01110101
01!Z/1?!
01110101
01110100 01101111 01101101 00110011 00111001 01100101 01111010 01100101 01101011 01101001 01100101 01101100 00111001 00111000 00110010 01110101 01110101
Convert binary to text
tom39ezekiel982uu
Code #3
Observations
Capital letters, lowercase letters and numbers. This should be enough to point you in the right direction
The two capital D are sort of hinting at Base64. Look at the numbers, if you make pairs they can convert from numbers to letters using a=0
yDb 16 m 25 03 22 00 g 11 18 01 g 11 22 02 25 iDoh 07 22
You need to change the case of the lowercase letters, capital letters convert to numbers and numbers to lowercase letters
Y3BqMzdwaGlsbGlwczI3OHhw
Convert Base64 to text
cpj37phillips278xp
The two capital D are sort of hinting at Base64. Look at the numbers, if you make pairs they can convert from numbers to letters using a=0
yDb 16 m 25 03 22 00 g 11 18 01 g 11 22 02 25 iDoh 07 22
You need to change the case of the lowercase letters, capital letters convert to numbers and numbers to lowercase letters
Y3BqMzdwaGlsbGlwczI3OHhw
Convert Base64 to text
cpj37phillips278xp
Related