.
#12
It looks like multiple passes of ascii->binary, a common (and pretty useless) encoding method usually used in steganography. I'll create something to decrypt it and see if I get anything. BrbC#.

EDIT: the final result is "fuck", and it was passed with that algorithm 4 times. Lol.
Code:
string text = File.ReadAllText(@"D:\out3.txt").Replace(" ", "");
            int sum = 0;
            string output = "";
            for (int i = 0; i < text.Length; i++)
            {
                if (text[i] == 49) //"1"
                    sum += (int)Math.Pow(2d, (double)(7 - (i % 8)));
                if (i % 8 == 7)
                {
                    output += (char)sum;
                    sum = 0;
                }
            }
            File.WriteAllText(@"D:\out4.txt", output);
Reply


Messages In This Thread
. - by 2147483647 - 2010-05-30, 03:11 AM
. - by Tay - 2010-05-30, 03:12 AM
. - by Russt - 2010-05-30, 03:13 AM
. - by MetaSeraphim - 2010-05-30, 03:14 AM
. - by TøbiasBlack - 2010-05-30, 03:35 AM
. - by Rick - 2010-05-30, 03:48 AM
. - by K!yO - 2010-05-30, 03:56 AM
. - by y0y0y0y0shi0 - 2010-05-30, 04:47 AM
. - by Jon - 2010-05-30, 04:50 AM
. - by Kalovale - 2010-05-30, 09:24 AM
. - by LunaKios - 2010-05-30, 09:56 AM
. - by Kortestanov - 2010-05-30, 01:46 PM
. - by Russt - 2010-05-30, 02:01 PM
. - by Kortestanov - 2010-05-30, 02:08 PM
. - by Russt - 2010-05-30, 02:13 PM
. - by Kortestanov - 2010-05-30, 02:18 PM
. - by Jon - 2010-05-30, 02:22 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)