hi everyone. i'm using last version of nexon warrock client. i want to get XOR key for the server files of Toxiic. who know the xor key of last client or who know how to get it? thanks
hi everyone. i'm using last version of nexon warrock client. i want to get XOR key for the server files of Toxiic. who know the xor key of last client or who know how to get it? thanks
Since the client uses Xor encryption and we know that the last byte will be a new line (which is 0xA) we do the following to retrieve the xorKey from the packet:
Keep in mind that you've to do this only once for the incoming and outgoing packets. The gameservers will most likely only change every update update. The gameserver keys also differ from the login-server keys.Code:byte xorKey = packetBuffer[packteBuffer.Length -1] ^ 0x0A;