Decrypting Binary Code to English Text

AI Thread Summary
The discussion revolves around the decryption of a binary string that appears to be related to the enigmatic group CICADA 3301. Participants analyze the binary data, initially suspecting it to be ASCII or possibly another encoding system. A user shares a Facebook link associated with the binary, which leads to speculation about its meaning. Several attempts to decode the binary using ASCII charts and online translators yield partial results, revealing characters that suggest a connection to CICADA 3301. The conversation highlights the complexity of decoding binary data and the potential for hidden messages, with a focus on the significance of the decoded phrase "C_A_C_A_D_A__3_3_0_1." Ultimately, the original poster's friend expressed a desire to join the secretive organization, adding an intriguing layer to the discussion.
JuanBarron
Messages
11
Reaction score
0
00110100 00110011 00100000 00110100 00111001 00100000 00110100 00110011 00100000 00110100 00110001 00100000 00110100 00110100 00100000 00110100 00110001 00100000 00110010 00110000 00100000 00110011 00110011 00100000 00110011 00110011 00100000 00110011 00110000 00100000 00110011 00110001
 
Technology news on Phys.org
Can you give us some context here?

Why do you need it decrypted?

Where did you come across this sample?

Is this a homework assignment?
 
A friend gave it to me.
 
Okay where did he get it? And why do you want it decrypted?
 
I don't know where he got it.
He just said if I can decrypt but didn't give me any clues.
 
It looks like binary, I tried the ASCII chart but gave me more numbers,
it could be ternary or another base.
 
I did a google search on the first three bytes and got this crazy Facebook account

https://www.facebook.com/01100001-01100100-01101000-01100101-01101001-01110010-1421042178127360/timeline/
 
It doesn't look like English, and my friend is white.
 
  • #10
There are others online. I suspect it’s just ascii or ascii in reverse.

The google search says folks try to talk Binary online.
 
  • #12
I got a string of numbers
43 49 43 41 44 41 20 33 33 30 31
 
  • #13
Well have fun with it. There’s nothing more we can do.
 
  • #14
:(
:(
:(
 
  • #15
Perhaps if you "decode" via ASCII again the result will make some kind of sense to you (if not then try google what you find).
 
  • #16
I got this in the second layer

Base16: CICADA 3301
 
  • #17
JuanBarron said:
it could be ternary or another base.
Possible, but since the only digits present are 0 and 1, it's most likely binary and not ternary or some other base.

JuanBarron said:
I got this in the second layer
Base16: CICADA 3301
The CICADA part seems promising...
 
  • #19
JuanBarron said:
00110100 00110011 00100000 00110100 00111001 00100000 00110100 00110011 00100000 00110100 00110001 00100000 00110100 00110100 00100000 00110100 00110001 00100000 00110010 00110000 00100000 00110011 00110011 00100000 00110011 00110011 00100000 00110011 00110000 00100000 00110011 00110001

Groups 3,6,9,12... are encoded directly in ASCII, 00100000=(20h), the Space character in the above string.
Other groups are paired such that they are the ASCII encoding of the Hex digits of an ASCII character. The first character is:
00110100 > ASCII '4'
00110011 > ASCII '3'
= 43h
= 'C' in ASCII
Then followed by a Space. (00100000 > 20h)

If you represent the Space character as "_" the message reads: C_AI_C_A_D_A__3_3_0_1 (note the two spaces before the first "3")

Edit: fixed second character in decode: was 'A' should be 'I'.
 
Last edited:
  • #20
Tom.G said:
the message reads: C_A_C_A_D_A__3_3_0_1
You're off a bit. The second letter comes from groups 4 and 5, which are 34 and 39 (in hex) which are the ASCII codes for 4 and 9 (decimal). As a hex number, 0x49 is the ASCII code for I (upper case i). The OP reported this in post #16.
JuanBarron said:
Base16: CICADA 3301
 
  • Like
Likes Tom.G
  • #21
Mark44 said:
You're off a bit. The second letter comes from groups 4 and 5, which are 34 and 39 (in hex) which are the ASCII codes for 4 and 9 (decimal). As a hex number, 0x49 is the ASCII code for I (upper case i).
Oops! You are right. Post has been fixed. Thanks!
 
  • #22
My friend gave me the answer and it it CICADA 3301.
He said that he wants to be part of the secret organization.
 
Back
Top