Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Search packets Decryption [Phantomers]

Newbie Spellweaver
Joined
Jul 25, 2010
Messages
39
Reaction score
8
Hi,


I have found packets encryption for phantomers :

Code:
        private byte[] encryption(byte[] input)
        {
            for (int I = 0; I < input.Length; I++)
            {
                input[I] = (byte)(input[I] ^ 0xED);
            }

            return input;
        }

I have search packets Decryption for phantomers (Not found :( )

please help me for found paquets decryption

ps : Sorry my english is very bad & sorry for wrong section post​

Cordialy SystemAce aka ZicoS77​
 
Junior Spellweaver
Joined
May 21, 2011
Messages
154
Reaction score
47
XOR works on both ways, the only thing you should change is the key.
 
Upvote 0
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
You've to use 0xED first on all bytes then use the first byte as key for the rest, it's a new key every packet.
 
Upvote 0
Back
Top