hello can anyone help

06/08/2021 17:13 memokalaa#1
I think this is ip encrypted. Can I write my IP this way?
[Only registered and activated users can see links. Click Here To Register...]
thanks
06/09/2021 01:03 Latyos#2
It's plain xor on nullterm string. I cracked 10+ loaders that uses this lame method in the past 6 months (someone leaked a loader source or is it that those lamers just change keys using IDA and publishing it as their own?). Anyways, the trick is that, finding the XOR keys inside of the binary and then putting it through this method.

Code:
        static string EncryptOrDecrypt(string text, int[] key)
        {
            var result = new StringBuilder();

            for (int c = 0; c < text.Length; c++)
                result.Append((char)((uint)text[c] ^ (uint)key[c % key.Length]));

            return result.ToString();
        }
Good thing about XOR is that, it works both ways, meaning: You can also put an encrypted text in and get decrypted text. I went through my "collection" of XOR keys commonly used in those shit loaders and actually hit a jackpot.

[Only registered and activated users can see links. Click Here To Register...]

I could give you the keys here but then where's the fun in that? Good luck :P
06/09/2021 01:42 memokalaa#3
thanks problem solve
06/18/2021 20:21 DarkShroud#4
The haredest encryption ever :)
06/21/2021 07:54 Kujiku#5
Quote:
Originally Posted by DarkShroud View Post
The haredest encryption ever :)
Hahaha really tough
09/07/2022 01:56 Devsome#6
#moved