I decrypting this

  • #1
11
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
 

Answers and Replies

  • #2
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?
 
  • #3
A friend gave it to me.
 
  • #5
I don't know where he got it.
He just said if I can decrypt but didn't give me any clues.
 
  • #7
It looks like binary, I tried the ASCII chart but gave me more numbers,
it could be ternary or another base.
 
  • #8
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/
 
  • #9
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
 
  • #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
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.

I got this in the second layer
Base16: CICADA 3301
The CICADA part seems promising...
 
  • #19
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
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
 
  • #21
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.
 

Suggested for: I decrypting this

Replies
33
Views
579
Replies
11
Views
444
Replies
4
Views
500
Replies
3
Views
636
Replies
8
Views
796
Replies
3
Views
697
Replies
7
Views
599
Replies
2
Views
742
Replies
11
Views
610
Back
Top