2010-05-30, 01:46 PM
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.
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);
