بسم الله نبدا
نخش بقي علي التركيب وهتعدل اسم ProjectName ل اسم السورس
1- Authentication.cs
كود:
using System;
using ProjectName.Network.Cryptography;
using System.Text;
namespace ProjectName.Network.AuthPackets
{
public class Authentication
{
byte[] Buffer;
public string Username
{
get
{
string x = Encoding.Default.GetString(Buffer, 8, 32);
return x.Replace("\0", "");
}
}
public string Password
{
get
{
byte[] PasswordArray = Encoding.Default.GetBytes(Encoding.Default.GetString(Buffer, 84, 32).Replace("\0", ""));
string x = ProjectName.Network.Cryptography.PasswordDecryption.Decrypt(PasswordArray);
return x.Replace("\0", "");
}
}
public string Server
{
get
{
string x = Encoding.Default.GetString(Buffer, 136, 16);
return x.Replace("\0", "").Replace("0", "");
}
}
public string MacAddress
{
get
{
string x = Encoding.Default.GetString(Buffer, 152, 16);
return x.Replace("\0", "");
}
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
if (type == 1636)
{
Buffer = buffer;
}
}
}
}
}
}
2- LoaderEncryption.cs
كود:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectName.Network.Cryptography
{
using System.Text;
public class PasswordDecryption
{
static byte[] Key = new byte[32] { 90, 45, 12, 17, 35, 66, 44, 1, 02, 41, 59, 32, 36, 2, 234, 1, 10, 2, 79, 73, 202, 31, 99, 75, 7, 34, 16, 35, 101, 226, 99, 152 };
public static string Decrypt(byte[] data)
{
int length = Key.Length;
for (int x = 0; x < data.Length; x++)
{
data[x] ^= Key[x % length];
data[x] ^= Key[(x * 24 % 16) % length];
data[x] ^= Key[(x * 48 % 32) % length];
}
return Encoding.Default.GetString(data);
}
}
}
تركيب المفتاح
دي الطريقه التقليديه لتركيب الفتاح
3- GameCryptographyKey ال هو الكاي ال ف Constants
"XCheatLoaderMeGo"
لا بقي احنا هنركبو كدا
هتبحث عن servername
هتلاقي حنبها اسم سيرفر الواد
تمام كدا هتمسح اسم سيرفر الواد هتكتب بدالو
XCheatLoaderMeGo
وكدا تم تركيب اللودر ملفات اللودر بتاعت الكلينت بقي
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع
موقع كمان اه عشن لو ده اتقفل
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع
وكل سنه وانتو طيبين